
From nobody Mon Jul  1 00:09:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 68A9512021B for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 00:09:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vLAJRLJm_xJO for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 00:09: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 6E3C912000E for <quic-issues@ietf.org>; Mon,  1 Jul 2019 00:09:07 -0700 (PDT)
Date: Mon, 01 Jul 2019 00:09:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561964946; bh=Fp9TS/uctgxR/RWReiUT/MoDwt7XTE0gk1NOGe9Ppj0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EUnLyPGatx0D/RbaDT1kTWZFtR0nS6FK+AePDeHNiSrizpNBzLeGieovZpyrBUCzZ aeg+AjI9e68fHmKx6bgNfuRGuyr3eH1rUjsW5GqAuPZz0/ncbtiQS/5laLnUMD9lw4 gI0InxUkdofkZcGue5seN13FVzW5Q+u8pgHNNEwg=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ65RQIA3WXVQ5TMH53E3SBFEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256163087@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d19b19248874_3d423fe9ad2cd964864448"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hopijO-Y3rKx2KCSF8l1f2A5dTU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 07:09:09 -0000

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

igorlord commented on this pull request.



>  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such

By the way, the PING has an additional behavior requirement that it is ACKed ASAP, unlike other ACK-eliciting frames.  Bundling a PING forces the other endpoint to be slightly less efficient in its packet sending.  There are other alternatives/hacks like MAX_DATA(repeat latest value) that elicits ACKs but does not imply immediacy (and since it is a repeat, it does not require retransmission on loss, just like PING).

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

<p><b>@igorlord</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r298906562">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such
</pre>
<p>By the way, the PING has an additional behavior requirement that it is ACKed ASAP, unlike other ACK-eliciting frames.  Bundling a PING forces the other endpoint to be slightly less efficient in its packet sending.  There are other alternatives/hacks like MAX_DATA(repeat latest value) that elicits ACKs but does not imply immediacy (and since it is a repeat, it does not require retransmission on loss, just like PING).</p>

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


From nobody Mon Jul  1 00:18:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 812EF12001A for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 00:18:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2N-VvNvS9oVC for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 00:18: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 873C3120222 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 00:18:37 -0700 (PDT)
Date: Mon, 01 Jul 2019 00:18:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561965516; bh=7hFSH+ZE73oYw91/TVt9IUYfqlK228CfERaxaSlV4ok=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bKWHlYSIptxIUEYMJs6CL2zgQ6Bx6t3hHLvQGPoy2uBastAzRfrqABCaRmsZvheL/ prP0Au/t6PEGUyYrWbo3cgz2OKDkKGsKHPq8RFkotb7tZvC7I5sOlmsN7LRe5fHeCb EqrT6GHqpspEiw7pzd/ET+I9zuxB6m3gxnA9Byzg=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXTYJNBTWKQ4MHS2V3E3TEZEVBNHHBV45H2U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2769/review/256166470@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2769@github.com>
References: <quicwg/base-drafts/pull/2769@github.com>
Subject: Re: [quicwg/base-drafts] Request to Retire Locally Issued CIDs (#2769)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d19b3cc7549a_1ed53fb9ea2cd95c857190"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/almqrOPXYJuLxmk6_590R9OgGCg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 07:18:40 -0000

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

igorlord commented on this pull request.



> @@ -994,6 +994,19 @@ packets sent from only one local address.  An endpoint that migrates away from a
 local address SHOULD retire all connection IDs used on that address once it no
 longer plans to use that address.
 
+An endpoint can request that its peer retire connection IDs by sending a
+NEW_CONNECTION_ID frame with an increased Retire Prior To field.  Upon receipt,
+the peer SHOULD retire the corresponding connection IDs and send the
+corresponding RETIRE_CONNECTION_ID frames in a timely manner.  Failing to do so
+can cause packets to be delayed, lost, or cause the original endpoint to send a
+stateless reset in response to a connection ID it can no longer route correctly.
+
+An endpoint MAY discard a connection ID for which retirement has been requested
+once an interval of no less than 3 PTO has elapsed since an acknowledgement is
+received for the NEW_CONNECTION_ID frame requesting that retirement.  Subsequent
+incoming packets using that connection ID will elicit a response with the

Yes, that's 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/pull/2769#discussion_r298909143
----==_mimepart_5d19b3cc7549a_1ed53fb9ea2cd95c857190
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@igorlord</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2769#discussion_r298909143">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -994,6 +994,19 @@ packets sent from only one local address.  An endpoint that migrates away from a
 local address SHOULD retire all connection IDs used on that address once it no
 longer plans to use that address.
 
+An endpoint can request that its peer retire connection IDs by sending a
+NEW_CONNECTION_ID frame with an increased Retire Prior To field.  Upon receipt,
+the peer SHOULD retire the corresponding connection IDs and send the
+corresponding RETIRE_CONNECTION_ID frames in a timely manner.  Failing to do so
+can cause packets to be delayed, lost, or cause the original endpoint to send a
+stateless reset in response to a connection ID it can no longer route correctly.
+
+An endpoint MAY discard a connection ID for which retirement has been requested
+once an interval of no less than 3 PTO has elapsed since an acknowledgement is
+received for the NEW_CONNECTION_ID frame requesting that retirement.  Subsequent
+incoming packets using that connection ID will elicit a response with the
</pre>
<p>Yes, that's 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/pull/2769?email_source=notifications&amp;email_token=AFTOJKYHA6OWDPXSAF25IY3P5GVUZA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5CMURQ#discussion_r298909143">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4KCFMVRQNALOEVSJDP5GVUZANCNFSM4HTARDHA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4WK2QCQPA27LK3X3DP5GVUZA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5CMURQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2769?email_source=notifications\u0026email_token=AFTOJKYHA6OWDPXSAF25IY3P5GVUZA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5CMURQ#discussion_r298909143",
"url": "https://github.com/quicwg/base-drafts/pull/2769?email_source=notifications\u0026email_token=AFTOJKYHA6OWDPXSAF25IY3P5GVUZA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5CMURQ#discussion_r298909143",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d19b3cc7549a_1ed53fb9ea2cd95c857190--


From nobody Mon Jul  1 00:25:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3C32E12021C for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 00:25:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.001
X-Spam-Level: 
X-Spam-Status: No, score=-8.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 BzDVnvPBc4iu for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 00:25: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 3FE6E1201FA for <quic-issues@ietf.org>; Mon,  1 Jul 2019 00:25:33 -0700 (PDT)
Date: Mon, 01 Jul 2019 00:25:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561965932; bh=gyBokKsyY4F9NO33ZnEmktF/IIzy/YxPBjQWeDl7K/c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qv9gF9zbYACmWg6rzWoJ4x7PZzWKVp39skcNI4Fgygdb+9nPGjS8pV1hf4zrwR1LZ vE7KIr3s1l7zbOf8NdTXBKa5HOgtXaLeh5nwJqk5ySq5PHsb6a2YX+8NJJYWgc7jPf PrzGllKLJp3x4pw7vyYZ1JegsGsJaqQ5jcKzWXlg=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYNDKE23TGZL7XOGVV3E3T6XEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256168965@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d19b56be7f00_4b5f3fac834cd96099501b"; 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/-hvPW6wt8iujOs12RdULvg_byt0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 07:25:35 -0000

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

mikkelfj commented on this pull request.



> -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.

I think so - it may not be technically required, but it would be unclear to a new reader whether non-ack-eliciting packets should be acked, and if so, how.

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

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r298911104">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.
</pre>
<p>I think so - it may not be technically required, but it would be unclear to a new reader whether non-ack-eliciting packets should be acked, and if so, how.</p>

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


From nobody Mon Jul  1 04:24:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 94D6612006A for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 04:24:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RItaYQEY9Dit for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 04:24: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 85AF5120274 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 04:24:29 -0700 (PDT)
Date: Mon, 01 Jul 2019 04:24:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561980268; bh=hpSBcq1Fj4UPVYo1/joxzhAzuwMbDtaRMXqIbRu7yN0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=mGOqoKxSNFJ36Oo9GuzOPfq7FLRg+JydJB1ysmJdGgGy4KyYNp03ELWbHURPrmvWe 8/je0bqSIGo53659eE0DyfybpJTt+RoGBTc0mn1jPxoxAYzFgQ8wwthB4aqYuJ2eWB Fp8iB70dT2uXKsaw/3lBOVCKN63OjCBM5qNW+cMk=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7G7DIFCGJKQN4JFBF3E4P6ZEVBNHHBXE45WM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2865@github.com>
Subject: [quicwg/base-drafts] Fix HPACK xref (#2865)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d19ed6c104e0_1ba03fc0620cd96c4822d5"; 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/ep2M4WdhqEsaJIj8t1CYvZ1RkZs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 11:24:41 -0000

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

Only 110 RFCs off :)
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Fix HPACK xref

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2865.patch
https://github.com/quicwg/base-drafts/pull/2865.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/2865

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

<p>Only 110 RFCs off :)</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/2865'>https://github.com/quicwg/base-drafts/pull/2865</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix HPACK xref</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2865.patch'>https://github.com/quicwg/base-drafts/pull/2865.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2865.diff'>https://github.com/quicwg/base-drafts/pull/2865.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/2865?email_source=notifications&amp;email_token=AFTOJKYPBHLRSSUQNJ4LRGDP5HSOZA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4TTWZQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYQJVGGWEFTVN2H6V3P5HSOZANCNFSM4H4RMLEQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVDPJ6ELSBULY22B3P5HSOZA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4TTWZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJKYPBHLRSSUQNJ4LRGDP5HSOZA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4TTWZQ",
"url": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJKYPBHLRSSUQNJ4LRGDP5HSOZA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4TTWZQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d19ed6c104e0_1ba03fc0620cd96c4822d5--


From nobody Mon Jul  1 04:31:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4816612008D for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 04:31:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PQn5GkergqOy for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 04:31: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 E4DE812006A for <quic-issues@ietf.org>; Mon,  1 Jul 2019 04:31:23 -0700 (PDT)
Date: Mon, 01 Jul 2019 04:31:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561980683; bh=DarbvA/6mmccJbtChg8+Tipn2zGUHCWF5Zd0BI8gY30=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FH0453t4lFp1H626ibAwyQa33CZRytu328MGwmKUfI5HL5ftQMvLncySqZCn0nAod UUqavICgqGh+j2VRw5ZBVZ4xX5DCTEQDZj91WJHnFcq0LhCKbF7jUs8rx6jOFd2tbE j4ZcQyLQKaQ2vIaQdZdUY6D2J67KDN+XPLZ9SCmE=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUYNVWSZFV5WGCD5V3E4QYVEVBNHHBUVH3D4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2677/c507226739@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2677@github.com>
References: <quicwg/base-drafts/pull/2677@github.com>
Subject: Re: [quicwg/base-drafts] Trigger unhappy (#2677)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d19ef0aeedd0_2f813fbe3e4cd95c3053a2"; 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/EueSH5BMvHON3KQzNmsiWQffHH0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 11:31:25 -0000

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

Closing this PR in favour of #2857

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

<p>Closing this PR in favour of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461787518" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2857" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2857/hovercard" href="https://github.com/quicwg/base-drafts/pull/2857">#2857</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/2677?email_source=notifications&amp;email_token=AFTOJK5RB6NQSUHADYASGGTP5HTIVA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY52U4Y#issuecomment-507226739">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZER2NWEIHAAKBRTH3P5HTIVANCNFSM4HLSOW5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3DQRBTCW7RENCHQ3DP5HTIVA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY52U4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2677?email_source=notifications\u0026email_token=AFTOJK5RB6NQSUHADYASGGTP5HTIVA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY52U4Y#issuecomment-507226739",
"url": "https://github.com/quicwg/base-drafts/pull/2677?email_source=notifications\u0026email_token=AFTOJK5RB6NQSUHADYASGGTP5HTIVA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY52U4Y#issuecomment-507226739",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d19ef0aeedd0_2f813fbe3e4cd95c3053a2--


From nobody Mon Jul  1 04:31:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D285B12006A for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 04:31:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Z8wwtkVoU5mf for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 04:31: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 09DD212008B for <quic-issues@ietf.org>; Mon,  1 Jul 2019 04:31:25 -0700 (PDT)
Date: Mon, 01 Jul 2019 04:31:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561980683; bh=ICa8HlTD0fRq6WDsS/5xSVgtfIcN2vdGH7/M/Izujoc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=K/zyqfaa8iQ39XC6jvB6x0jO7sFg//nSHlwSwJ4TWdxdhc2Td6i4GGDwxO4yE+Dcf 77x46F94YIndAe6/MNkCMDZmU4I0T5z1kvf/6Ut86tn7B6ukhG2ljqjwZ5RQ0GnA0j RLm5TI89JQiBozKbygj1M41bZnglpZwP6s23liWM=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3RXBVR4W5MRLWDZ3N3E4QYXEVBNHHBUVH3D4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2677/issue_event/2450896066@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2677@github.com>
References: <quicwg/base-drafts/pull/2677@github.com>
Subject: Re: [quicwg/base-drafts] Trigger unhappy (#2677)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d19ef0bcda2b_73703fc8c0ccd96826601"; 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/xn9dDcdhmYVb116yJ_Z1MHlIysU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 11:31:27 -0000

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

Closed #2677.

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

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="441776927" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2677" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2677/hovercard" href="https://github.com/quicwg/base-drafts/pull/2677">#2677</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/2677?email_source=notifications&amp;email_token=AFTOJK4TUATMGWNCUJZNKTLP5HTIXA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIK3JQQ#event-2450896066">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5O34HBJM7UAYHPA73P5HTIXANCNFSM4HLSOW5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SFGX6NP743DOL3PDP5HTIXA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIK3JQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2677?email_source=notifications\u0026email_token=AFTOJK4TUATMGWNCUJZNKTLP5HTIXA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIK3JQQ#event-2450896066",
"url": "https://github.com/quicwg/base-drafts/pull/2677?email_source=notifications\u0026email_token=AFTOJK4TUATMGWNCUJZNKTLP5HTIXA5CNFSM4HLSOW52YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIK3JQQ#event-2450896066",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d19ef0bcda2b_73703fc8c0ccd96826601--


From nobody Mon Jul  1 06:42:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 16CA012024D for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 06:42:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id axXky3pVkA5S for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 06:42:31 -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 F1D7712024E for <quic-issues@ietf.org>; Mon,  1 Jul 2019 06:42:30 -0700 (PDT)
Date: Mon, 01 Jul 2019 06:42:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561988550; bh=8F4B5ptDuip9Tqy5TqNnOVqZdgRi64A71R9wq54T+yU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i1c5KAK7kO/nvKIHXnCOPsOZmoNc7Z4CRfwoL2IDWMljoL+bteJKmd3saqAuPpuFE pfmTjLP/DI3OmMSWxmvGmE9YPLIqVdWEDEcr9KTphT0pkGra6mqgMeJhwo7oDcLgrn rTsYlIVfSZqIBOHevALnpYvP/Wd+gCjL9STBILbI=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3NIVVHXU77D5GPO6V3E5AENEVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507269811@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a0dc637861_27a13f84652cd96c9985f"; 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/46QawkAslS0LvHze16TS4DOPEew>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 13:42:46 -0000

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

I've rebased this PR to incorporate all of the error code rationalization changes that were merged to master. This PR does a few things:

* Resurrects H2's FRAME_SIZE_ERROR but broadens it to include frame layout errors - name is HTTP_FRAME_ERROR
* Introduces a new error code HTTP_INVALID_PRIORITY that captures cases where a frame with valid wire layout attempts to create a prioritiation relationship (see additional point below)
* Replaces occurrences of HTTP_MALFORMED_FRAME with: HTTP_ID_ERROR, HTTP_FRAME_ERROR, HTTP_INVALID_PRIORITY.
*  Reshuffles all of the error codes. In doing so, I tried to align the code space with H2 and avoid there being any gaps.

I'm not 100% convinced we need a HTTP_INVALID_PRIORITY code. I'm open to simply using HTTP_FRAME_ERROR.

HTTP_SETTINGS_ERROR and HTTP_MISSING_SETTINGS are candidates to be consolidated (either together, or into another code). This is dependent on discussion in (and related to) https://github.com/quicwg/base-drafts/issues/2783. I suggest we solve that in a different 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/2662#issuecomment-507269811
----==_mimepart_5d1a0dc637861_27a13f84652cd96c9985f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I've rebased this PR to incorporate all of the error code rationalization changes that were merged to master. This PR does a few things:</p>
<ul>
<li>Resurrects H2's FRAME_SIZE_ERROR but broadens it to include frame layout errors - name is HTTP_FRAME_ERROR</li>
<li>Introduces a new error code HTTP_INVALID_PRIORITY that captures cases where a frame with valid wire layout attempts to create a prioritiation relationship (see additional point below)</li>
<li>Replaces occurrences of HTTP_MALFORMED_FRAME with: HTTP_ID_ERROR, HTTP_FRAME_ERROR, HTTP_INVALID_PRIORITY.</li>
<li>Reshuffles all of the error codes. In doing so, I tried to align the code space with H2 and avoid there being any gaps.</li>
</ul>
<p>I'm not 100% convinced we need a HTTP_INVALID_PRIORITY code. I'm open to simply using HTTP_FRAME_ERROR.</p>
<p>HTTP_SETTINGS_ERROR and HTTP_MISSING_SETTINGS are candidates to be consolidated (either together, or into another code). This is dependent on discussion in (and related to) <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="454687241" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2783" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2783/hovercard" href="https://github.com/quicwg/base-drafts/issues/2783">#2783</a>. I suggest we solve that in a different 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/2662?email_source=notifications&amp;email_token=AFTOJKYT3A4ODKYDAXPQHRTP5ICUNA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6FFMY#issuecomment-507269811">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3P4JX2XMWHOAHBMRLP5ICUNANCNFSM4HJSXHSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK64ZCBGFFBINGQFWXDP5ICUNA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6FFMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2662?email_source=notifications\u0026email_token=AFTOJKYT3A4ODKYDAXPQHRTP5ICUNA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6FFMY#issuecomment-507269811",
"url": "https://github.com/quicwg/base-drafts/pull/2662?email_source=notifications\u0026email_token=AFTOJKYT3A4ODKYDAXPQHRTP5ICUNA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6FFMY#issuecomment-507269811",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1a0dc637861_27a13f84652cd96c9985f--


From nobody Mon Jul  1 06:55:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E3E1512007A for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 06:55:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ohCCYNxcUSNc for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 06:55:19 -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 C0E69120019 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 06:55:18 -0700 (PDT)
Date: Mon, 01 Jul 2019 06:55:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561989317; bh=xvu1p2Qr7ljkobarUfeHuBxhd7MK4Uw33BmLNYbSrFE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PqB2mKRuA09ePAfL5X3usKkXrwDxWhAtuXRtL498wQ4hVCQIVkrIxfj5Ynwy0HPhw ynZhWXXqIdVf93qHJPwq8AnsRqHrxLN++fENAVv+GVeEZWTBfAzofngUKD2zcV9MQ7 3Ebnfee3ilpyYTF9QxpqYKYSeTeJLTWVfqf5wVHw=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYOYER3KQVIUEFZDWN3E5BULEVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507274879@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a10c58e55b_1cbb3f85f0ecd9604301b"; 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/KOwPfx_Vmckq0EFA0k0VTwuxJns>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 13:55:21 -0000

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

@LPardue Thank you for all your effort on refactoring the error codes.

I think my preference goes to merging INVALID_PRIORITY with FRAME_ERROR. The reason is that it is the error code captures a syntactic error of a frame, and because I do not think that each frame should have it's own error code to indicate an syntactic error. As an example, "empty bits" could appear not just in the PRIORITY frame but in any frame. Should we have dedicated error code for frames that contain empty bits? I do not think so. Hence my preference to not have INVALID_PRIORITY.

Regarding rearranging the numbers, I wonder if it would be possible to split the error codes into two groups: connection-level error codes and stream-level ones. In contrary to HTTP/2, most of the HTTP/3 error code are either a connection-level error code or a stream-level error code, not both.

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

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=6571445" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LPardue">@LPardue</a> Thank you for all your effort on refactoring the error codes.</p>
<p>I think my preference goes to merging INVALID_PRIORITY with FRAME_ERROR. The reason is that it is the error code captures a syntactic error of a frame, and because I do not think that each frame should have it's own error code to indicate an syntactic error. As an example, "empty bits" could appear not just in the PRIORITY frame but in any frame. Should we have dedicated error code for frames that contain empty bits? I do not think so. Hence my preference to not have INVALID_PRIORITY.</p>
<p>Regarding rearranging the numbers, I wonder if it would be possible to split the error codes into two groups: connection-level error codes and stream-level ones. In contrary to HTTP/2, most of the HTTP/3 error code are either a connection-level error code or a stream-level error code, not both.</p>

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


From nobody Mon Jul  1 06:58:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0092A12007A for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 06:58:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zsDksOkYNTZc for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 06:58:28 -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 3DAD5120019 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 06:58:28 -0700 (PDT)
Date: Mon, 01 Jul 2019 06:58:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561989507; bh=Ah1vmRKYDH40rGRfyDEoWuR9qFk5fGgeTkK5aMsz55c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AKb/FuVSU1eTokT+a8FecCJHoYIF+cpnizOqOrB694h/bN9xPIL3GMjwuku7Poirr ddLlSSUwP7MZirKiEO2FL07mO25EpNlbHctoLTQ9DJh06oHuMBDQfnMrfY9xwweOza LZ4NslDElu4aSIY5mPjn3w4kxfL/90/EdKR9pTLw=
From: Nick Banks <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/2769/push/3770698489@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2769@github.com>
References: <quicwg/base-drafts/pull/2769@github.com>
Subject: Re: [quicwg/base-drafts] Request to Retire Locally Issued CIDs (#2769)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a118337057_14af3fa7534cd968118362"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: nibanks
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/0-VbTHGPuoaMxTBWrdulIYng718>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 13:58:30 -0000

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

@nibanks pushed 1 commit.

81bef6ee83ba699dee2d4cbc036023f31b469054  More suggestions


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2769/files/8cbcebf6ccafee170693188161e402506f2d2ef7..81bef6ee83ba699dee2d4cbc036023f31b469054

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

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

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/81bef6ee83ba699dee2d4cbc036023f31b469054">81bef6e</a>  More 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/2769/files/8cbcebf6ccafee170693188161e402506f2d2ef7..81bef6ee83ba699dee2d4cbc036023f31b469054?email_source=notifications&amp;email_token=AFTOJK5PJSH2DNMSFFGJB5DP5IEQHA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DKMJRG44TMMSQOVZWQIZTG43TANRZHA2DQOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK44S5BBHOS7XTIKL5LP5IEQHANCNFSM4HTARDHA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK56NG4G2IINHWRPTXLP5IEQHA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DKMJRG44TMMSQOVZWQIZTG43TANRZHA2DQOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2769/files/8cbcebf6ccafee170693188161e402506f2d2ef7..81bef6ee83ba699dee2d4cbc036023f31b469054?email_source=notifications\u0026email_token=AFTOJK5PJSH2DNMSFFGJB5DP5IEQHA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DKMJRG44TMMSQOVZWQIZTG43TANRZHA2DQOI",
"url": "https://github.com/quicwg/base-drafts/pull/2769/files/8cbcebf6ccafee170693188161e402506f2d2ef7..81bef6ee83ba699dee2d4cbc036023f31b469054?email_source=notifications\u0026email_token=AFTOJK5PJSH2DNMSFFGJB5DP5IEQHA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DKMJRG44TMMSQOVZWQIZTG43TANRZHA2DQOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1a118337057_14af3fa7534cd968118362--


From nobody Mon Jul  1 07:14:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2FA981200D7 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:14:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id igXYPcdYUS_p for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:14: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 27D9B1200D5 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 07:14:05 -0700 (PDT)
Date: Mon, 01 Jul 2019 07:14:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561990443; bh=ugzWedJly8do50LRSyGEilCRPbsByZEQ/Xb2bxiga44=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JKNGjNLDekNyNAE8HVfzx6RFgnFeVdZabzvUdiS+A7zcVy7NVtc0jC3BeLlJj8bzH iRKXBQTcA8tEoSpaVGFdMAwQeVSPNbNJs4SLimSTGUES2kbfZBklVa+rgqlv4SgfKk DGJXBmMorAv3DW+4VfUoXuNjLtulTZQgReLgHnVM=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CYWXQECYBGVWRSAF3E5D2XEVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507282456@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a152bcfa3c_1fbb3ff5656cd960230179"; 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/Zqpv0emAhiQdr4AE4o0zvKSIigk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 14:14:08 -0000

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

> I think my preference goes to merging INVALID_PRIORITY with FRAME_ERROR. 
Thanks for the feedback. It's an easy change to make. I'll wait for some supporting or dissenting voices but otherwise will do this.

> Regarding rearranging the numbers, I wonder if it would be possible to split the error codes into two groups: connection-level error codes and stream-level ones. In contrary to HTTP/2, most of the HTTP/3 error code are either a connection-level error code or a stream-level error code, not both.

This resonates with my earlier analysis. Some of this was captured in https://github.com/quicwg/base-drafts/issues/2816. But I think what you are suggesting is a slightly different thing. Can you explain what splitting might look like and how it would help? I think it gets complicated because 1) we may have a proxy that is trying to translate errors between H2 and H3. 2) stream errors can be upgraded to connection errors



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

<blockquote>
<p>I think my preference goes to merging INVALID_PRIORITY with FRAME_ERROR.<br>
Thanks for the feedback. It's an easy change to make. I'll wait for some supporting or dissenting voices but otherwise will do this.</p>
</blockquote>
<blockquote>
<p>Regarding rearranging the numbers, I wonder if it would be possible to split the error codes into two groups: connection-level error codes and stream-level ones. In contrary to HTTP/2, most of the HTTP/3 error code are either a connection-level error code or a stream-level error code, not both.</p>
</blockquote>
<p>This resonates with my earlier analysis. Some of this was captured in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458057957" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2816" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2816/hovercard" href="https://github.com/quicwg/base-drafts/issues/2816">#2816</a>. But I think what you are suggesting is a slightly different thing. Can you explain what splitting might look like and how it would help? I think it gets complicated because 1) we may have a proxy that is trying to translate errors between H2 and H3. 2) stream errors can be upgraded to connection errors</p>

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


From nobody Mon Jul  1 07:20:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 563CF1200CE for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:20:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tqcxo32zmzag for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:20:28 -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 AED981200BA for <quic-issues@ietf.org>; Mon,  1 Jul 2019 07:20:28 -0700 (PDT)
Date: Mon, 01 Jul 2019 07:20:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561990827; bh=Q5grdLxfhwIAogV+FkgcU+enrUA4Yo3/RQL3QSPIEE4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=g91S45vxbLjrKK1XRSFeuY73vgGj7VtWc4PqLBMwSuredQYtaWtwmFtmxQVZwg/oc bHQO6kjIZUZ1XJMUL+ZzjGsrGb9QJZ4tUF6PDX5FFZ74QQtz5wW+e1eIFhWbgAzycW pZuuQBkvl9x67WCH9MD0u16S8Re5NOG7KhnMtoBw=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRVSTU5HGRC4WJDSN3E5ESXEVBNHHBXBSRPY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2857/review/256357958@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2857@github.com>
References: <quicwg/base-drafts/pull/2857@github.com>
Subject: Re: [quicwg/base-drafts] Define terms for application actions (#2857)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a16aba66c9_42493fc29b4cd964282074"; 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/wBWWcrne3gsRZ5wxO4FJOb4mLKw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 14:20:30 -0000

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

dtikhonov requested changes on this pull request.



> @@ -827,9 +827,9 @@ Servers initiate the shutdown of a connection by sending a GOAWAY frame
 on lower stream IDs were or might be processed in this connection, while
 requests on the indicated stream ID and greater were rejected. This enables
 client and server to agree on which requests were accepted prior to the
-connection shutdown.  This identifier MAY be zero if no requests were
-processed.  Servers SHOULD NOT increase the QUIC MAX_STREAMS limit after
-sending a GOAWAY frame.
+connection shutdown.  This identifier MAY be zero if no requests were processed.
+Servers SHOULD NOT permit additional transport streams after sending a GOAWAY

"transport stream" is new term not defined elsewhere in the document.

> @@ -927,12 +927,10 @@ All client-initiated bidirectional streams are used for HTTP requests and
 responses.  A bidirectional stream ensures that the response can be readily
 correlated with the request. This means that the client's first request occurs
 on QUIC stream 0, with subsequent requests on stream 4, 8, and so on. In order
-to permit these streams to open, an HTTP/3 client SHOULD send non-zero values
-for the QUIC transport parameters `initial_max_stream_data_bidi_local`. An
-HTTP/3 server SHOULD send non-zero values for the QUIC transport parameters
-`initial_max_stream_data_bidi_remote` and `initial_max_bidi_streams`. It is
-RECOMMENDED that `initial_max_bidi_streams` be no smaller than 100, so as to not
-unnecessarily limit parallelism.
+to permit these streams to open, an HTTP/3 server SHOULD configure non-zero
+minimum values for the number of permitted streams and the initial flow control
+window for each stream. It is RECOMMENDED that at least 100 requests be

"initial flow control window for each stream" makes it sound as if each stream's flow control window could be configured independently.

> +  data or possibly discovering that the stream has been closed because the peer
+  sent a STOP_SENDING frame ({{frame-stop-sending}});
+- end the stream (clean termination), resulting in a STREAM frame
+  ({{frame-stream}}) with the FIN bit set; and
+- reset the stream (abrupt termination), resulting in a RESET_STREAM frame
+  ({{frame-reset-stream}}), even if the stream was already ended.
+
+On the receiving part of a stream, application protocols need to be able to:
+
+- read data
+- abort reading of the stream and request closure, possibly resulting in a
+  STOP_SENDING frame ({{frame-stop-sending}})
+
+Applications also need to be informed of state changes on streams, including
+when the peer has initiated, reset, or aborted reading on a stream; when new
+data is available; and when data on the stream is blocked due to flow

> when data on the stream is blocked due to flow control

Does this refer to the endpoint's or peer's inability to write?

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

<p><b>@dtikhonov</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299058611">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -827,9 +827,9 @@ Servers initiate the shutdown of a connection by sending a GOAWAY frame
 on lower stream IDs were or might be processed in this connection, while
 requests on the indicated stream ID and greater were rejected. This enables
 client and server to agree on which requests were accepted prior to the
-connection shutdown.  This identifier MAY be zero if no requests were
-processed.  Servers SHOULD NOT increase the QUIC MAX_STREAMS limit after
-sending a GOAWAY frame.
+connection shutdown.  This identifier MAY be zero if no requests were processed.
+Servers SHOULD NOT permit additional transport streams after sending a GOAWAY
</pre>
<p>"transport stream" is new term not defined elsewhere in the document.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299059579">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -927,12 +927,10 @@ All client-initiated bidirectional streams are used for HTTP requests and
 responses.  A bidirectional stream ensures that the response can be readily
 correlated with the request. This means that the client&#39;s first request occurs
 on QUIC stream 0, with subsequent requests on stream 4, 8, and so on. In order
-to permit these streams to open, an HTTP/3 client SHOULD send non-zero values
-for the QUIC transport parameters `initial_max_stream_data_bidi_local`. An
-HTTP/3 server SHOULD send non-zero values for the QUIC transport parameters
-`initial_max_stream_data_bidi_remote` and `initial_max_bidi_streams`. It is
-RECOMMENDED that `initial_max_bidi_streams` be no smaller than 100, so as to not
-unnecessarily limit parallelism.
+to permit these streams to open, an HTTP/3 server SHOULD configure non-zero
+minimum values for the number of permitted streams and the initial flow control
+window for each stream. It is RECOMMENDED that at least 100 requests be
</pre>
<p>"initial flow control window for each stream" makes it sound as if each stream's flow control window could be configured independently.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299065073">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +  data or possibly discovering that the stream has been closed because the peer
+  sent a STOP_SENDING frame ({{frame-stop-sending}});
+- end the stream (clean termination), resulting in a STREAM frame
+  ({{frame-stream}}) with the FIN bit set; and
+- reset the stream (abrupt termination), resulting in a RESET_STREAM frame
+  ({{frame-reset-stream}}), even if the stream was already ended.
+
+On the receiving part of a stream, application protocols need to be able to:
+
+- read data
+- abort reading of the stream and request closure, possibly resulting in a
+  STOP_SENDING frame ({{frame-stop-sending}})
+
+Applications also need to be informed of state changes on streams, including
+when the peer has initiated, reset, or aborted reading on a stream; when new
+data is available; and when data on the stream is blocked due to flow
</pre>
<blockquote>
<p>when data on the stream is blocked due to flow control</p>
</blockquote>
<p>Does this refer to the endpoint's or peer's inability to write?</p>

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


From nobody Mon Jul  1 07:21:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B8A4D120255 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:21:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9Zw9_sXmDany for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:20:57 -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 8F8971200DB for <quic-issues@ietf.org>; Mon,  1 Jul 2019 07:20:44 -0700 (PDT)
Date: Mon, 01 Jul 2019 07:20:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561990843; bh=uGWzP8pwcQWwdUCiRt1Vbzy2Edx4jS7Fo3ctaOg11b0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WBhBhzjWH8ljY4c22o6NMDCMgUrlEW3PJmo8heLdBFt63vGWy/r3zBVZSrGQF7r4e AhP79qwaUh03dwh6asKPMGDEL8o8s/oZs/b2pq/xh1yMjaxsWFGJVrislQ8OOLYax8 6xB9WSq1HWiS92A7iuPDTuSPmhHfqX1qLf/zRfEA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7XCMT5B5XDXVJO5Z53E5ETXEVBNHHBXBSRPY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2857/review/256355235@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2857@github.com>
References: <quicwg/base-drafts/pull/2857@github.com>
Subject: Re: [quicwg/base-drafts] Define terms for application actions (#2857)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a16bb7afea_43843f8023ecd960196780"; 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/eytw-vuJHdbMFFNr_7bTVzU0AKs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 14:21:16 -0000

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

ianswett commented on this pull request.

Thanks for doing this, it looks much better.

> +  data or possibly discovering that the stream has been closed because the peer
+  sent a STOP_SENDING frame ({{frame-stop-sending}});
+- end the stream (clean termination), resulting in a STREAM frame
+  ({{frame-stream}}) with the FIN bit set; and
+- reset the stream (abrupt termination), resulting in a RESET_STREAM frame
+  ({{frame-reset-stream}}), even if the stream was already ended.
+
+On the receiving part of a stream, application protocols need to be able to:
+
+- read data
+- abort reading of the stream and request closure, possibly resulting in a
+  STOP_SENDING frame ({{frame-stop-sending}})
+
+Applications also need to be informed of state changes on streams, including
+when the peer has initiated, reset, or aborted reading on a stream; when new
+data is available; and when data on the stream is blocked due to flow

Should this be flow or congestion control?  And should there be a signal when the stream is unblocked so you can resume sending?

> @@ -1101,6 +1132,41 @@ suggested structure:
 -->
 
 
+## Required Operations on Connections
+
+There are certain operations which an application MUST be able to perform when
+interacting with the QUIC transport.  This document does not specify an API, but
+any implementation of this version of QUIC MUST expose the ability to perform
+the operations described in this section on a QUIC connection.
+
+When implementing the client role, applications need to be able to:
+
+- open a connection, which begins the exchange described in {{handshake}};
+- enable 0-RTT; and
+- be informed when 0-RTT has been accepted or rejected by a server.

I'm not certain the application needs to know about 0-RTT accept/reject, but I believe it does need to know when it can start sending 1RTT data?

> +
+When implementing the client role, applications need to be able to:
+
+- open a connection, which begins the exchange described in {{handshake}};
+- enable 0-RTT; and
+- be informed when 0-RTT has been accepted or rejected by a server.
+
+When implementing the server role, applications need to be able to:
+
+- listen for incoming connections, which prepares for the exchange described in
+  {{handshake}};
+- if Early Data is supported, embed application-controlled data in the TLS
+  resumption ticket sent to the client; and
+- if Early Data is supported, retrieve application-controlled data from the
+  client's resumption ticket and enable rejecting Early Data based on that
+  information.

Servers need to expose whether incoming data is Early Data, correct? ie: for the Early Data header.

> @@ -505,11 +505,11 @@ this limit are not guaranteed to be accepted.
 
 ### Request Cancellation and Rejection {#request-cancellation}
 
-Clients can cancel requests by aborting the stream (QUIC RESET_STREAM and/or
-STOP_SENDING frames, as appropriate) with an error code of
-HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client cancels a
-response, it indicates that this response is no longer of interest.
-Implementations SHOULD cancel requests by aborting both directions of a stream.
+Clients can cancel requests by resetting the request stream with an error code
+of HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client aborts

How about "Clients can cancel requests by resetting and aborting the request stream with an error code of HTTP_REQUEST_CANCELLED"?  I think that phrasing makes it clearer that you need to reset the write side and abort the read side in order to fully cancel a request?

> @@ -505,11 +505,11 @@ this limit are not guaranteed to be accepted.
 
 ### Request Cancellation and Rejection {#request-cancellation}
 
-Clients can cancel requests by aborting the stream (QUIC RESET_STREAM and/or
-STOP_SENDING frames, as appropriate) with an error code of
-HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client cancels a
-response, it indicates that this response is no longer of interest.
-Implementations SHOULD cancel requests by aborting both directions of a stream.
+Clients can cancel requests by resetting the request stream with an error code
+of HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client aborts
+reading a response, it indicates that this response is no longer of interest.
+Implementations SHOULD cancel requests by terminating both directions of a

Do we define terminating?

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

<p><b>@ianswett</b> commented on this pull request.</p>

<p>Thanks for doing this, it looks much better.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299056533">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +  data or possibly discovering that the stream has been closed because the peer
+  sent a STOP_SENDING frame ({{frame-stop-sending}});
+- end the stream (clean termination), resulting in a STREAM frame
+  ({{frame-stream}}) with the FIN bit set; and
+- reset the stream (abrupt termination), resulting in a RESET_STREAM frame
+  ({{frame-reset-stream}}), even if the stream was already ended.
+
+On the receiving part of a stream, application protocols need to be able to:
+
+- read data
+- abort reading of the stream and request closure, possibly resulting in a
+  STOP_SENDING frame ({{frame-stop-sending}})
+
+Applications also need to be informed of state changes on streams, including
+when the peer has initiated, reset, or aborted reading on a stream; when new
+data is available; and when data on the stream is blocked due to flow
</pre>
<p>Should this be flow or congestion control?  And should there be a signal when the stream is unblocked so you can resume sending?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299058421">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1101,6 +1132,41 @@ suggested structure:
 --&gt;
 
 
+## Required Operations on Connections
+
+There are certain operations which an application MUST be able to perform when
+interacting with the QUIC transport.  This document does not specify an API, but
+any implementation of this version of QUIC MUST expose the ability to perform
+the operations described in this section on a QUIC connection.
+
+When implementing the client role, applications need to be able to:
+
+- open a connection, which begins the exchange described in {{handshake}};
+- enable 0-RTT; and
+- be informed when 0-RTT has been accepted or rejected by a server.
</pre>
<p>I'm not certain the application needs to know about 0-RTT accept/reject, but I believe it does need to know when it can start sending 1RTT data?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299059382">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+When implementing the client role, applications need to be able to:
+
+- open a connection, which begins the exchange described in {{handshake}};
+- enable 0-RTT; and
+- be informed when 0-RTT has been accepted or rejected by a server.
+
+When implementing the server role, applications need to be able to:
+
+- listen for incoming connections, which prepares for the exchange described in
+  {{handshake}};
+- if Early Data is supported, embed application-controlled data in the TLS
+  resumption ticket sent to the client; and
+- if Early Data is supported, retrieve application-controlled data from the
+  client&#39;s resumption ticket and enable rejecting Early Data based on that
+  information.
</pre>
<p>Servers need to expose whether incoming data is Early Data, correct? ie: for the Early Data header.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299062646">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -505,11 +505,11 @@ this limit are not guaranteed to be accepted.
 
 ### Request Cancellation and Rejection {#request-cancellation}
 
-Clients can cancel requests by aborting the stream (QUIC RESET_STREAM and/or
-STOP_SENDING frames, as appropriate) with an error code of
-HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client cancels a
-response, it indicates that this response is no longer of interest.
-Implementations SHOULD cancel requests by aborting both directions of a stream.
+Clients can cancel requests by resetting the request stream with an error code
+of HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client aborts
</pre>
<p>How about "Clients can cancel requests by resetting and aborting the request stream with an error code of HTTP_REQUEST_CANCELLED"?  I think that phrasing makes it clearer that you need to reset the write side and abort the read side in order to fully cancel a request?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2857#discussion_r299062898">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -505,11 +505,11 @@ this limit are not guaranteed to be accepted.
 
 ### Request Cancellation and Rejection {#request-cancellation}
 
-Clients can cancel requests by aborting the stream (QUIC RESET_STREAM and/or
-STOP_SENDING frames, as appropriate) with an error code of
-HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client cancels a
-response, it indicates that this response is no longer of interest.
-Implementations SHOULD cancel requests by aborting both directions of a stream.
+Clients can cancel requests by resetting the request stream with an error code
+of HTTP_REQUEST_CANCELLED ({{http-error-codes}}).  When the client aborts
+reading a response, it indicates that this response is no longer of interest.
+Implementations SHOULD cancel requests by terminating both directions of a
</pre>
<p>Do we define terminating?</p>

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


From nobody Mon Jul  1 07:35:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E72BE120297 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:35:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ikuF_QPP3T0h for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:35: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 589DB120293 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 07:35:34 -0700 (PDT)
Date: Mon, 01 Jul 2019 07:35:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561991733; bh=nWo+DXGwV0gdy8MMAvPfp0FfyvDcX28vsr3HL3BerMs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wNuwRZslFKY6ceqwKChJ69JTww7Fnwy2iE5BJB1Xqix54LrQohUQIlxl1BGreK3At NJIQNXongBfjnoB3vddZ2OCMch1NbA38hx/8TyBHpMbBUS3NrlUgxWnbDw/WFtn3en jWFTUebGCAZMheBj85/C8zjJXOYNluttX5ZtnyZc=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CMBSV5FHAS2H55PN3E5GLLEVBNHHBWVZWUQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2818/507291393@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2818@github.com>
References: <quicwg/base-drafts/issues/2818@github.com>
Subject: Re: [quicwg/base-drafts] Invalid Push ID error codes (#2818)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a1a3513d40_23da3f86bc6cd964105613"; 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/9yg0FyXl5V3CxVLcKu-nUKMUolQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 14:35:36 -0000

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

We merged #2820 so I'm closing this as completed.

-- 
You are receiving 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/2818#issuecomment-507291393
----==_mimepart_5d1a1a3513d40_23da3f86bc6cd964105613
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458724844" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2820" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2820/hovercard" href="https://github.com/quicwg/base-drafts/pull/2820">#2820</a> so I'm closing this as completed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2818?email_source=notifications&amp;email_token=AFTOJK5FFNYWTLXWW3WGTTLP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6KOAI#issuecomment-507291393">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZM2PGML6SJLSDKSVDP5II3LANCNFSM4HZUBUKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6HEUTDCZSXWLQEC7LP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6KOAI.gif" height="1" width="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/2818?email_source=notifications\u0026email_token=AFTOJK5FFNYWTLXWW3WGTTLP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6KOAI#issuecomment-507291393",
"url": "https://github.com/quicwg/base-drafts/issues/2818?email_source=notifications\u0026email_token=AFTOJK5FFNYWTLXWW3WGTTLP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6KOAI#issuecomment-507291393",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1a1a3513d40_23da3f86bc6cd964105613--


From nobody Mon Jul  1 07:35:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7DA6E1200FF for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:35:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 g_sgOEh4JRzt for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:35: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 97CA0120296 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 07:35:34 -0700 (PDT)
Date: Mon, 01 Jul 2019 07:35:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561991733; bh=kOKEmmRSZwq2ERUEasprNAGubQX/HVf3WEhpzt0EDUY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jjijR9lsUxZwmNCJs2S2r7Z/J4D+L59kbkJrD9KG5D3/ix9vmZ24y0g+pjK+S18IA 6RNeChSJAG8M44sEq0FCC6tJeg8PK/dvyzmaKNkMujr9/jJw+Ql1uF4JwsfebHl8aY 5X+9siTtBjFqjyh8FEj58SLk2X5kOilKFhr8P9+Y=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CMBSV5FHAS2H55PN3E5GLLEVBNHHBWVZWUQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2818/issue_event/2451442333@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2818@github.com>
References: <quicwg/base-drafts/issues/2818@github.com>
Subject: Re: [quicwg/base-drafts] Invalid Push ID error codes (#2818)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a1a358773b_3d6e3fc9f0ccd96465141"; 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/u6u3G-D_sT2O5UXCbskTrrIcYE0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 14:35:38 -0000

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

Closed #2818.

-- 
You are receiving 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/2818#event-2451442333
----==_mimepart_5d1a1a358773b_3d6e3fc9f0ccd96465141
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458700452" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2818" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2818/hovercard" href="https://github.com/quicwg/base-drafts/issues/2818">#2818</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/2818?email_source=notifications&amp;email_token=AFTOJK6KDRPVZ5K5BPA6H7TP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIPAVHI#event-2451442333">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZM2PGML6SJLSDKSVDP5II3LANCNFSM4HZUBUKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4SUEZINWQYEBT7M4DP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIPAVHI.gif" height="1" width="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/2818?email_source=notifications\u0026email_token=AFTOJK6KDRPVZ5K5BPA6H7TP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIPAVHI#event-2451442333",
"url": "https://github.com/quicwg/base-drafts/issues/2818?email_source=notifications\u0026email_token=AFTOJK6KDRPVZ5K5BPA6H7TP5II3LA5CNFSM4HZUBUK2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSIPAVHI#event-2451442333",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1a1a358773b_3d6e3fc9f0ccd96465141--


From nobody Mon Jul  1 07:42:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9EA1A1200D6 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:42:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 tjzhTGAlyfpb for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:42: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 E7A8F1200CE for <quic-issues@ietf.org>; Mon,  1 Jul 2019 07:42:20 -0700 (PDT)
Date: Mon, 01 Jul 2019 07:42:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561992139; bh=d5aBbr72/hjB/mPpccZdbERs+YfnJKJVUMCpHXnaDBc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=K6YBIxoOb9rNzIZwNiW/FtDaCdak9zM9zjvCR/t3jCUjKP6sJGk84weNVN70PcKGK hLWMjqReZYbVpr0D1ILLG2PUvJvnREiQrDFWKNtywOSw0/Ymfu5fa65v3TpAfjGU+8 wEfDYReYmRNAu63y3I3F6Jj3L/3aU9rFI/FD+gH8=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VRX7BQW5D5CYQCQ53E5HEXEVBNHHBWTGIMA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2815/507294209@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2815@github.com>
References: <quicwg/base-drafts/issues/2815@github.com>
Subject: Re: [quicwg/base-drafts] H3 has a stale reference to STREAM_ID_ERROR (#2815)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a1bcbd19e9_78eb3fdff12cd95c1358e5"; 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/WwD4Y48Toh8WQYjnru4ej1HpHMc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 14:42:24 -0000

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

Since https://github.com/quicwg/base-drafts/pull/2826 there are different error codes that the transport might use depending on error conditions (maybe STREAM_STATE_ERROR or maybe STREAM_LIMIT_ERROR). 

I'm inclined to simply omit the 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/issues/2815#issuecomment-507294209
----==_mimepart_5d1a1bcbd19e9_78eb3fdff12cd95c1358e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Since <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="459321602" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2826" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2826/hovercard" href="https://github.com/quicwg/base-drafts/pull/2826">#2826</a> there are different error codes that the transport might use depending on error conditions (maybe STREAM_STATE_ERROR or maybe STREAM_LIMIT_ERROR).</p>
<p>I'm inclined to simply omit the sentence.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2815?email_source=notifications&amp;email_token=AFTOJKZJSW73J7F52I7NUPDP5IJUXA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6LEAI#issuecomment-507294209">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LXHHV33YMWNGASN3P5IJUXANCNFSM4HZJVNIA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2WJOWFUULWCOHXHATP5IJUXA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6LEAI.gif" height="1" width="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/2815?email_source=notifications\u0026email_token=AFTOJKZJSW73J7F52I7NUPDP5IJUXA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6LEAI#issuecomment-507294209",
"url": "https://github.com/quicwg/base-drafts/issues/2815?email_source=notifications\u0026email_token=AFTOJKZJSW73J7F52I7NUPDP5IJUXA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY6LEAI#issuecomment-507294209",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1a1bcbd19e9_78eb3fdff12cd95c1358e5--


From nobody Mon Jul  1 07:50:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F2AAC12024D for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:50:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Df6_p1rxyAsq for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 07:50: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 9D40A1200F9 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 07:50:37 -0700 (PDT)
Date: Mon, 01 Jul 2019 07:50:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561992636; bh=slJTh2kZGrlszHdqmh4UcDbVhpGWhmHJS3LoSm/8qoE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ZDMffxtUrYveGyePZQVdO1N9ftFthGhPBJbwccRlmMByld0vyNb4UvnvfBS3xYFIR 7EdcpzRly2MrD/4fB7Aj2sYASUgUDns+f5C4zNA+cOV9DIX+zvvoamGhZYPGMcYU2Y OamJFFbOazpPlwkPbx8BmeBj20ywSeAiJunJQ8hg=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ4THEEPIB5SKWZP4V3E5IDZEVBNHHBXFJCE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2866@github.com>
Subject: [quicwg/base-drafts] Don't state QUIC error codes in HTTP/3 (#2866)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a1dbc54f77_e963fe853ccd960766b"; 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/HiaCm_XUoqei7aOIgXwonDpgPIM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 14:50:50 -0000

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

So it turns out all of these references are stale. Picking the KISS option to just remove them.

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

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

-- Commit Summary --

  * Don't state QUIC error codes.

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2866.patch
https://github.com/quicwg/base-drafts/pull/2866.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/2866

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

<p>So it turns out all of these references are stale. Picking the KISS option to just remove them.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2815.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458016864" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2815" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2815/hovercard" href="https://github.com/quicwg/base-drafts/issues/2815">#2815</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/2866'>https://github.com/quicwg/base-drafts/pull/2866</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Don&#39;t state QUIC error codes.</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2866.patch'>https://github.com/quicwg/base-drafts/pull/2866.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2866.diff'>https://github.com/quicwg/base-drafts/pull/2866.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/2866?email_source=notifications&amp;email_token=AFTOJK6PD6JK76FUNIHCDW3P5IKTZA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4VEITQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYPX6SOKIPD75ZV4XDP5IKTZANCNFSM4H4TGEOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6HAS67JDAPWGGDGZTP5IKTZA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4VEITQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJK6PD6JK76FUNIHCDW3P5IKTZA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4VEITQ",
"url": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJK6PD6JK76FUNIHCDW3P5IKTZA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G4VEITQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1a1dbc54f77_e963fe853ccd960766b--


From nobody Mon Jul  1 08:01:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 941E3120308 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:01:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id v6Rk4nWRziyj for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:01: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 5CC9F120326 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:01:05 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:01:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993264; bh=crOe20q46BKRRzPN6Tttewul2mGEWMsaUbRHR8Ea3F8=; h=Date:From:To:Subject:From; b=GPe66TdmVIQPTj3CqVOZ4NNT++HHMnUgF3uvP0zebIBCZB+UAzXFkG7SbHNeZNloh LL08FY+QJig3M5J+NgkMxp1t1o3G5LEL7Csstf/qchtqlZJ8PmQS1kmk1tdcnO0SMu AfJbwzqh5HI1Urt5P9EhiyXZdsuvckccPYcBuDUM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/09ee3e-81a988@github.com>
Subject: [quicwg/base-drafts] 81a988: 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/hYHQgp32WOR8C7LRyEqv3Rzo2AU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:01:08 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 81a9886a84216209e2f3a8b4db475a5428b0e58e
      https://github.com/quicwg/base-drafts/commit/81a9886a84216209e2f3a8b4db475a5428b0e58e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

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

Add an intro per Martin's suggestion as well as some of Martin's other suggestions.
Also added the Limiting ACK ranges sub-section



From nobody Mon Jul  1 08:01:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 88FC5120308 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:01:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2MpY0FfWbZ6g for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:01:16 -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 DEB22120312 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:01:15 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:01:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993274; bh=BADHH4pKs7GsrrvRuP/ChB8ozbK1DhSYgJRZSQlDdVs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V6kQ1X6rwB47zs9nQDU+TeghJracRCx5KZMrOwn/iyWxa4cQH9GJiGTNm+Fnx0E6V 0GBUG77k93gGn73xG0VMoVBX/hpjl6n56Szpcmo0jl3wnBz1VtIdUhBwKAp2WYAUJB q8xn9fTplWrhU0qBdlaVeNaDe/N7YKYfa9+SdGmY=
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/2794/push/3770963981@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a2039c0f27_68723fe94c0cd9681210be"; 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/df3XV2NKf6X0if_xd_8p_wf33yo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:01:18 -0000

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

@ianswett pushed 1 commit.

81a9886a84216209e2f3a8b4db475a5428b0e58e  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/2794/files/09ee3ebc938c58016d7c81eaec22dc2f1b8cb454..81a9886a84216209e2f3a8b4db475a5428b0e58e

----==_mimepart_5d1a2039c0f27_68723fe94c0cd9681210be
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/81a9886a84216209e2f3a8b4db475a5428b0e58e">81a9886</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/2794/files/09ee3ebc938c58016d7c81eaec22dc2f1b8cb454..81a9886a84216209e2f3a8b4db475a5428b0e58e?email_source=notifications&amp;email_token=AFTOJK3SM55VBHO5TCBRT6TP5IL3TA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJWGM4TQMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3X4MHWMBFICLWBBS3P5IL3TANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZOVNVDCSACZZHIFX3P5IL3TA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJWGM4TQMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/09ee3ebc938c58016d7c81eaec22dc2f1b8cb454..81a9886a84216209e2f3a8b4db475a5428b0e58e?email_source=notifications\u0026email_token=AFTOJK3SM55VBHO5TCBRT6TP5IL3TA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJWGM4TQMI",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/09ee3ebc938c58016d7c81eaec22dc2f1b8cb454..81a9886a84216209e2f3a8b4db475a5428b0e58e?email_source=notifications\u0026email_token=AFTOJK3SM55VBHO5TCBRT6TP5IL3TA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJWGM4TQMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1a2039c0f27_68723fe94c0cd9681210be--


From nobody Mon Jul  1 08:02:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 491C0120312 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:02:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 46tXEt7VQSCN for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:02: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 41D93120308 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:02:03 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:02:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993322; bh=/VFFLXzWd7qCJobJm94kysBbqb1uPC5d8RgwFooi+fk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d8Ims1iKvJFiUMxE1mRLQU5SOpSQOKEXx8dyygug7wYOJhi/LsulPlafsH0gBLKXp PE9Es+fAM5pUdx/xVKLD4ihAYLhwIV5XoaXoDunzZOz6Sk2zRTAGXqIBGoh3Cuk5xo w2HJQcxJLIIrt+8rYRC/YRVHPy7nzURJTwTLT6fw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2AMQC357NESKJZQAV3E5JOVEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256379963@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a206a13ca3_6e183f8e026cd96c27747f"; 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/blJtffuH0AMcSCrbNgHQEU8eI9Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:02:05 -0000

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

ianswett commented on this pull request.

Thanks Martin, I believe I got all your suggestions and I created a sub-section for limiting ACK ranges, since this section was getting very long.

> @@ -2859,13 +2859,16 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+Packets containing only ACK frames are not congestion controlled, so there are

Good point, this PR is turning into a rewrite of this section, but it needed it.

> @@ -2859,13 +2859,16 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting

Given ACK frames aren't congestion controlled, I think this is better as a MUST.  Also, this PR adds text about not bundling a PING or other ack-eliciting packet with every ACK frame.

>  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such

I just checked both the transport and recovery drafts and I don't see any indication of a PING causing an immediate ACK.

> @@ -2883,16 +2886,21 @@ needing acknowledgement are received.  The sender can use the receiver's
 Strategies and implications of the frequency of generating acknowledgments are
 discussed in more detail in {{QUIC-RECOVERY}}.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames with
+other frames when possible.

To clarify, you're thinking of the case when you're sending ACK-eliciting packets but not receiving any?  Good question, I'll add more text highlighting this and improving this paragraph.

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

<p><b>@ianswett</b> commented on this pull request.</p>

<p>Thanks Martin, I believe I got all your suggestions and I created a sub-section for limiting ACK ranges, since this section was getting very long.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299075665">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2859,13 +2859,16 @@ valid frames? --&gt;
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+Packets containing only ACK frames are not congestion controlled, so there are
</pre>
<p>Good point, this PR is turning into a rewrite of this section, but it needed it.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299078723">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2859,13 +2859,16 @@ valid frames? --&gt;
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
</pre>
<p>Given ACK frames aren't congestion controlled, I think this is better as a MUST.  Also, this PR adds text about not bundling a PING or other ack-eliciting packet with every ACK frame.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299080639">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such
</pre>
<p>I just checked both the transport and recovery drafts and I don't see any indication of a PING causing an immediate ACK.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299082377">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2883,16 +2886,21 @@ needing acknowledgement are received.  The sender can use the receiver&#39;s
 Strategies and implications of the frequency of generating acknowledgments are
 discussed in more detail in {{QUIC-RECOVERY}}.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames with
+other frames when possible.
</pre>
<p>To clarify, you're thinking of the case when you're sending ACK-eliciting packets but not receiving any?  Good question, I'll add more text highlighting this and improving this paragraph.</p>

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


From nobody Mon Jul  1 08:02:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B452212034C for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:02:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7r9t7UVBASui for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:02:35 -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 E8FD6120348 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:02:34 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:02:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993353; bh=Ky1tf8bGeLywsDl+N7d+LQqw3whJ8ppoS9VRZ4LtM+s=; h=Date:From:To:Subject:From; b=OTfpabuSB/A0v6sUGisIdIqUh/NgEN6FuWPKQz8RPAtTwZ7Kl5Mco8Sp4NhwSP/sx 2jnwPUjz/Spf9Z++MbQFRVzQWA5py/RFn0gIFIxEzZcx0ZFKoWKRd5cpMq+V3fhZpH GlJSl4oByOCX0iNXaTFfx7IwI3Zl7nnwTTsB/P+c=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/96d7d9-a854da@github.com>
Subject: [quicwg/base-drafts] a854da: Script updating gh-pages from 81a9886a. [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/3bkekewIMh6J4PygMuUb_TDpvfs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:02:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a854da5d94274857b7fb575ab468de9efa37b9ce
      https://github.com/quicwg/base-drafts/commit/a854da5d94274857b7fb575ab468de9efa37b9ce
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

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



From nobody Mon Jul  1 08:04:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1E3D4120128 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:04:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 CNUcUNh-5zpt for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:04: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 C7460120111 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:04:46 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:04:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993485; bh=WPIYb3w+3TtvR4CpsSCNvXK93RKnFk1CYCfnz0/TJSE=; h=Date:From:To:Subject:From; b=HbOiObMnQVrvhJhvxk0JhBo81EMWnAZb81PlFPSwIeW4RviwFD26J4NgAsUigMs0G 4yjx8kjfniNyuxAcYRBN6nScUYrJJaIAHu7xpra5au29tFLbo3+cheHbXphGaBTO/n Xz/hIv22e0wfbr7CmyP5mesCJhhrJxZpPhzYsI2s=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/81a988-b4f756@github.com>
Subject: [quicwg/base-drafts] b4f756: 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/jObzFRQ1izPL6tWZJVc9ub8J2DA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:04:48 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: b4f756770b96c402a2b90123c2d3a9378806ed9a
      https://github.com/quicwg/base-drafts/commit/b4f756770b96c402a2b90123c2d3a9378806ed9a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

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



From nobody Mon Jul  1 08:04:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2917F120128 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:04:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UMmJ6ubQ25_F for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:04:53 -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 A04E8120111 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:04:53 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:04:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993493; bh=IF7K4WDhHtBZhkfKX8GvgPorvD1jgxSxBto+A0rKsmA=; h=Date:From:To:Subject:From; b=OoAmPTLb0MMws0zDk6YzKgaKs62M5Hg+0LYgZH2XmQvwspBgHieznrtY3xyeKO+mi 7qChYUD74AmjJIbpgIgj9I22PCfkTNkiDhAhsCpYgkeh3Sbt8j/nt2lOpW1rODQTDL cKLODQA8OxxTxksnatLRKaFRrS8k3I8W5hz0gSiY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a854da-837f7d@github.com>
Subject: [quicwg/base-drafts] 837f7d: Script updating issues at 2019-07-01T15:04:46Z. [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/1pw_6ZzjAXP7ELKzZCkwYORC1D0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:04:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 837f7d68b8aa8c20b97e86500be47a21db1f9341
      https://github.com/quicwg/base-drafts/commit/837f7d68b8aa8c20b97e86500be47a21db1f9341
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-01T15:04:46Z. [ci skip]



From nobody Mon Jul  1 08:05:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B7E54120330 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:04:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rJ3ZfyfT2AO4 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:04: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 AC9A8120111 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:04:55 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:04:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993494; bh=rmhu3mQCtCor0tVaLS8ZnFHegHviudK8NlupsxlAuHM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=P0n26VV2izP0aMh1YxvYzTk3cDjHwAYeMNRLDsGbjdJXWqxOseroGOdsM4vhogHuw 1lkNrYraCAGrZOdqhHlW5NpdBMYl+w+GwmmtMLVBZ+unWnwRVLzVToVr5ecvNEaMa9 3DynZoGymK5GY8AIIxb9Apfxi9fZG48HPFUEaq4E=
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/2794/push/3770979361@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a211661895_3e13f856f2cd95c1022d0"; 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/ZC2GiEcal5FGkNVUi6Y9VCF2oPs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:04:59 -0000

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

@ianswett pushed 1 commit.

b4f756770b96c402a2b90123c2d3a9378806ed9a  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/2794/files/81a9886a84216209e2f3a8b4db475a5428b0e58e..b4f756770b96c402a2b90123c2d3a9378806ed9a

----==_mimepart_5d1a211661895_3e13f856f2cd95c1022d0
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/b4f756770b96c402a2b90123c2d3a9378806ed9a">b4f7567</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/2794/files/81a9886a84216209e2f3a8b4db475a5428b0e58e..b4f756770b96c402a2b90123c2d3a9378806ed9a?email_source=notifications&amp;email_token=AFTOJKYYYAT7FLXNH3B6GNTP5IMJNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJXHEZTMMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY5RTO74RVTGKB42JTP5IMJNANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDM367HL34X6COLD3P5IMJNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJXHEZTMMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/81a9886a84216209e2f3a8b4db475a5428b0e58e..b4f756770b96c402a2b90123c2d3a9378806ed9a?email_source=notifications\u0026email_token=AFTOJKYYYAT7FLXNH3B6GNTP5IMJNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJXHEZTMMI",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/81a9886a84216209e2f3a8b4db475a5428b0e58e..b4f756770b96c402a2b90123c2d3a9378806ed9a?email_source=notifications\u0026email_token=AFTOJKYYYAT7FLXNH3B6GNTP5IMJNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TAOJXHEZTMMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1a211661895_3e13f856f2cd95c1022d0--


From nobody Mon Jul  1 08:06:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1895C120111 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:06:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oLYWCfuptAv8 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:06:12 -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 77B14120128 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:06:12 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:06:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993571; bh=7Lpy7TKkzx1NTB3nvk9EyGOUUB40XPNS+w9ykPbgX8Q=; h=Date:From:To:Subject:From; b=JsZywOIzcXTrh+pi6NvfQs7655NEVbk4pY9papKyJJjTURx7/k+fq4tYfTWfNLE2y MWsunOwafTqc9R3VB255rHl7fmHmyEO72ED8KPcIz7uki7R1YNdhhF27YpHVvSL6RY +TabSBlJf/1Vhva8tL/qVOM+cbTpFcbOQbuSW56o=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/837f7d-a94324@github.com>
Subject: [quicwg/base-drafts] a94324: Script updating gh-pages from b4f75677. [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/IYbPvmWB0rXyUGX8CvDN1xCl_bk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:06:14 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a94324237da1e79f3d075c7724aa11395f6e8107
      https://github.com/quicwg/base-drafts/commit/a94324237da1e79f3d075c7724aa11395f6e8107
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Mon Jul  1 08:08:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 85CB71202D4 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:08:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pqi5JMH3iqvD for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:08: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 DF70A1200FA for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:08:02 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:08:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561993682; bh=l9iu0gdOb3iEfUki2Xc2J3weA0yxlNapZ+LEHYEg9FI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I3zlZV8BcyWrjL9SHtUkNvOa9ejKe+Ic+qtedsYRjBzIluUcUOrNymV5eQffhvzwY d/WSt9+2CmBHILno/3KrxSAfaX8iI1q+op6btfgNfPNslINJk2bBnBSO9WevGZRil2 ZN8WfxfjSsx4EwJUlblIGTsKfrLAab6j7mcyuRBI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK37SOGBOP2STTZK5PF3E5KFDEVBNHHBXFJCE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2866/review/256398389@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2866@github.com>
References: <quicwg/base-drafts/pull/2866@github.com>
Subject: Re: [quicwg/base-drafts] Don't state QUIC error codes in HTTP/3 (#2866)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a21d1e087f_e963fe853ccd9603002ce"; 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/Gq_RN1oIhzODJ1D0Ev6xc5VHekI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:08:05 -0000

----==_mimepart_5d1a21d1e087f_e963fe853ccd9603002ce
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/2866#pullrequestreview-256398389
----==_mimepart_5d1a21d1e087f_e963fe853ccd9603002ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2866?email_source=notifications&amp;email_token=AFTOJK6PECHSEXWQW7IENC3P5IMVDA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5EFINI#pullrequestreview-256398389">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5Y6UTGE5RBY26CEP3P5IMVDANCNFSM4H4TGEOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNPLNN2UB6TUFYJ3DP5IMVDA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5EFINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJK6PECHSEXWQW7IENC3P5IMVDA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5EFINI#pullrequestreview-256398389",
"url": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJK6PECHSEXWQW7IENC3P5IMVDA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5EFINI#pullrequestreview-256398389",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1a21d1e087f_e963fe853ccd9603002ce--


From nobody Mon Jul  1 08:30:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0A5561200F3 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:30:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Bl3aMxDBQxbK for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 08:30:14 -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 822BB1200FF for <quic-issues@ietf.org>; Mon,  1 Jul 2019 08:30:14 -0700 (PDT)
Date: Mon, 01 Jul 2019 08:30:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561995013; bh=9cMYig9VemPSOBU0W+Vt1LFBNT3y3fmS068VgOemjso=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KesqbC8kbievdgjqdrRAIagRF2kE6R3bJsEDG9hskr2UvBEQ5u5JepsMp91j5j0sj XHVLBJ15tRl+YqFn+NKDIKnX8EJ8pjgqjewVGWt8VhpUwjThb1wF8k3+L4Xtmiyk2H ZjGdutLuR0CW1d1K6eLDjFGMf8hAmOU0ctsSEd8E=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54PNNYBJLFFDG5GKV3E5MYLEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256411614@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a270583c2e_624e3f9f010cd96c676726"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/em2UT8VbpHf-hlABZ0hbbz26h40>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 15:30:16 -0000

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

igorlord commented on this pull request.



>  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such

You are correct. I remember we had a discussion about doing so, but I also do not see it landing anywhere.  So this PING as an example of what can be done sounds good.  But "MUST NOT bundle a PING" in the following sentence looks like normative language, and PING is not longer just an example there.

Maybe you want to write: "MUST NOT make every otherwise non-ACK-eliciting packet ACK-eliciting, in order to ..." or "MUST NOT add an ACK-eliciting frame to every otherwise non-ACK-eliciting packet, in order to ...".

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

<p><b>@igorlord</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299100230">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such
</pre>
<p>You are correct. I remember we had a discussion about doing so, but I also do not see it landing anywhere.  So this PING as an example of what can be done sounds good.  But "MUST NOT bundle a PING" in the following sentence looks like normative language, and PING is not longer just an example there.</p>
<p>Maybe you want to write: "MUST NOT make every otherwise non-ACK-eliciting packet ACK-eliciting, in order to ..." or "MUST NOT add an ACK-eliciting frame to every otherwise non-ACK-eliciting packet, in order to ...".</p>

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


From nobody Mon Jul  1 12:50:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B02731200D8 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 12:50:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KHfGjNfvZ6b7 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 12:50: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 A57501200C1 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 12:50:06 -0700 (PDT)
Date: Mon, 01 Jul 2019 12:50:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562010605; bh=E7njnCxI5+qz3Xu5ezDj/aHuMJlUzNzLs8DHk4+mSG4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kT0W1fSwAjhr3tqduip1Ings0lv5uw8zr2U/C4DkKEO9xoX9N0G4iB5LuM9v4xN/w lNme45sayQ9+8MRQA6n4oa8RELRtMAUWIe5hSejdeAhRc/17rSRevtBKMtMGGZtQGx YGQJzjrVECkN2DeKqoXb9XknEJVxIL4leENhUEPg=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYU44RE4O43HKP7KKF3E6LG3EVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256529083@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a63ed5498a_25d33fc704acd9641295a7"; 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/N_Fn0I7JLbXm_Uqq2YBkvt-W6Hs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 19:50:09 -0000

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

DavidSchinazi commented on this pull request.



> -ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.
+
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. Limiting the sending of ACK
+frames avoids creating an indefinite feedback loop of acknowledgements,
+which could prevent the connection from ever becoming idle. The endpoint MUST
+however acknowledge non-ACK-eliciting packets when sending ACK frames in
+response to Ack-eliciting packets.

s/Ack-eliciting/ACK-eliciting/

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

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299191675">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.
+
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. Limiting the sending of ACK
+frames avoids creating an indefinite feedback loop of acknowledgements,
+which could prevent the connection from ever becoming idle. The endpoint MUST
+however acknowledge non-ACK-eliciting packets when sending ACK frames in
+response to Ack-eliciting packets.
</pre>
<p>s/Ack-eliciting/ACK-eliciting/</p>

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


From nobody Mon Jul  1 12:56:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 05BAD1200E7 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 12:56:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VqXB1CeuJODm for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 12:56: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 7F1BF1200D6 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 12:56:09 -0700 (PDT)
Date: Mon, 01 Jul 2019 12:56:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562010968; bh=8TrZyUkoJaTboEZ1hlAE3RJuG7z2UsSrkD+/mDZrwKc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q/ekZHaNgID5LyuVc1v8U8hMxuwRGiITciWDKqyDIKbVDZeeLcbErd7eRdgqX59K+ HCj9zuFajItfS7d1m0+kkQmY9OMw20QjWEr5BKQv2mkOaaGM+iUXpOLBRRIfNrgrfE mNU/6r6/0lwNeb0DaY8LIwnrNyi2lO/mRUpYrRMA=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2T2NGEPLUCDLZIO4N3E6L5REVBNHHBXE45WM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2865/review/256531717@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2865@github.com>
References: <quicwg/base-drafts/pull/2865@github.com>
Subject: Re: [quicwg/base-drafts] Fix HPACK xref (#2865)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a65586df3e_78ae3fce8e4cd96011559f"; 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/qzA059CLFv3GpKdQ3FbP0T6qDEA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 19:56:11 -0000

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

afrind 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/2865#pullrequestreview-256531717
----==_mimepart_5d1a65586df3e_78ae3fce8e4cd96011559f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@afrind</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/2865?email_source=notifications&amp;email_token=AFTOJKY3AOORH5354AIGGI3P5JONRA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5FF2BI#pullrequestreview-256531717">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XLHUJLB2K4LFZ4JTP5JONRANCNFSM4H4RMLEQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK36FYYROOJURMKIHV3P5JONRA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5FF2BI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJKY3AOORH5354AIGGI3P5JONRA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5FF2BI#pullrequestreview-256531717",
"url": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJKY3AOORH5354AIGGI3P5JONRA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5FF2BI#pullrequestreview-256531717",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1a65586df3e_78ae3fce8e4cd96011559f--


From nobody Mon Jul  1 13:01:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DCE521200E0 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:00:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ATosp4ZhTwma for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:00: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 44A6A1200CE for <quic-issues@ietf.org>; Mon,  1 Jul 2019 13:00:57 -0700 (PDT)
Date: Mon, 01 Jul 2019 13:00:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562011256; bh=EaJ4C7CMTqPaJBkllAgMEp+Uj08im1x7MXMjTmRBAcA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V6nfz8nMB3F4NDG7ulDI4SjZAmV9r7DTBMj8oQLJDNUXa6KwTO31e2Ab6Kyyeeyv0 6SWLt2aOraxy8lWcJAJSJhomMPFnqB7SvOOS+nTWBAIJcHzlPI6XCOeC7InvVfYfsG y5Sb6yjp6bbprYJqoGH2NnwFSwkL6lBqvRWeN3Jo=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WYNIW7ZG5QOD62SN3E6MPREVBNHHBXEE5LI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2864/c507404132@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2864@github.com>
References: <quicwg/base-drafts/pull/2864@github.com>
Subject: Re: [quicwg/base-drafts] Explicitly allow discard of packets <40 bytes (#2864)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a6678121b6_2ad13fdd0c2cd96c1028f0"; 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/9EbgzmQaJxzGEaHlO-93Mc8yoo8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 20:00:59 -0000

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

This PR adds a recommendation involving the number 40 without explaining where that number comes from. It would be nice to include a reference to the section that explains the math.

That said, I don't think this number should depend on the maximum connection ID length, [as discussed here](https://github.com/quicwg/base-drafts/issues/2770#issuecomment-502763574). But feel free to tell me that this PR is not the place to discuss 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/2864#issuecomment-507404132
----==_mimepart_5d1a6678121b6_2ad13fdd0c2cd96c1028f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This PR adds a recommendation involving the number 40 without explaining where that number comes from. It would be nice to include a reference to the section that explains the math.</p>
<p>That said, I don't think this number should depend on the maximum connection ID length, <a href="https://github.com/quicwg/base-drafts/issues/2770#issuecomment-502763574" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2770/hovercard">as discussed here</a>. But feel free to tell me that this PR is not the place to discuss 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/2864?email_source=notifications&amp;email_token=AFTOJK47PIVDUAR4S3V45Q3P5JO7RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY7F6ZA#issuecomment-507404132">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK55UG5XQDB7HKDRDP3P5JO7RANCNFSM4H4NX4RA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK44WCIPWSJRXTL6YK3P5JO7RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY7F6ZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJK47PIVDUAR4S3V45Q3P5JO7RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY7F6ZA#issuecomment-507404132",
"url": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJK47PIVDUAR4S3V45Q3P5JO7RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY7F6ZA#issuecomment-507404132",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1a6678121b6_2ad13fdd0c2cd96c1028f0--


From nobody Mon Jul  1 13:08:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B9EDB1200E0 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:08:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 4H5dz62VE6Me for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:08:08 -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 2BE8D1200CE for <quic-issues@ietf.org>; Mon,  1 Jul 2019 13:08:08 -0700 (PDT)
Date: Mon, 01 Jul 2019 13:08:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562011687; bh=6XrtGffLxPc17uzbWTTSgjCLsRXqbnI6m99vBtxYpWU=; h=Date:From:To:Subject:From; b=m0c4d1XG/12OJDXRRdMCUMB/LG+SzW2pr+zMUNIABdhwBdRyFskKxuHl9SbZPB3jd ymc9fRv3AdPPZI2eR4Knnin6EsqMPMUaLSkeIklmEO1CQJEM5Tv8bhyxUsqiVcBXMa ukohsXZ6W4+zAE9vHxEsQqQe4tyGpI4D78J5s5rs=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/b4f756-5d90a5@github.com>
Subject: [quicwg/base-drafts] 5d90a5: 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/NVjuji28pty0ALgX4N5fN2XwAUE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 20:08:10 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5d90a56f7104a2377ea015a718752ef8700dce4a
      https://github.com/quicwg/base-drafts/commit/5d90a56f7104a2377ea015a718752ef8700dce4a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

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



From nobody Mon Jul  1 13:08:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 22F231200D6 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:08:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KSdVsGfTWLcE for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:08: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 5B69D1200CE for <quic-issues@ietf.org>; Mon,  1 Jul 2019 13:08:16 -0700 (PDT)
Date: Mon, 01 Jul 2019 13:08:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562011695; bh=z3PgX5Yb2xylxjUaEu/juubweZEoSIpdljMAqZJ23jA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mon80QqzLojU9W2HFvNMUodDrXiO6HstY6W1RpPNQIXvnlViYrf2a619+3D3rGoSP sMEjwxCJBaK8xHD5RCkDA/EFI45qCXX8wa6aKuOy7mcmR4eHmOCh8PDjggQ+DJJukn qqphrtGiOFd9MdEarKq+v7EAA1WgajtXJ9SoqTDA=
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/2794/push/3771979191@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1a682f676c0_dc83f9624ecd96c1382f0"; 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/NDDKIeSB5wM7aedsglSGQjiue-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: Mon, 01 Jul 2019 20:08:18 -0000

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

@ianswett pushed 1 commit.

5d90a56f7104a2377ea015a718752ef8700dce4a  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/2794/files/b4f756770b96c402a2b90123c2d3a9378806ed9a..5d90a56f7104a2377ea015a718752ef8700dce4a

----==_mimepart_5d1a682f676c0_dc83f9624ecd96c1382f0
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/5d90a56f7104a2377ea015a718752ef8700dce4a">5d90a56</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/2794/files/b4f756770b96c402a2b90123c2d3a9378806ed9a..5d90a56f7104a2377ea015a718752ef8700dce4a?email_source=notifications&amp;email_token=AFTOJK44NV7M44K4X4RG4A3P5JP27A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TCOJXHEYTSMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5UOVWP75TGZPHZYJDP5JP27ANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5QVL73Y444SSG2N3TP5JP27A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TCOJXHEYTSMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/b4f756770b96c402a2b90123c2d3a9378806ed9a..5d90a56f7104a2377ea015a718752ef8700dce4a?email_source=notifications\u0026email_token=AFTOJK44NV7M44K4X4RG4A3P5JP27A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TCOJXHEYTSMI",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/b4f756770b96c402a2b90123c2d3a9378806ed9a..5d90a56f7104a2377ea015a718752ef8700dce4a?email_source=notifications\u0026email_token=AFTOJK44NV7M44K4X4RG4A3P5JP27A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TCOJXHEYTSMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1a682f676c0_dc83f9624ecd96c1382f0--


From nobody Mon Jul  1 13:09:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A82E61200D6 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:09:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bazveZB7u630 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 13:09:41 -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 AA73B1200CE for <quic-issues@ietf.org>; Mon,  1 Jul 2019 13:09:41 -0700 (PDT)
Date: Mon, 01 Jul 2019 13:09:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562011781; bh=/MYTTunpijAaHULNU7b0SRirqwNWkBZEwg9avysVCIo=; h=Date:From:To:Subject:From; b=IbOxJOwCuiY4xDA7bq91wUcjClwUMy5BB2WYYCeH1zMzeFVXoiSB3i2jjQ9ZnNnph ypFnZXMcmQNHgEBWKAAcI9t2TK13AQ5Eqwy7wvymHXOSKdp4p3LDngAnUEfQdvzF5T OxKxjY/0oTMn1PpWfoXxyMs2NePtTPb6rXSzACbY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a94324-bccf3b@github.com>
Subject: [quicwg/base-drafts] bccf3b: Script updating gh-pages from 5d90a56f. [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/PrWeRPyoE3Qth2Zx5G6lkpTjnAI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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 Jul 2019 20:09:43 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bccf3b90015965afd0370df8308e89b4cf877421
      https://github.com/quicwg/base-drafts/commit/bccf3b90015965afd0370df8308e89b4cf877421
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Mon Jul  1 19:24:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD28312019B for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:24:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_fnSMP44WCI for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:24:13 -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 532A91200D7 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 19:24:13 -0700 (PDT)
Date: Mon, 01 Jul 2019 19:24:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562034252; bh=oY9G6jMvYDV4dJkP8lg40wmwEzNtbn5wVjGsASa2i0M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZpMz+J1Sub0Snaqvw0X17HOZtWqEeYXzTSPREgpZCONaIipCFjDnMhS6Gp5NoBXUk zMmCW8epGvhp8RcIbZGdkyc5ysvB0Kx1/yzl/dCBbk4nPR4mNbnhBq++qhBUpcNTS0 WXhH2QNhENAqCtjKEpp367ZV1/6AWrEzgM+j8SJ8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK47W4W3NJ7PND4U3VF3E7ZMZEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256638040@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1ac04c1ca99_4d103fbd6b0cd95c900da"; 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-DxvuCmGhI7PN5crVQRAS-KmxE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 02:24:15 -0000

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

martinthomson commented on this pull request.



> @@ -2883,16 +2886,21 @@ needing acknowledgement are received.  The sender can use the receiver's
 Strategies and implications of the frequency of generating acknowledgments are
 discussed in more detail in {{QUIC-RECOVERY}}.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames with
+other frames when possible.

Yes, that is always the problem 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/2794#discussion_r299281274
----==_mimepart_5d1ac04c1ca99_4d103fbd6b0cd95c900da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299281274">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2883,16 +2886,21 @@ needing acknowledgement are received.  The sender can use the receiver&#39;s
 Strategies and implications of the frequency of generating acknowledgments are
 discussed in more detail in {{QUIC-RECOVERY}}.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames with
+other frames when possible.
</pre>
<p>Yes, that is always the problem 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/2794?email_source=notifications&amp;email_token=AFTOJK33KDTQVIN23QSBPIDP5K34ZA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7YWA#discussion_r299281274">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3TV3ZLDRTYWS45QI3P5K34ZANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RX7ZTJMMOHZZHTJDP5K34ZA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7YWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK33KDTQVIN23QSBPIDP5K34ZA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7YWA#discussion_r299281274",
"url": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK33KDTQVIN23QSBPIDP5K34ZA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7YWA#discussion_r299281274",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1ac04c1ca99_4d103fbd6b0cd95c900da--


From nobody Mon Jul  1 19:24:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 71F1D12019B for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:24:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2RpD7pOF5UL9 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:24: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 14FA81200D7 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 19:24:45 -0700 (PDT)
Date: Mon, 01 Jul 2019 19:24:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562034283; bh=11uhch87tUnon/tlBUj9FrvMOc0PI6jRopFW3kxfqLU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xOFGIqyv2/o7tuOibR3VD6qtpOcgrV/0O0Fb5Mq1BmHgiv+KE39pNom1rnWb8WjRJ Btp0zda9zvYgCXpnl3wWy+Bjxe8CSMEs8gnDGKQje81GeSLcarLg/T+BWeKNW9VQlW K4xfnW6gSpp2IGy8njdWvrxoqRPvOXxVOEUCl6x4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DP22YEWQOMBXMOEN3E7ZOXEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256638140@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1ac06bd37d5_79df3fc2380cd96c632d5"; 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/JjUxP4t7NIzkTRdSlKgtRlRvMqI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 02:24:47 -0000

----==_mimepart_5d1ac06bd37d5_79df3fc2380cd96c632d5
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/2794#pullrequestreview-256638140
----==_mimepart_5d1ac06bd37d5_79df3fc2380cd96c632d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2794?email_source=notifications&amp;email_token=AFTOJK4RFSLW4KJNAE2GBQTP5K36XA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7ZPA#pullrequestreview-256638140">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJNTHASVD5NLDJQWLP5K36XANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK32OIGZXMHO3QFLJHTP5K36XA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7ZPA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK4RFSLW4KJNAE2GBQTP5K36XA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7ZPA#pullrequestreview-256638140",
"url": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK4RFSLW4KJNAE2GBQTP5K36XA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F7ZPA#pullrequestreview-256638140",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1ac06bd37d5_79df3fc2380cd96c632d5--


From nobody Mon Jul  1 19:29:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7C701201BC for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:29:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cvNSkoPfJLDA for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:29: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 7889D12019F for <quic-issues@ietf.org>; Mon,  1 Jul 2019 19:29:13 -0700 (PDT)
Date: Mon, 01 Jul 2019 19:29:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562034552; bh=+AGakvQaKR+VjQmjilQi8xfbWW+mQQJhvC0IM8+Uflk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Js1o7Quu4relYuxG3tIG2d20nnY2712Rz76l3SiGIwTTX1NV1SH1Tte+r4jhozKwu rtjTJrUhgwHCYYdNPp5IIUZi16QNhkIUaU2yx06ll0r4abt0zHdMLfiHsj73x01G9W pmJPjtKkGoahWS9LDyApMFHjsoGuu8taT55DJE0U=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3M62RAKHQI77KP2RN3E7Z7REVBNHHBXFJCE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2866/review/256638921@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2866@github.com>
References: <quicwg/base-drafts/pull/2866@github.com>
Subject: Re: [quicwg/base-drafts] Don't state QUIC error codes in HTTP/3 (#2866)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1ac17825c80_3d863fc7680cd96416998b"; 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/cq2J_Eq_Gm5AFtZl7cGHZuv-MJU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 02:29:15 -0000

----==_mimepart_5d1ac17825c80_3d863fc7680cd96416998b
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/2866#pullrequestreview-256638921
----==_mimepart_5d1ac17825c80_3d863fc7680cd96416998b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2866?email_source=notifications&amp;email_token=AFTOJKYMYKN5RYOSFFOENFLP5K4PRA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F77SI#pullrequestreview-256638921">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK46ZCE4MT2VZKULLK3P5K4PRANCNFSM4H4TGEOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7LCLIL3ZJRFGAM673P5K4PRA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F77SI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJKYMYKN5RYOSFFOENFLP5K4PRA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F77SI#pullrequestreview-256638921",
"url": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJKYMYKN5RYOSFFOENFLP5K4PRA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5F77SI#pullrequestreview-256638921",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1ac17825c80_3d863fc7680cd96416998b--


From nobody Mon Jul  1 19:32:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 08CFC1201B3 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:32:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 34irXfM8Eilz for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 19:32: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 2F07212019B for <quic-issues@ietf.org>; Mon,  1 Jul 2019 19:32:10 -0700 (PDT)
Date: Mon, 01 Jul 2019 19:32:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562034728; bh=O15cZIZbGod/Fvh4bHLPq0zcOr3X7A0h5qiuyfYXL+Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1BXjkhsGhr3/oirBvOG00FtiX0vgWjUX51oLPYjR9zuEaI1B4XnwiviNnMfQIVSyp wn9RMcmRbIctA/DFrvitHWRqt4UHrAqEeWwvEnrE/B6OuzYk2ugHISetVBlijx5uoY 8cNenP6xsPiIHK3YxGzXZnv0pWVdeMqK0KVXFToc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32JYCFCMQKPS6QZAF3E72KREVBNHHBXEE5LI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2864/c507493620@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2864@github.com>
References: <quicwg/base-drafts/pull/2864@github.com>
Subject: Re: [quicwg/base-drafts] Explicitly allow discard of packets <40 bytes (#2864)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1ac228b776e_1d053f8cb34cd96413738"; 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/WwhkgUtYO0DBp1Uzfxm_dIDYDgk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 02:32:12 -0000

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

If you want to talk about the idea that the connection ID might change in length, that's a separate issue, which you should feel free to open.  I am fairly sure that I can show that this isn't a meaningful insight, but happy to discuss it 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/2864#issuecomment-507493620
----==_mimepart_5d1ac228b776e_1d053f8cb34cd96413738
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If you want to talk about the idea that the connection ID might change in length, that's a separate issue, which you should feel free to open.  I am fairly sure that I can show that this isn't a meaningful insight, but happy to discuss it 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/2864?email_source=notifications&amp;email_token=AFTOJK5W2QUMSXQIACSWCRLP5K42RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY73Z5A#issuecomment-507493620">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6HWXNXT4MI3X7WZ53P5K42RANCNFSM4H4NX4RA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZB2HJW67TGEIVX4EDP5K42RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY73Z5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJK5W2QUMSXQIACSWCRLP5K42RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY73Z5A#issuecomment-507493620",
"url": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJK5W2QUMSXQIACSWCRLP5K42RA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY73Z5A#issuecomment-507493620",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1ac228b776e_1d053f8cb34cd96413738--


From nobody Mon Jul  1 20:18:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 74B091201C7 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 20:18:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5qWdp5Edlf3Q for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 20:18:51 -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 64B821200D7 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 20:18:51 -0700 (PDT)
Date: Mon, 01 Jul 2019 20:18:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562037529; bh=OHo4fqjlbLVebYjPj3E2lh8xKPjDuPBtrSDSxbZw+/w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PP3VoZJPeEI/54xz0GtXWLSJihfP+x9H6N/+hcH/x5Rd/2M5Ko1u8eoFq1c7yVGgn jceK2LTH0IKxxGLS68IeIAITIH8URPz1RADaRUIs2fYVLKqrEi1RP7bcaRYw8k0cyz fWyXyAs0EQCKaSgBMfYfpquRYrdXca1YtLXuVXcU=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67JV6E7ERVGWJOD653E77ZTEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256647845@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1acd19a7bed_4fb93fc6b4ecd9601140d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_GGksqnbw0DUa71OCR1WRjNlxPU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 03:18:54 -0000

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

igorlord commented on this pull request.



> @@ -2859,13 +2859,16 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting

The text about not bundling PING (& friends) with every ACK is for the sender of only-ACKs.

The question here is about the receiver of only-ACKs.  Presumably such endpoint has just sent a train of packets, and when it received an ACK for all the packets, it has nothing more to send.  At that point, it may wish to ACK the last ACK w/o waiting for the receiver to send it ACK+PING.  Would that be sane behavior?  I think so.  But if the sender bundles ACKs for ACKs in packets with data, the receiver will hold at most 1-rtt worth of state, so it is not that bad I guess.

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

<p><b>@igorlord</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299289179">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2859,13 +2859,16 @@ valid frames? --&gt;
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
</pre>
<p>The text about not bundling PING (&amp; friends) with every ACK is for the sender of only-ACKs.</p>
<p>The question here is about the receiver of only-ACKs.  Presumably such endpoint has just sent a train of packets, and when it received an ACK for all the packets, it has nothing more to send.  At that point, it may wish to ACK the last ACK w/o waiting for the receiver to send it ACK+PING.  Would that be sane behavior?  I think so.  But if the sender bundles ACKs for ACKs in packets with data, the receiver will hold at most 1-rtt worth of state, so it is not that bad I guess.</p>

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


From nobody Mon Jul  1 22:46:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E2C951200A4 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 22:46:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 aHTMr0KrJNla for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 22:46:29 -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 21CC01200A1 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 22:46:29 -0700 (PDT)
Date: Mon, 01 Jul 2019 22:46:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562046387; bh=mt372sHM+sd5KBTpsElVgPpejqQBhEx2c95u3u3zVGQ=; h=Date:From:To:Subject:From; b=eJDnhIYKFI3/3M4TaQzBn+daLwZpR1m/jHxcR6rRPqk6BnwKJ29KoqGocuLVoLQ2/ k5aGa5qTwOMpawodL5naCK2I4AUnXxO4f6VlnzhypV41OIoFnLoL7LD4cr8uC66hXs h20wTIZlaMOgjVnWHcLlJsuGNhIfb0N4KFkEvn78=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/late-packets/63b172-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/kLRbtqvdRQ83Ql5gnSnmld3H4Y8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 05:46:31 -0000

  Branch: refs/heads/transport/late-packets
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  1 22:48:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D75C012004D for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 22:48:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zwoVvodoMpNI for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 22:48: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 2FF981200A1 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 22:48:08 -0700 (PDT)
Date: Mon, 01 Jul 2019 22:48:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562046486; bh=lAr0YSWN95IZz2D/HeQy62xuBwsq1eZxEjfhMCxyV8U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PCEwKfdMDmPp0k6VvJ8kP1tBcaxVCtBE6DERkimtXOvkfjmsP1QEfB4R54YrRyuO2 t6NSFLxNJrJ2rsA3n7DMhAWMGmeMIgWHpERu0crsXZQuJx5+8NddZdwQ6bEKqu6t4C mcZD0vPYIML3zvNUtURNDSz8/tOwZ886g6rxsVWM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5IPBHFXGEW77GDESF3FARJNEVBNHHBOS75IM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2153/507528064@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2153@github.com>
References: <quicwg/base-drafts/issues/2153@github.com>
Subject: Re: [quicwg/base-drafts] Increase the odds of a stateless reset? (#2153)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1af016e2e01_631b3fa1a10cd960773d0"; 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/zvYcE2gkQ0o_sRDrEP051tF8f1g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 05:48:10 -0000

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

Randomness was explicitly ruled out in discussions about a year ago.  People felt uncomfortable with non-deterministic behaviour.  (FWIW, I was OK with non-determinism on the basis that individual cases of determinism devolve to hollistic non-determinism, but that wasn't a winning argument at the 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/issues/2153#issuecomment-507528064
----==_mimepart_5d1af016e2e01_631b3fa1a10cd960773d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Randomness was explicitly ruled out in discussions about a year ago.  People felt uncomfortable with non-deterministic behaviour.  (FWIW, I was OK with non-determinism on the basis that individual cases of determinism devolve to hollistic non-determinism, but that wasn't a winning argument at the time.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2153?email_source=notifications&amp;email_token=AFTOJK2MQ43N7BMXXIOHHU3P5LTZNA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAEHAA#issuecomment-507528064">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VFMG3QG7WN4JHLKTP5LTZNANCNFSM4GKJUFNA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4H7K2CVLWW7A64D43P5LTZNA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAEHAA.gif" height="1" width="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/2153?email_source=notifications\u0026email_token=AFTOJK2MQ43N7BMXXIOHHU3P5LTZNA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAEHAA#issuecomment-507528064",
"url": "https://github.com/quicwg/base-drafts/issues/2153?email_source=notifications\u0026email_token=AFTOJK2MQ43N7BMXXIOHHU3P5LTZNA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAEHAA#issuecomment-507528064",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1af016e2e01_631b3fa1a10cd960773d0--


From nobody Mon Jul  1 22:55:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 324901200A4 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 22:55:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id G2gsy8WhWvF5 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 22:54:58 -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 17B6E12004D for <quic-issues@ietf.org>; Mon,  1 Jul 2019 22:54:58 -0700 (PDT)
Date: Mon, 01 Jul 2019 22:54:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562046896; bh=7WE5aoVKPHOeewnb+ABM/1+hob8H3exkx7J19SH/gy8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qB72itT9V/kMBc/HRPnYmOiIZSvHLWlDO4MwtLWapLMhHKNuCBpwbky24+Y1UdfKU aIu0/pvkIhELn+ctAFQkqyBDjXM6oSOBbPUjNZABYfotLUdC4/UbL3ybrXbtx+ruWb QnjQ+QKfyEkxDF/DagKg0bocPuj9rEUYw0HqQXHU=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33274JDZ4G6MKT4I53FASDBEVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507529717@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1af1b0d70dc_632b3fa1a10cd960870b4"; 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/VoqM9aMH84NCsbUivow43CQniDo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 05:55:01 -0000

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

@LPardue 
>> I think my preference goes to merging INVALID_PRIORITY with FRAME_ERROR.
> 
> Thanks for the feedback. It's an easy change to make. I'll wait for some supporting or dissenting voices but otherwise will do this.

:+1:

>> Regarding rearranging the numbers, I wonder if it would be possible to split the error codes into two groups: connection-level error codes and stream-level ones. In contrary to HTTP/2, most of the HTTP/3 error code are either a connection-level error code or a stream-level error code, not both.
> 
> This resonates with my earlier analysis. Some of this was captured in #2816. But I think what you are suggesting is a slightly different thing. Can you explain what splitting might look like and how it would help? I think it gets complicated because 1) we may have a proxy that is trying to translate errors between H2 and H3. 2) stream errors can be upgraded to connection errors

IIUC, the following H3 error codes are used at both connection and stream level.

* HTTP_NO_ERROR
* HTTP_GENERAL_PROTOCOL_ERROR
* HTTP_INTERNAL_ERROR

The following codes are used only at connection level, though HTTP_EXCESSIVE_LOAD could be carried at stream level too.
* HTTP_STREAM_CREATION_ERROR
* HTTP_CLOSED_CRITICAL_STREAM
* HTTP_UNEXPECTED_FRAME
* HTTP_FRAME_ERROR
* HTTP_EXCESSIVE_LOAD
* HTTP_WRONG_STREAM
* HTTP_ID_ERROR
* HTTP_INVALID_PRIORITY
* HTTP_SETTINGS_ERROR
* HTTP_MISSING_SETTINGS

The following codes are stream-level errors. While they can be promoted to connection errors, doing so has a risk of resetting other requests inflight. Therefore I'd assume that they would generally be used only at stream-level.
* HTTP_REQUEST_REJECTED
* HTTP_REQUEST_CANCELLED
* HTTP_INCOMPLETE_REQUEST
* HTTP_EARLY_RESPONSE
* HTTP_CONNECT_ERROR
* HTTP_VERSION_FALLBACK

Therefore I thought that it might make sense to explain these three groups differently in the draft.

While I can see the desire to assign codepoints that overlap with HTTP/2, I am not sure if that's a good idea. Not only the error codes are different between H2 and H3, some H2 error codes map to QUIC transport-level errors. Considering the fact that there cannot be a one-to-one mapping, I'm afraid having overlap might backfire against us; it just creates an incentive to pass-through the error codes between different versions of the protocol.

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

<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/hovercards?user_id=3D6571445" data-octo-click=3D"hovercard-link-c=
lick" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/=
LPardue">@LPardue</a></p>=0D
<blockquote>=0D
<blockquote>=0D
<p>I think my preference goes to merging INVALID_PRIORITY with FRAME_ERRO=
R.</p>=0D
</blockquote>=0D
<p>Thanks for the feedback. It's an easy change to make. I'll wait for so=
me supporting or dissenting voices but otherwise will do this.</p>=0D
</blockquote>=0D
<p><g-emoji class=3D"g-emoji" alias=3D"+1" fallback-src=3D"https://github=
.githubassets.com/images/icons/emoji/unicode/1f44d.png">=F0=9F=91=8D</g-e=
moji></p>=0D
<blockquote>=0D
<blockquote>=0D
<p>Regarding rearranging the numbers, I wonder if it would be possible to=
 split the error codes into two groups: connection-level error codes and =
stream-level ones. In contrary to HTTP/2, most of the HTTP/3 error code a=
re either a connection-level error code or a stream-level error code, not=
 both.</p>=0D
</blockquote>=0D
<p>This resonates with my earlier analysis. Some of this was captured in =
<a class=3D"issue-link js-issue-link" data-error-text=3D"Failed to load i=
ssue title" data-id=3D"458057957" data-permission-text=3D"Issue title is =
private" data-url=3D"https://github.com/quicwg/base-drafts/issues/2816" d=
ata-hovercard-type=3D"issue" data-hovercard-url=3D"/quicwg/base-drafts/is=
sues/2816/hovercard" href=3D"https://github.com/quicwg/base-drafts/issues=
/2816">#2816</a>. But I think what you are suggesting is a slightly diffe=
rent thing. Can you explain what splitting might look like and how it wou=
ld help? I think it gets complicated because 1) we may have a proxy that =
is trying to translate errors between H2 and H3. 2) stream errors can be =
upgraded to connection errors</p>=0D
</blockquote>=0D
<p>IIUC, the following H3 error codes are used at both connection and str=
eam level.</p>=0D
<ul>=0D
<li>HTTP_NO_ERROR</li>=0D
<li>HTTP_GENERAL_PROTOCOL_ERROR</li>=0D
<li>HTTP_INTERNAL_ERROR</li>=0D
</ul>=0D
<p>The following codes are used only at connection level, though HTTP_EXC=
ESSIVE_LOAD could be carried at stream level too.</p>=0D
<ul>=0D
<li>HTTP_STREAM_CREATION_ERROR</li>=0D
<li>HTTP_CLOSED_CRITICAL_STREAM</li>=0D
<li>HTTP_UNEXPECTED_FRAME</li>=0D
<li>HTTP_FRAME_ERROR</li>=0D
<li>HTTP_EXCESSIVE_LOAD</li>=0D
<li>HTTP_WRONG_STREAM</li>=0D
<li>HTTP_ID_ERROR</li>=0D
<li>HTTP_INVALID_PRIORITY</li>=0D
<li>HTTP_SETTINGS_ERROR</li>=0D
<li>HTTP_MISSING_SETTINGS</li>=0D
</ul>=0D
<p>The following codes are stream-level errors. While they can be promote=
d to connection errors, doing so has a risk of resetting other requests i=
nflight. Therefore I'd assume that they would generally be used only at s=
tream-level.</p>=0D
<ul>=0D
<li>HTTP_REQUEST_REJECTED</li>=0D
<li>HTTP_REQUEST_CANCELLED</li>=0D
<li>HTTP_INCOMPLETE_REQUEST</li>=0D
<li>HTTP_EARLY_RESPONSE</li>=0D
<li>HTTP_CONNECT_ERROR</li>=0D
<li>HTTP_VERSION_FALLBACK</li>=0D
</ul>=0D
<p>Therefore I thought that it might make sense to explain these three gr=
oups differently in the draft.</p>=0D
<p>While I can see the desire to assign codepoints that overlap with HTTP=
/2, I am not sure if that's a good idea. Not only the error codes are dif=
ferent between H2 and H3, some H2 error codes map to QUIC transport-level=
 errors. Considering the fact that there cannot be a one-to-one mapping, =
I'm afraid having overlap might backfire against us; it just creates an i=
ncentive to pass-through the error codes between different versions of th=
e protocol.</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/2662?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK2DPOK74IGJQE3CBMDP5LUTBA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMV=
BW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAET5I#issuecomment-507529717">view it on =
GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-au=
th/AFTOJK64U3XQ2346IW4PUUDP5LUTBANCNFSM4HJSXHSQ">mute the thread</a>.<img=
 src=3D"https://github.com/notifications/beacon/AFTOJK62N2TVMKY2RAMZ5HLP5=
LUTBA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOOR=
PWSZGODZAET5I.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/2662?email_source=3D=
notifications\u0026email_token=3DAFTOJK2DPOK74IGJQE3CBMDP5LUTBA5CNFSM4HJS=
XHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAET5I#i=
ssuecomment-507529717",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2662?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2DPOK74IGJQE3CBMDP5LUTBA5CNFSM4HJSXH=
S2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAET5I#iss=
uecomment-507529717",=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_5d1af1b0d70dc_632b3fa1a10cd960870b4--


From nobody Mon Jul  1 23:52:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3CE821201EB for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 23:52:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LUprLYI_8Lk7 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 23:52:56 -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 1F1651201E7 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 23:52:55 -0700 (PDT)
Date: Mon, 01 Jul 2019 23:52:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562050375; bh=Xi8yEqdTheSjJSjOQEewc1eiwXnzE1ZcBJ3bb3bOxDs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zodhdW2fR2L0FnsMgVtgNJj+kBY4UslnUR6qyd73GyCGNfGtD6ya3BoSGnd+BaqS2 kRpqPRZjiHTlft5eljKuWuogJ+TczRYvnDpEHSv9JgMW/gd2eI+EijohAzBMKvRF3t lRaCIv/MVTRujztfXCB5PkA3PQd5VmsHrBaP26UM=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY47I2F7N7SWBELQRN3FAY4NEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256694092@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1aff46d599d_72253fe42c2cd968248577"; 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/dCxZheBGtoXWKpbEfmqKG1YbfCc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 06:52:58 -0000

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

mikkelfj commented on this pull request.



> @@ -2859,13 +2859,16 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting

What if change the requirement to simply not ACK'ing ACK's too often. That would also do away with PING feedback loops. It seems that we are just moving the problem.

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

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299326239">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2859,13 +2859,16 @@ valid frames? --&gt;
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
</pre>
<p>What if change the requirement to simply not ACK'ing ACK's too often. That would also do away with PING feedback loops. It seems that we are just moving the problem.</p>

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


From nobody Mon Jul  1 23:54:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 964C01201ED for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 23:54:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_wWYNf9KZDN for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 23:54: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 74CAE1201E7 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 23:54:05 -0700 (PDT)
Date: Mon, 01 Jul 2019 23:54:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562050444; bh=Xi9+GmHcRR3fEeoLDp6eo2r5K3MNgSHnaqOn2C0QdZY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cxP38V378BEWVJEYyaWLnUOsTsccjyMtzdQKEGjShsgYBTOOv4QoWhU8L1jTWXy9w y2QYFVq64xtR1t2oTkTK5XZofuNrbzgJfVN2SSzDdf3tRet889X17LhU+FWj+AcL2n AQmGZAqFNeLvgjtS2FMfSJCjRgDXQzZ23IF/Y+8g=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYVAY5VRNJX6SBP4CN3FAZAZEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/256694501@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1aff8c25ba5_23803fcb438cd964257956"; 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/THKpX3oejoM-Y_-KZ4oIhsREuoM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 06:54:08 -0000

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

mikkelfj commented on this pull request.



> -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.

Oh, I think I suggested that before and @ianswett said the peer might want to control when to receive ACK's.

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

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299326569">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.
</pre>
<p>Oh, I think I suggested that before and <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=20072817" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> said the peer might want to control when to receive ACK's.</p>

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


From nobody Mon Jul  1 23:57:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7ADBF1201E7 for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 23:57:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 RYEc1DrQ-afn for <quic-issues@ietfa.amsl.com>; Mon,  1 Jul 2019 23:57: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 B5CC51201F3 for <quic-issues@ietf.org>; Mon,  1 Jul 2019 23:57:19 -0700 (PDT)
Date: Mon, 01 Jul 2019 23:57:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562050638; bh=z3ibqHo57TGwk8ySdYlaKc0bYEZaaHx78ekMMzsGEJo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vMTIqdBkCPgbfe6nsCMamdmP/idOYFyAD+9CfE1uZS0gtZ0ba+EAUXZvacyZHb3RY Kc2JwzZ3ZJxlcxPTrJIuR6M4jVIUK96hjNLuOeq1XBykRKwRitN8xJAdvee8yZRBkR 5xqtFruC5VGvExdP9yKpQZCdnM1td5hzwraruLMs=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZVSAFMH5VUTZS7RQN3FAZM5EVBNHHBOS75IM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2153/507546284@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2153@github.com>
References: <quicwg/base-drafts/issues/2153@github.com>
Subject: Re: [quicwg/base-drafts] Increase the odds of a stateless reset? (#2153)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1b004e925ae_61ca3fef966cd96c301869"; 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/8gFEPZ3kQde8NHqb5JpYkxWYY2A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 06:57:21 -0000

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

It still doesn't change the physics of it all though, but I take that is what you mean by "holistic non-determinism". Now you just have random peers making arbitrary choices instead, some of which could be fatal, others inefficient.

-- 
You are receiving 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/2153#issuecomment-507546284
----==_mimepart_5d1b004e925ae_61ca3fef966cd96c301869
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It still doesn't change the physics of it all though, but I take that is what you mean by "holistic non-determinism". Now you just have random peers making arbitrary choices instead, some of which could be fatal, others inefficient.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2153?email_source=notifications&amp;email_token=AFTOJK52H2NEGPOVZBWRJSDP5L345A5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAIVLA#issuecomment-507546284">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK644MXIMZ53TUKV2F3P5L345ANCNFSM4GKJUFNA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5J5S57KLT3RAWGHHDP5L345A5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAIVLA.gif" height="1" width="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/2153?email_source=notifications\u0026email_token=AFTOJK52H2NEGPOVZBWRJSDP5L345A5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAIVLA#issuecomment-507546284",
"url": "https://github.com/quicwg/base-drafts/issues/2153?email_source=notifications\u0026email_token=AFTOJK52H2NEGPOVZBWRJSDP5L345A5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZAIVLA#issuecomment-507546284",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1b004e925ae_61ca3fef966cd96c301869--


From nobody Tue Jul  2 03:57:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AD2701206CB for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 03:57:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id s8qXUYswzoul for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 03:57:26 -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 D51341202B4 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 03:57:25 -0700 (PDT)
Date: Tue, 02 Jul 2019 03:57:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562065044; bh=XC1AZ1ftx2BlcmhUCxj0DFSzqiNyu7b3qLYEMGa+Cwo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zNO0fsmqxOUZG3rWuJnVJQo6bnY/VfkkIJM788dXaIRJR433PC5l14DBk+1gyjKfk k0PxXHpkIliU45kVNSOsn/g4ZOtt8TGt1C7RmUgrqHBqzRJNyZm6Ct1J09UGuqGpOn WaCKDQsxIltD+1t+Wdom3NQ9kXuCaLdvdIu3Ny0s=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZIJILHJNLTYAFC7FV3FBVRJEVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507625776@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1b38949ebd8_63163fbe9f2cd95c170321"; 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/-oyxDHNZa5WWIDlvL9TFY7nFCIQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 10:57:33 -0000

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

Thanks for this analysis it does really clarify your position. I think there are two independent discussion points here:

1) should error codes be grouped in a logical order by their intended use?
2) should error codes align with or avoid HTTP/2 where possible?

For (1), I'm not against adopting your suggested order but keen to hear some other opinions here.

(2) I think is a bigger issue: 

> While I can see the desire to assign codepoints that overlap with HTTP/2, I am not sure if that's a good idea. Not only the error codes are different between H2 and H3, some H2 error codes map to QUIC transport-level errors. Considering the fact that there cannot be a one-to-one mapping, I'm afraid having overlap might backfire against us; it just creates an incentive to pass-through the error codes between different versions of the protocol.

Do you think the incentive grows with increasing number of aligned points? A sledgehammer of a disincentive is to shift these to avoid HTTP/2 completely; e.g. shift by 0x20, 0x50 or 0x100. Note that QPACK codes already start at 0x200

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

<p>Thanks for this analysis it does really clarify your position. I think there are two independent discussion points here:</p>
<ol>
<li>should error codes be grouped in a logical order by their intended use?</li>
<li>should error codes align with or avoid HTTP/2 where possible?</li>
</ol>
<p>For (1), I'm not against adopting your suggested order but keen to hear some other opinions here.</p>
<p>(2) I think is a bigger issue:</p>
<blockquote>
<p>While I can see the desire to assign codepoints that overlap with HTTP/2, I am not sure if that's a good idea. Not only the error codes are different between H2 and H3, some H2 error codes map to QUIC transport-level errors. Considering the fact that there cannot be a one-to-one mapping, I'm afraid having overlap might backfire against us; it just creates an incentive to pass-through the error codes between different versions of the protocol.</p>
</blockquote>
<p>Do you think the incentive grows with increasing number of aligned points? A sledgehammer of a disincentive is to shift these to avoid HTTP/2 completely; e.g. shift by 0x20, 0x50 or 0x100. Note that QPACK codes already start at 0x200</p>

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


From nobody Tue Jul  2 07:55:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D23F6120129 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 07:55:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uIZbNhS2nvd9 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 07:55: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 9A5D812010E for <quic-issues@ietf.org>; Tue,  2 Jul 2019 07:55:32 -0700 (PDT)
Date: Tue, 02 Jul 2019 07:55:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562079331; bh=SSPyh1099/4mwIXTQ5jOqYtvaSD7f8bZ/cKqBNRq3QA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Sbiy5aoBGXJDQyp6Ts3i/32b6R6Ynrj8+9J+3pc69pZOjYAOM23G5Z0X0ayd+dZYL brIECmBkLMD4d8UrtS3Ec/+Jjsybsk8jYDX2HALxkz1XbOlZv6hFm4wRdbH6PvToK0 xxWGBr+QBeEk68Frew+ENMHXN8lDxPMs1EecQwAA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEDHPDQYITU3HJAI53FCROHEVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507713784@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1b706373e93_14aa3f8d1eacd95c1164e1"; 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/X8Tzj3YR3F6xEFmeoYLiNI3VPKo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 14:55:35 -0000

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

I am not seeing much value in aligning with HTTP/2 error codes.  Alignment would have value if the endpoints could treat a given HTTP/2 and HTTP/3 error code identically.

However, in our current GQUIC implementation, we have a handful of error codes with any special treatment and they're all transport level, so I don't think that's a good argument?

Aligning them has the chance of adding more confusion, so unless there is a technical reason to do so(ie: the above), I think it should not be a goal.

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

<p>I am not seeing much value in aligning with HTTP/2 error codes.  Alignment would have value if the endpoints could treat a given HTTP/2 and HTTP/3 error code identically.</p>
<p>However, in our current GQUIC implementation, we have a handful of error codes with any special treatment and they're all transport level, so I don't think that's a good argument?</p>
<p>Aligning them has the chance of adding more confusion, so unless there is a technical reason to do so(ie: the above), I think it should not be a goal.</p>

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


From nobody Tue Jul  2 09:42:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C29AD12060F for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 09:42:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.997
X-Spam-Level: 
X-Spam-Status: No, score=-7.997 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_32=0.001, 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 BMYuLmh4J_Z6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 09:42:04 -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 66AC2120666 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 09:42:04 -0700 (PDT)
Date: Tue, 02 Jul 2019 09:42:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562085723; bh=UqqodEL4zpuODFq+qg7Jgt6Hy5L8e6x3pLNj6I9kq9I=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ZsOFHntzxj8G5D1lSgqdL9/iWhNC8GhCQbtXAXJHdf9k2v+tSALurZmm4QexTMSlQ 7t8DyUdETGk3zmQPM46kAJ1QHwzUdifYawK5wyfYu2z6Ep50hPjw4MSzARJhd2Chfl MuJ8zi7ENjso5frPDMr/9UDDPjDHtjnLo1LiWA28=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK52RGGZA34RWVIRGUN3FC55VEVBNHHBXHO4II@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2867@github.com>
Subject: [quicwg/base-drafts] Tighten HEADERS and DATA frame order requirements. (#2867)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1b895ae646f_2b473fcf0c0cd96871989"; 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/s9yJsieFh3w78rHgvAB7r5oC7E0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 16:42:12 -0000

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

* Clarify HTTP message definition.
* Require the connection to be closed upon receipt of frames in
  incorrect order.
* Refer to HTTP messages in push stream section.

This addresses https://github.com/quicwg/base-drafts/issues/2858.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Tighten HEADERS and DATA frame order requirements.

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2867.patch
https://github.com/quicwg/base-drafts/pull/2867.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/2867

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

<ul>
<li>Clarify HTTP message definition.</li>
<li>Require the connection to be closed upon receipt of frames in<br>
incorrect order.</li>
<li>Refer to HTTP messages in push stream section.</li>
</ul>
<p>This addresses <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462076049" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2858" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2858/hovercard" href="https://github.com/quicwg/base-drafts/issues/2858">#2858</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/2867'>https://github.com/quicwg/base-drafts/pull/2867</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Tighten HEADERS and DATA frame order requirements.</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2867.patch'>https://github.com/quicwg/base-drafts/pull/2867.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2867.diff'>https://github.com/quicwg/base-drafts/pull/2867.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/2867?email_source=notifications&amp;email_token=AFTOJK57XDCHSH5QEW2AL3TP5OANVA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G453RBA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4CMJRUKEIC3ZMGOLP5OANVANCNFSM4H454J7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKJ2OARN3TTQ75VWDP5OANVA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G453RBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK57XDCHSH5QEW2AL3TP5OANVA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G453RBA",
"url": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK57XDCHSH5QEW2AL3TP5OANVA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G453RBA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1b895ae646f_2b473fcf0c0cd96871989--


From nobody Tue Jul  2 10:38:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F2453120667 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 10:38:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.452
X-Spam-Level: 
X-Spam-Status: No, score=-6.452 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, 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 3q0WAq4H1HdT for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 10:38: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 6759C120664 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 10:38:33 -0700 (PDT)
Date: Tue, 02 Jul 2019 10:38:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562089112; bh=ZhTt2pzXbVAys5fIDN5zKr7zuxkRCoBcI5dUPU1Ggks=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o9IJuNxEzDWZF0BaLC9KiOXL7VQBr3EQIDiA+Lp2ZLhrbkeENb+z2g943HDvKfo82 P/JiY8t1MGjdTH21oysoPXpncEJ9kMSJTM3uede/a+TCK2ByT0ZunQ9AXJAM7OpAqM dPR4s2p0ipBGTM/5wV+kOYz0p0gs7tzCfKqK2Zoo=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5EVTQRW7RFVTZINMV3FDERREVBNHHBWCWW44@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2777/507776159@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2777@github.com>
References: <quicwg/base-drafts/issues/2777@github.com>
Subject: Re: [quicwg/base-drafts] HTTP/3 Cookie Crumbling (#2777)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1b969820599_5e3c3ff024ccd96424534f"; 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/lMkXMcMz1R7H_0zZSsuQaxyEMGU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 17:38:35 -0000

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

See also discussion thread starting at https://mailarchive.ietf.org/arch/msg/quic/DgMheH6mnosTw3vHnJW0gYD8dk4.

-- 
You are receiving 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/2777#issuecomment-507776159
----==_mimepart_5d1b969820599_5e3c3ff024ccd96424534f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>See also discussion thread starting at <a href="https://mailarchive.ietf.org/arch/msg/quic/DgMheH6mnosTw3vHnJW0gYD8dk4" rel="nofollow">https://mailarchive.ietf.org/arch/msg/quic/DgMheH6mnosTw3vHnJW0gYD8dk4</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/2777?email_source=notifications&amp;email_token=AFTOJK22U3SGTZ5AQQGMDT3P5OHBRA5CNFSM4HV2QCGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCAZHY#issuecomment-507776159">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYARLGKG5KBVVN4IOLP5OHBRANCNFSM4HV2QCGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2AYN5B423LLS6BO6TP5OHBRA5CNFSM4HV2QCGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCAZHY.gif" height="1" width="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/2777?email_source=notifications\u0026email_token=AFTOJK22U3SGTZ5AQQGMDT3P5OHBRA5CNFSM4HV2QCGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCAZHY#issuecomment-507776159",
"url": "https://github.com/quicwg/base-drafts/issues/2777?email_source=notifications\u0026email_token=AFTOJK22U3SGTZ5AQQGMDT3P5OHBRA5CNFSM4HV2QCGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCAZHY#issuecomment-507776159",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1b969820599_5e3c3ff024ccd96424534f--


From nobody Tue Jul  2 10:40:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 10E74120664 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 10:39:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.594
X-Spam-Level: 
X-Spam-Status: No, score=-6.594 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, 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 YOpYz-vP4_Au for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 10:39: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 A21441200B6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 10:39:57 -0700 (PDT)
Date: Tue, 02 Jul 2019 10:39:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562089196; bh=2U+hjQ7bES4qL07I6vnPgHaKM3LBE0terUTjRoq5CW8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=cPga3ZB89UpKSmNrPiTdvYjX5iSjf1yFNhHnNxutB58ZITpLAVTdjXu+10Km65O+Y xXLW12E4r2yq0uqDGcyBXHc4HdnZJSGSoNP9u3pKNg98T72f1GLcBRuJUHuYyWu0Qc /n6vb0mOxVTH3RSFew2zr7fGdukhZY+qerrrIWs8=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZJH74N477RSUAECTN3FDEWZEVBNHHBXHRZ2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2868@github.com>
Subject: [quicwg/base-drafts] Add normative reference to RFC7540 8.1.2.5. (#2868)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1b96ec7d3f4_cd53fc4750cd964398247"; 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/U1ZZM9f1FWUbl0pZmldzbEuhQRc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 17:39:59 -0000

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

This addresses https://github.com/quicwg/base-drafts/issues/2777.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Add normative reference to RFC7540 8.1.2.5.

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2868.patch
https://github.com/quicwg/base-drafts/pull/2868.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/2868

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

<p>This addresses <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="453695207" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2777" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2777/hovercard" href="https://github.com/quicwg/base-drafts/issues/2777">#2777</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/2868'>https://github.com/quicwg/base-drafts/pull/2868</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add normative reference to RFC7540 8.1.2.5.</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2868.patch'>https://github.com/quicwg/base-drafts/pull/2868.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2868.diff'>https://github.com/quicwg/base-drafts/pull/2868.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/2868?email_source=notifications&amp;email_token=AFTOJKYQIPPTIFE43OGLOF3P5OHGZA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G46HHLA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2YNJ73FBRDLDJNF5DP5OHGZANCNFSM4H46KCYQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RLUDWCFMS63ERX33P5OHGZA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G46HHLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2868?email_source=notifications\u0026email_token=AFTOJKYQIPPTIFE43OGLOF3P5OHGZA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G46HHLA",
"url": "https://github.com/quicwg/base-drafts/pull/2868?email_source=notifications\u0026email_token=AFTOJKYQIPPTIFE43OGLOF3P5OHGZA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G46HHLA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1b96ec7d3f4_cd53fc4750cd964398247--


From nobody Tue Jul  2 10:42:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 26D481206AF for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 10:42:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HYMjn1onx0rW for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 10:42: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 734691200B6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 10:42:41 -0700 (PDT)
Date: Tue, 02 Jul 2019 10:42:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562089360; bh=Gwgw9sh/5WMR5YxGm7u3D4IYL+jrjufrd+Pt0EjEYLw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aJezcPxYTqmTQpsI4cS7FHDR8HyTxVDv2ysidCY8+yg0G4RCmir6pUpHiKDkXGh6I SgDVCZUJbky9Nqz8rSrRQjq0A1/OjpuWU4cyZ3JAYG3ZVDNsznwBV/DrEFV5XNi2li ObYWh7uID5bJVVlzNKcM3S8hrmuJrXsO7Wsk+UsQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7CNO44NXRKIE47XOF3FDFBBEVBNHHBXHO4II@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2867/review/257048321@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2867@github.com>
References: <quicwg/base-drafts/pull/2867@github.com>
Subject: Re: [quicwg/base-drafts] Tighten HEADERS and DATA frame order requirements. (#2867)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1b97908dfff_58503fb65f8cd96c1124ed"; 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/Z6-qwav6Vi1X14Wx4jp5XMVtNyQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 17:42:43 -0000

----==_mimepart_5d1b97908dfff_58503fb65f8cd96c1124ed
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/2867#pullrequestreview-257048321
----==_mimepart_5d1b97908dfff_58503fb65f8cd96c1124ed
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2867?email_source=notifications&amp;email_token=AFTOJK6RX2QW45YR54TCQRDP5OHRBA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5JD6AI#pullrequestreview-257048321">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7IB5SXKMAVU6BIEG3P5OHRBANCNFSM4H454J7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY2Y3HRZOIS4VJOQEDP5OHRBA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5JD6AI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK6RX2QW45YR54TCQRDP5OHRBA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5JD6AI#pullrequestreview-257048321",
"url": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK6RX2QW45YR54TCQRDP5OHRBA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5JD6AI#pullrequestreview-257048321",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1b97908dfff_58503fb65f8cd96c1124ed--


From nobody Tue Jul  2 12:54:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BEA531206CB for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 12:54:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HcBGxV2bDWi1 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 12:54:10 -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 5CB1712016D for <quic-issues@ietf.org>; Tue,  2 Jul 2019 12:54:10 -0700 (PDT)
Date: Tue, 02 Jul 2019 12:54:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562097248; bh=VqWUNybMY091m0Uljyqq4ubhAL+/yCtNwxZHywdtSHU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=C3MCW0ilsVyZc6Ksut0fl7bs0vNHIZ5CcKqh5k6m9A0tKyFnTb8PbJrje5cSb2ldb F007qdO+4xOm1OQmWnqpqNlpdLE+p0mhd5J/BicDieBBqia9JjVVIl4RgSW37ZnnN1 7czKYccKw7pTNmU/F0zMUFoWMRTopc24jCWvOlfQ=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK37J7HVWMA7N7ZJD4F3FDUOBEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869@github.com>
Subject: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bb660dd359_2aa83fcb080cd95c54191"; 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/XQ0fn6hMMjcddZKRl17on1XNBkA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 19:54:13 -0000

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

Currently, the spec recommends sending Stateless Reset packets of at least 39 bytes. The number is the minimum packet size when using the maximum connection ID length of 18:
- type byte: 1
- client connection ID: 18
- packet number + payload: 4
- auth tag: 16

39 = 1 + 18 + 4 + 16.

The intention there was to make Stateless Resets harder to distinguish from regular server-to-client traffic on a given QUIC connection.

However, when client connection IDs are in use, Stateless Resets are inherently distinguishable from regular traffic because they do not carry the previously-used client connection ID. One might say that they could be confused for a change in connection ID, which is true. But let's assume we just changed from an 18 byte client connection ID to a 4-byte connection ID (which is specifically allowed by the spec), then that new packet is still equally indistinguishable from a Stateless Reset. It is true that a client connection ID length change from 18 to 4 is unlikely, but that's not a problem. We just need it to be possible for this to be a valid packet to observers without keys.

So I propose that instead of having a minimum required size for stateless resets of 21 and a recommended minimum of 39, we can just say the minimum required size is 25. The important value here is the minimum non-zero connection ID length, not the maximum connection ID length.

At the end of the day, a Stateless Reset will stick out to observers who will notice that the client stops sending on that particular connection. The current value of 39 is harming the protocol by increasing the odds of servers not sending Stateless Resets which will cause timeouts on clients instead of failing fast. This is a tradeoff, and we should strive to avoid timeouts instead of trying to hide a packet that can't be hidden.

-- 
You are receiving 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/2869
----==_mimepart_5d1bb660dd359_2aa83fcb080cd95c54191
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Currently, the spec recommends sending Stateless Reset packets of at least 39 bytes. The number is the minimum packet size when using the maximum connection ID length of 18:</p>
<ul>
<li>type byte: 1</li>
<li>client connection ID: 18</li>
<li>packet number + payload: 4</li>
<li>auth tag: 16</li>
</ul>
<p>39 = 1 + 18 + 4 + 16.</p>
<p>The intention there was to make Stateless Resets harder to distinguish from regular server-to-client traffic on a given QUIC connection.</p>
<p>However, when client connection IDs are in use, Stateless Resets are inherently distinguishable from regular traffic because they do not carry the previously-used client connection ID. One might say that they could be confused for a change in connection ID, which is true. But let's assume we just changed from an 18 byte client connection ID to a 4-byte connection ID (which is specifically allowed by the spec), then that new packet is still equally indistinguishable from a Stateless Reset. It is true that a client connection ID length change from 18 to 4 is unlikely, but that's not a problem. We just need it to be possible for this to be a valid packet to observers without keys.</p>
<p>So I propose that instead of having a minimum required size for stateless resets of 21 and a recommended minimum of 39, we can just say the minimum required size is 25. The important value here is the minimum non-zero connection ID length, not the maximum connection ID length.</p>
<p>At the end of the day, a Stateless Reset will stick out to observers who will notice that the client stops sending on that particular connection. The current value of 39 is harming the protocol by increasing the odds of servers not sending Stateless Resets which will cause timeouts on clients instead of failing fast. This is a tradeoff, and we should strive to avoid timeouts instead of trying to hide a packet that can't be hidden.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK3WKMLINZTJ2FIY62LP5OW6BA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G47BJRA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QE73TBNVSG6ETKTLP5OW6BANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6GV3BZH344AUYMG43P5OW6BA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G47BJRA.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK3WKMLINZTJ2FIY62LP5OW6BA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G47BJRA",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK3WKMLINZTJ2FIY62LP5OW6BA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G47BJRA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bb660dd359_2aa83fcb080cd95c54191--


From nobody Tue Jul  2 12:55:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E79DF120708 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 12:55:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7TtWk3O3ZLwY for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 12:55: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 28A5912016D for <quic-issues@ietf.org>; Tue,  2 Jul 2019 12:55:24 -0700 (PDT)
Date: Tue, 02 Jul 2019 12:55:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562097323; bh=4EJQDM0+9d2826dFYuYGI6liszaol7wlHBzXc/nSEF8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=j9wimG2OGRV0hFqt5RbNvxUxeL6i/6ONOYtXFXO/OkQdbF/IGvBOHBNs98IdDhyFK 1M6szcnAqFnS59PsKrdC9vZsYFVb8fZJI4l0pPvc8oE+N27m3RRwN0EyJfjmvya4Kb 3OJcJpKXedEv0xGiN5FAC5sveagFj4SJyMEONuzE=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KBK3FJ42GTK75YW53FDUSXEVBNHHBXEE5LI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2864/c507821856@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2864@github.com>
References: <quicwg/base-drafts/pull/2864@github.com>
Subject: Re: [quicwg/base-drafts] Explicitly allow discard of packets <40 bytes (#2864)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bb6ab42449_1ff83f7fc1ecd96849557"; 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/sC9dI3s9rZXT-b9lRsY_YvOROdc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 19:55:26 -0000

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

@martinthomson filed #2869.

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

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> filed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="463407714" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2869" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2869/hovercard" href="https://github.com/quicwg/base-drafts/issues/2869">#2869</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/2864?email_source=notifications&amp;email_token=AFTOJK6ZNDLMMJANHED2DC3P5OXCXA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCL6IA#issuecomment-507821856">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZU7MPA6GZYSSRO7DP5OXCXANCNFSM4H4NX4RA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7HJGVQLHUPJHEXU2LP5OXCXA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCL6IA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJK6ZNDLMMJANHED2DC3P5OXCXA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCL6IA#issuecomment-507821856",
"url": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJK6ZNDLMMJANHED2DC3P5OXCXA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCL6IA#issuecomment-507821856",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bb6ab42449_1ff83f7fc1ecd96849557--


From nobody Tue Jul  2 13:43:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A2B16120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 13:43:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id od_uMHoGdZvs for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 13:43: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 0A63812011D for <quic-issues@ietf.org>; Tue,  2 Jul 2019 13:43:52 -0700 (PDT)
Date: Tue, 02 Jul 2019 13:43:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562100231; bh=2Kfv0U7iU3JJd0V/MjWRw2a/wjLOkdc6GZOTf09i41g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oPebVuuASN2ibiiYwtQUDpSbHsXcmKHpbbBlrUsvHg5b8zalRzum59P+sPlXsReMh 6R79JpqMOK//eC0RtQunfZdfv6u1uISALuPVxkpJoGmTci49SeP5cKpkSIzcpj8/46 qIaPOioP+Sk6dC26IwqWn3OAUGTjIaVxGClYWt28=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4W5IYCNZSBBFNMPU53FD2INEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/507837274@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bc206f40fe_1903ff7800cd96c2145d0"; 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/8IftTjArmg6F7wFcuUG0AV5etW4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 20:43:54 -0000

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

This is related to Issue #2770 

-- 
You are receiving 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/2869#issuecomment-507837274
----==_mimepart_5d1bc206f40fe_1903ff7800cd96c2145d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is related to Issue <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="452243068" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2770" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2770/hovercard" href="https://github.com/quicwg/base-drafts/issues/2770">#2770</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/2869?email_source=notifications&amp;email_token=AFTOJK5IRBB7N44TAOC3KPDP5O4YNA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCPWWQ#issuecomment-507837274">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4UG6B6U5T4PKCZYJTP5O4YNANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2L73ES47H2TFRQA63P5O4YNA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCPWWQ.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK5IRBB7N44TAOC3KPDP5O4YNA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCPWWQ#issuecomment-507837274",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK5IRBB7N44TAOC3KPDP5O4YNA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCPWWQ#issuecomment-507837274",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bc206f40fe_1903ff7800cd96c2145d0--


From nobody Tue Jul  2 15:17:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6E82612012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:17:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HcsJck36vjIz for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:17:36 -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 BECC81200F6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:17:35 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:17:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562105854; bh=bp08JeIh5kwyYYmYBZf94R7kghVMDeD8PROzvsb0phg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ewavwa7ToeeTrHTVNZt6oEaBbUWAF0ufdzNw+i5faTVTEevH83hUPBvfuzZAtw78T K/d6TqEfJMXVXOyNDQhZj7BhSxjz0NNmEObwX/O1D5eEMUPuP/u0ByW9Ctpypgzsdx e73QFDYMaMePSt6VRK0N4m8+kZZtwdCCS6jauUGo=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ZQTHQGWXBGUT3UMF3FEFH5EVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/257177914@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bd7fe98fbb_45803ffa946cd9684239ef"; 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/ADyJ3fXp9gN4XMJ86SYpXAY5kVM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:17:38 -0000

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

ianswett commented on this pull request.



> -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.

We can say it differently, but it's important to say somewhere that non-ACK-eliciting packets are ACKed when an ACK is 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/2794#discussion_r299707473
----==_mimepart_5d1bd7fe98fbb_45803ffa946cd9684239ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299707473">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.
</pre>
<p>We can say it differently, but it's important to say somewhere that non-ACK-eliciting packets are ACKed when an ACK is sent.</p>

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


From nobody Tue Jul  2 15:22:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 74A6B12012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:22:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_w0_08b9Xif for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:22: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 23CCE1200F6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:22:16 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:22:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562106134; bh=ozfjC9QYP6gRDYXDFGy1MzLjse8dcmIqkbpxI66iPaM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y++KUsyZBBwnqu5RtGA1jMIIZWXWHUY9QQyIbrlFmCK0DRHm05oE7FdmG2ZuQ0ai2 93rUiSR6WmhJ5L93+aVG43KAt67qHI8SLzlm/c1DrdmWIP6fVjMVq1IaUOgzDtJvfa pFIl8qcvaZHzPzMaegL7WSW1Q7hPB7x7G4jwNIVg=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5TC45PAKLBSO4NLN3FEFZNEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/257179388@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bd916dff00_60d43fb4144cd9684394db"; 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/2kxDP2DLPMspqXB327jTgTcDyjc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:22:19 -0000

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

mikkelfj commented on this pull request.



> -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.

that Oh, ... comment landet the wrong place - I responded elsewhere

> What if change the requirement to simply not ACK'ing ACK's too often. That would also do away with PING feedback loops. It seems that we are just moving the problem.

and this is what the comment was an update to.

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

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299708727">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. This prevents an indefinite
+feedback loop of acknowledgements, which may prevent the connection from ever
+becoming idle. The endpoint MUST however acknowledge non-ACK-eliciting packets
+when sending ACK frames in response to other packets.
</pre>
<p>that Oh, ... comment landet the wrong place - I responded elsewhere</p>
<blockquote>
<p>What if change the requirement to simply not ACK'ing ACK's too often. That would also do away with PING feedback loops. It seems that we are just moving the problem.</p>
</blockquote>
<p>and this is what the comment was an update to.</p>

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


From nobody Tue Jul  2 15:24:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4CA5D12012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:24:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mNeCpzh3XvWs for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:24:45 -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 F309612073B for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:24:25 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:24:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562106263; bh=dmUflWvbvfabECv558lDaQa2eoUsPEZoMc2X/Huj5Rk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=deg+bdfnXViEuZ2PMScvSFeEjQmROdbpAIsbUsWF68nXYEBbntBskCMQivETxkiM4 AW6tQLTo/Yrv5hwyfy0mMSc49p34nzRIJLQhcTSiDSJ2LXQWZOxRSMyNhT0+iYL+Ju lKKqOsXksUcuDeH5HsHql+yDLZs7a6WN8YfefET0=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KCK4EKRTVMRT2T7N3FEGBNEVBNHHBW7UTTY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2852/review/257180029@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2852@github.com>
References: <quicwg/base-drafts/pull/2852@github.com>
Subject: Re: [quicwg/base-drafts] recommend resending of 0-RTT data after a Retry (#2852)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bd996eb629_1f8a3fbad86cd96430844d"; 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/H2eM7L31ye7cFixlsUfVNpFLC-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, 02 Jul 2019 22:24:49 -0000

----==_mimepart_5d1bd996eb629_1f8a3fbad86cd96430844d
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/2852#pullrequestreview-257180029
----==_mimepart_5d1bd996eb629_1f8a3fbad86cd96430844d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2852?email_source=notifications&amp;email_token=AFTOJK5XP2P64EXSXEZ4ZATP5PIRNA5CNFSM4H3XVNQ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KEC7I#pullrequestreview-257180029">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7S4J4Y4WSIRLQ6CS3P5PIRNANCNFSM4H3XVNQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYOKIU3WMJGI2HEE5DP5PIRNA5CNFSM4H3XVNQ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KEC7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2852?email_source=notifications\u0026email_token=AFTOJK5XP2P64EXSXEZ4ZATP5PIRNA5CNFSM4H3XVNQ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KEC7I#pullrequestreview-257180029",
"url": "https://github.com/quicwg/base-drafts/pull/2852?email_source=notifications\u0026email_token=AFTOJK5XP2P64EXSXEZ4ZATP5PIRNA5CNFSM4H3XVNQ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KEC7I#pullrequestreview-257180029",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bd996eb629_1f8a3fbad86cd96430844d--


From nobody Tue Jul  2 15:28:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3FD551200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:28:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2SB2n7EfZ3FL for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:28: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 9698A120187 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:28:54 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:28:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562106533; bh=xWXO6y19ISCM8xozt3KLQ/+xobU9xd/NG2dnyu8yNXI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SvF22i7yUb3YLfyt+41QVaZsSJrANaEuCSC3OHb4eVlfU9+4jh69IfVsRrlscLfW7 PIXqky5ueXvbCNaIcKBteqGK3tSs/D0c6d9wWA9nQBShx4AY9jRIHtYXfluh0OIlb1 poZZ5l2YTjqYR6xz3qD6coZ8EgE03JnpuG/UjD3M=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2J74QSQW6NNV2ABW53FEGSLEVBNHHBUGOXBA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2655/issue_event/2455840992@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2655@github.com>
References: <quicwg/base-drafts/pull/2655@github.com>
Subject: Re: [quicwg/base-drafts] Merge crypto timeout into PTO (#2655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bdaa56a805_49c33fce78acd95c66156"; 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/xKigV0rlxrZozHGmc639367jQos>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:28:57 -0000

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

Closed #2655.

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

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="437901064" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2655" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2655/hovercard" href="https://github.com/quicwg/base-drafts/pull/2655">#2655</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/2655?email_source=notifications&amp;email_token=AFTOJK4BYWVJJQY34JS2KLLP5PJCLA5CNFSM4HI3K562YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJQSRYA#event-2455840992">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK43P7C57Y7MJ5Z45HLP5PJCLANCNFSM4HI3K56Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2IPNU7WUIJUJMP62DP5PJCLA5CNFSM4HI3K562YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJQSRYA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2655?email_source=notifications\u0026email_token=AFTOJK4BYWVJJQY34JS2KLLP5PJCLA5CNFSM4HI3K562YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJQSRYA#event-2455840992",
"url": "https://github.com/quicwg/base-drafts/pull/2655?email_source=notifications\u0026email_token=AFTOJK4BYWVJJQY34JS2KLLP5PJCLA5CNFSM4HI3K562YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJQSRYA#event-2455840992",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bdaa56a805_49c33fce78acd95c66156--


From nobody Tue Jul  2 15:31:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9A2D112012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:31:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SzKbhx4AUUAp for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:31:32 -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 CFED91200F6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:31:31 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:31:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562106691; bh=YtpRh0J+3kXi21yAEUnzdahgVssJxRCwzuV+1/3eD1Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FtGD7t9GLMxXQ09nDsE3qoJKaFJVU+D9ZWh0Us/wzS8dbizcwf6cCbwtbGMNWIP1h 9sdAgkASU/mwzqWBxuQkNG4Il1sdGsVC0852L9NG7GnjYPOHF7QngS4y5QwXQ8vsHx 9EGWa3DJif53t55tvC1ywevCQtxSKXNZryjBh6Y4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7OJ5UBSCIDHV6GCFV3FEG4FEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/507868613@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bdb42d7d5b_22393fad86ccd968119571"; 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/hhHKVTnyXhv_JbVA77nSIoub3MM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:31:34 -0000

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

> assume we just changed from an 18 byte client connection ID to a 4-byte connection ID 

This does not permit the attacker any knowledge of the client.  If a client always selects an 18 byte connection ID, a stateless reset will stand out.

> a Stateless Reset will stick out to observers who will notice that the client stops sending on that particular connection

The goal is to avoid having the message interfered with in transit.  After it gets through and is processed, what happens after doesn't matter.

-- 
You are receiving 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/2869#issuecomment-507868613
----==_mimepart_5d1bdb42d7d5b_22393fad86ccd968119571
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>assume we just changed from an 18 byte client connection ID to a 4-byte connection ID</p>
</blockquote>
<p>This does not permit the attacker any knowledge of the client.  If a client always selects an 18 byte connection ID, a stateless reset will stand out.</p>
<blockquote>
<p>a Stateless Reset will stick out to observers who will notice that the client stops sending on that particular connection</p>
</blockquote>
<p>The goal is to avoid having the message interfered with in transit.  After it gets through and is processed, what happens after doesn't matter.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK5OSUPZQ4YLI2IGW7TP5PJMFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXLRI#issuecomment-507868613">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4J34QDYUOCUFIJYXLP5PJMFANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6DKISV64B4J4JEULLP5PJMFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXLRI.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK5OSUPZQ4YLI2IGW7TP5PJMFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXLRI#issuecomment-507868613",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK5OSUPZQ4YLI2IGW7TP5PJMFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXLRI#issuecomment-507868613",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bdb42d7d5b_22393fad86ccd968119571--


From nobody Tue Jul  2 15:38:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 324631200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:38:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BN0T4c2Z8y4R for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:38:43 -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 5AF1C120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:38:43 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:38:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562107122; bh=bA6PhX/fNkK3nOR9PuTwVeWqpEF+1TbalvRx7JPD0ic=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OblSLMnO7QN+e3dhpYUFP0FiaLQoYLLGkVIuhzGj5Z2/0jWdylAhzYFuKqC7Twufv mFX4Dl0bcoYLuoUNycVIhkBygoWxYeixFn/Gfujzu0f2ep+k++XgyL8k2JFLHKSUvc Cl1M+eX0kt6zmxvxi/IKBAigYaKrwsrMEoaEn5qg=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NS5DXP75KBFMXBUV3FEHXFEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/507870224@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bdcf2356b2_3953f988fecd96817211"; 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/PBwZfv0IcjngVrX7A08cleQovbQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:38:45 -0000

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

#2153 is also related I believe.

-- 
You are receiving 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/2869#issuecomment-507870224
----==_mimepart_5d1bdcf2356b2_3953f988fecd96817211
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 issue title" data-id="390856003" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2153" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2153/hovercard" href="https://github.com/quicwg/base-drafts/issues/2153">#2153</a> is also related I believe.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK6IK2KEQLXMW2YBIY3P5PKHFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXYEA#issuecomment-507870224">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZRNGE7Q3Y5IZMQPELP5PKHFANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK53RFDFUFDEBHSP353P5PKHFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXYEA.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK6IK2KEQLXMW2YBIY3P5PKHFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXYEA#issuecomment-507870224",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK6IK2KEQLXMW2YBIY3P5PKHFA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCXYEA#issuecomment-507870224",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bdcf2356b2_3953f988fecd96817211--


From nobody Tue Jul  2 15:39:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 839E1120106 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:39:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.908
X-Spam-Level: 
X-Spam-Status: No, score=-6.908 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5YMr2exze_wX for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:39: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 5A9D01200F6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:39:50 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:39:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562107189; bh=5e32MdO4+UQId+XtlRFHOId6YKLscKXpDRlhofbxW88=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=s051ZqujcVXDR4B5Q0d3J7RbNxfWd7yEJSrxaFhOGu3I4+rpDmWJBX3xrswCLw++i FEKzlNDF/9wfb8cWFxyEINKuetQfEU9b9yy063NFd7DSBvBMRFw7f35iZMzcw45mA5 S9A3TZBp4DLDnqv8SonIrCcIoUq/xQFtPyu9iEFI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TANP6WBU5VLZH2EN3FEH3LEVBNHHBVVRQLI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2760/507870484@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2760@github.com>
References: <quicwg/base-drafts/issues/2760@github.com>
Subject: Re: [quicwg/base-drafts] NEW_TOKEN should be symmetric (#2760)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bdd3517d79_22d23fa9f24cd96c1091df"; 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/VXuPJc6nm9HAjbRPl7eM5jDM5E0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:39:51 -0000

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

Proposal: 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/2760#issuecomment-507870484
----==_mimepart_5d1bdd3517d79_22d23fa9f24cd96c1091df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Proposal: 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/2760?email_source=notifications&amp;email_token=AFTOJK6ALTYYMZLPAZWAKXTP5PKLLA5CNFSM4HRC37V2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCX2FA#issuecomment-507870484">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLIU76BUSC3AASH7TP5PKLLANCNFSM4HRC37VQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7I6OY7MWNUD26CT6DP5PKLLA5CNFSM4HRC37V2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCX2FA.gif" height="1" width="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/2760?email_source=notifications\u0026email_token=AFTOJK6ALTYYMZLPAZWAKXTP5PKLLA5CNFSM4HRC37V2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCX2FA#issuecomment-507870484",
"url": "https://github.com/quicwg/base-drafts/issues/2760?email_source=notifications\u0026email_token=AFTOJK6ALTYYMZLPAZWAKXTP5PKLLA5CNFSM4HRC37V2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCX2FA#issuecomment-507870484",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bdd3517d79_22d23fa9f24cd96c1091df--


From nobody Tue Jul  2 15:45:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6500012017C for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:45:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XX_34k2YzomH for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:45: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 40495120187 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:45:29 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:45:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562107527; bh=GR2J875O7dbAMsxqU8TCN9r6IRNUA5C5aTDWWVPbGuY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QTWraWTxs7hneHG05tpL+5cenKAuaMizpcjS/LIJQMYOAKdNpHF7rFxd7RkbxaxIY l320yQruChqF8gqNjKIjtFH894jkNkonRZGugpJFHlfesykqvHG50oL04n4dXko5mO MomuJOIoEPhM08f2O9gKnei6GdFQeG5lx0Mlo/ao=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KE5QBIEREAIFV4ZF3FEIQPEVBNHHBW3C4Q4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2838/507871803@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2838@github.com>
References: <quicwg/base-drafts/issues/2838@github.com>
Subject: Re: [quicwg/base-drafts] Provide Signal that SCID is client assigned (#2838)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bde8799a40_65b33ff28aecd968290479"; 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/3LFcTGJhN7Np-NIfvFJ1I4KUsds>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:45:42 -0000

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

We have discussed this several times in the past and concluded not to do this.  I'm not seeing any new information here, so I'm going to propose that we close this issue 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/2838#issuecomment-507871803
----==_mimepart_5d1bde8799a40_65b33ff28aecd968290479
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We have discussed this several times in the past and concluded not to do this.  I'm not seeing any new information here, so I'm going to propose that we close this issue 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/2838?email_source=notifications&amp;email_token=AFTOJK5MC7DAYPMAFKTPDI3P5PLAPA5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYEOY#issuecomment-507871803">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BMQN443O2KDGDEPDP5PLAPANCNFSM4H3CE2KQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK77AETRTPQHMXSAHADP5PLAPA5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYEOY.gif" height="1" width="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/2838?email_source=notifications\u0026email_token=AFTOJK5MC7DAYPMAFKTPDI3P5PLAPA5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYEOY#issuecomment-507871803",
"url": "https://github.com/quicwg/base-drafts/issues/2838?email_source=notifications\u0026email_token=AFTOJK5MC7DAYPMAFKTPDI3P5PLAPA5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYEOY#issuecomment-507871803",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bde8799a40_65b33ff28aecd968290479--


From nobody Tue Jul  2 15:51:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A703E120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:51:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 fbUx4RI_L8l7 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:51: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 C23701200F6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:51:36 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:51:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562107895; bh=anhdESLLCTyCqy6tUo89h7Y2Pjx71/KDlSGWbKGQ3AI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wKSbFWfoPaFfpF5JWWn5vo5ziuuoZ09z5MN8Y94oFAiC+ZFhpne1yRSeYaZKO8FT5 gIpJy+9uynWG9De1ipgz1eXseutWMAsTGiSTbqMfhP/w6ueSzCin1KNFTW5b18AgXj vR311Z9NI0afj0ppc2xVH+82S0rwESU9+aAxILB8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYSFBTP4AHKHLEK6XN3FEJHPEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/507873146@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bdff78b50c_18ba3fdf9c6cd96c15274c"; 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/lpo1bhTZJLF7n4D-JStmaCD0i8c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:51:39 -0000

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

The goal is not to avoid the attacker dropping the packet(I'm not sure what other type of interference is possible here?).  If they can do that, they can drop all packets and that's likely even worse.  The goal is to ensure the packet can't be reliably identified as a stateless reset, which is a much lower bar.

As I stated on #2770, if the client wants to ensure it's reset is always large enough to be indistinguishable, it needs to send a packet size that's one byte larger than the smallest packet it expects to receive.  Typically, this is a no-op for the client, so compliance is trivial.

No matter what happens, a server may send a stateless reset in response to any QUIC packet that's large enough to be valid, and it's not sensible to try to prevent a server from doing that.

Even if the packet is smaller than other packets, it's just odd, not invalid, as David said.

If we don't do this, I fear clients will increase their effective minimum packet size substantially, which is a cost everyone has to bear, when a large number of clients will use 0 byte CIDs.

-- 
You are receiving 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/2869#issuecomment-507873146
----==_mimepart_5d1bdff78b50c_18ba3fdf9c6cd96c15274c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The goal is not to avoid the attacker dropping the packet(I'm not sure what other type of interference is possible here?).  If they can do that, they can drop all packets and that's likely even worse.  The goal is to ensure the packet can't be reliably identified as a stateless reset, which is a much lower bar.</p>
<p>As I stated on <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="452243068" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2770" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2770/hovercard" href="https://github.com/quicwg/base-drafts/issues/2770">#2770</a>, if the client wants to ensure it's reset is always large enough to be indistinguishable, it needs to send a packet size that's one byte larger than the smallest packet it expects to receive.  Typically, this is a no-op for the client, so compliance is trivial.</p>
<p>No matter what happens, a server may send a stateless reset in response to any QUIC packet that's large enough to be valid, and it's not sensible to try to prevent a server from doing that.</p>
<p>Even if the packet is smaller than other packets, it's just odd, not invalid, as David said.</p>
<p>If we don't do this, I fear clients will increase their effective minimum packet size substantially, which is a cost everyone has to bear, when a large number of clients will use 0 byte CIDs.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK5CHJDCB2LJB3TLOSDP5PLXPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYO6Q#issuecomment-507873146">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5QTCQGS6M6JR4HLTP5PLXPANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3A7USOANJWQCQDEGDP5PLXPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYO6Q.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK5CHJDCB2LJB3TLOSDP5PLXPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYO6Q#issuecomment-507873146",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK5CHJDCB2LJB3TLOSDP5PLXPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCYO6Q#issuecomment-507873146",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1bdff78b50c_18ba3fdf9c6cd96c15274c--


From nobody Tue Jul  2 15:56:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7FFD212012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:56:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 46vkvjTImOk9 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:55: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 35FD4120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:55:59 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:55:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108157; bh=yQcUyKARCO2P3GCEG+VLTcDrTcV85TrpJdp5Rz8zLpw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zNELn24EUBpImXHvr0ekX8G9LNANZqnsRUGRsHFifvy23jSFMbJKUSXxo40Vm6KZc 2RA90bBPkKPd0vKTLRJvNI0Mlh9lGlncD/po2P84EbVTY/XqBixRwGqVBWm35FDLdf nJs9Hr0+RVMzzYOi5H2WFY5O6XC7EbW01isBBgGY=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RICLY4UJNZF6BUNF3FEJX3EVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/257183127@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be0fd95568_341a3fe78e8cd95c2847e4"; 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/OQhQzrRhtuw3mCfkKs_UQPuWpfY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:56:04 -0000

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

janaiyengar commented on this pull request.



> @@ -2859,13 +2859,21 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.

This second sentence seems unnecessary.

> @@ -2859,13 +2859,21 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.
+
+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 packet containing only an ACK frame per received ACK-eliciting packet

```suggestion
one ACK-frame-only packet in response to receiving an ACK-eliciting packet
```

> -An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.
+
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. Limiting the sending of ACK

```suggestion
packet gaps which precede the received packet. Limiting ACK
```

> -to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.
+
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. Limiting the sending of ACK
+frames avoids creating an indefinite feedback loop of acknowledgements,

```suggestion
frames avoids an infinite feedback loop of acknowledgements,
```

> -gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.
+
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
+packet (one containing only ACK and/or PADDING frames), even if there are
+packet gaps which precede the received packet. Limiting the sending of ACK
+frames avoids creating an indefinite feedback loop of acknowledgements,
+which could prevent the connection from ever becoming idle. The endpoint MUST

I don't think you need this MUST here. How about "The endpoint however includes acknowledgements for any non-ACK-eliciting packets as normal when it receives and acknowledges an ACK-eliciting packet."

> @@ -2874,6 +2882,18 @@ sender to become limited by the congestion controller (as described in
 receiver. Therefore, a sender SHOULD ensure that other frames are sent in
 addition to PADDING frames to elicit acknowledgments from the receiver.
 
+An endpoint that is only sending acknowledgements will not receive

```suggestion
An endpoint that is only sending ACK frames will not receive
```

> @@ -2874,6 +2882,18 @@ sender to become limited by the congestion controller (as described in
 receiver. Therefore, a sender SHOULD ensure that other frames are sent in
 addition to PADDING frames to elicit acknowledgments from the receiver.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in

```suggestion
acknowledgments from its peer.
```

> @@ -2874,6 +2882,18 @@ sender to become limited by the congestion controller (as described in
 receiver. Therefore, a sender SHOULD ensure that other frames are sent in
 addition to PADDING frames to elicit acknowledgments from the receiver.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames with

```suggestion
An endpoint SHOULD bundle ACK frames with
```

> @@ -2874,6 +2882,18 @@ sender to become limited by the congestion controller (as described in
 receiver. Therefore, a sender SHOULD ensure that other frames are sent in
 addition to PADDING frames to elicit acknowledgments from the receiver.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames with
+other frames when there are new ACK-eliciting packets to acknowledge.
+When only non-ACK-eliciting packets need to be acknowledged, the sender MAY

```suggestion
When only non-ACK-eliciting packets need to be acknowledged, an endpoint MAY
```

>  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such
+as one per round trip, to enable dropping unnecessary ACK ranges and any state

```suggestion
as once per round trip, to enable dropping unnecessary ACK ranges and any state
```

>  To limit ACK Ranges (see {{ack-ranges}}) to those that have not yet been
 received by the sender, the receiver SHOULD track which ACK frames have been
 acknowledged by its peer. The receiver SHOULD exclude already acknowledged
 packets from future ACK frames whenever these packets would unnecessarily
-contribute to the ACK frame size.
-
-Because ACK frames are not sent in response to ACK-only packets, a receiver that
-is only sending ACK frames will only receive acknowledgements for its packets if
-the sender includes them in packets with non-ACK frames.  A sender SHOULD bundle
-ACK frames with other frames when possible.
+contribute to the ACK frame size.  When the receiver is only sending
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them, such
+as one per round trip, to enable dropping unnecessary ACK ranges and any state
+for previously sent packets.  The receiver MUST NOT bundle a PING with all
+packets that would otherwise not be ACK-eliciting, in order to avoid an
+indefinite feedback loop of acknowledgements.

```suggestion
infinite feedback loop of acknowledgements.
```

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

<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/2794#discussi=
on_r299711894">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2859,13 +2859,21 @@ valid frames? --&g=
t;=0D
 =0D
 ### Sending ACK Frames=0D
 =0D
-An endpoint MUST NOT send more than one packet containing only an ACK fr=
ame per=0D
-received packet that contains frames other than ACK and PADDING frames.=0D=

-An endpoint MUST NOT send a packet containing only an ACK frame in respo=
nse=0D
-to a packet containing only ACK or PADDING frames, even if there are pac=
ket=0D
-gaps which precede the received packet. This prevents an indefinite feed=
back=0D
-loop of ACKs. The endpoint MUST however acknowledge packets containing o=
nly=0D
-ACK or PADDING frames when sending ACK frames in response to other packe=
ts.=0D
+An endpoint sends ACK frames to acknowledge packets it has received and=0D=

+processed. Sending ACK frames is the primary mechanism for advancing the=
 state=0D
+of a connection.=0D
</pre>=0D
<p>This second sentence seems unnecessary.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299714239">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2859,13 +2859,21 @@ valid frames? --&g=
t;=0D
 =0D
 ### Sending ACK Frames=0D
 =0D
-An endpoint MUST NOT send more than one packet containing only an ACK fr=
ame per=0D
-received packet that contains frames other than ACK and PADDING frames.=0D=

-An endpoint MUST NOT send a packet containing only an ACK frame in respo=
nse=0D
-to a packet containing only ACK or PADDING frames, even if there are pac=
ket=0D
-gaps which precede the received packet. This prevents an indefinite feed=
back=0D
-loop of ACKs. The endpoint MUST however acknowledge packets containing o=
nly=0D
-ACK or PADDING frames when sending ACK frames in response to other packe=
ts.=0D
+An endpoint sends ACK frames to acknowledge packets it has received and=0D=

+processed. Sending ACK frames is the primary mechanism for advancing the=
 state=0D
+of a connection.=0D
+=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 packet containing only an ACK frame per received ACK-eliciting packe=
t=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-one packet containing only an ACK frame per r=
eceived ACK-eliciting packet=0D
+one ACK-frame-only packet in response to receiving an ACK-eliciting pack=
et=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299714964">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -An endpoint MUST NOT send a packet contai=
ning only an ACK frame in response=0D
-to a packet containing only ACK or PADDING frames, even if there are pac=
ket=0D
-gaps which precede the received packet. This prevents an indefinite feed=
back=0D
-loop of ACKs. The endpoint MUST however acknowledge packets containing o=
nly=0D
-ACK or PADDING frames when sending ACK frames in response to other packe=
ts.=0D
+An endpoint sends ACK frames to acknowledge packets it has received and=0D=

+processed. Sending ACK frames is the primary mechanism for advancing the=
 state=0D
+of a connection.=0D
+=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 packet containing only an ACK frame per received ACK-eliciting packe=
t=0D
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST=
 NOT=0D
+send a packet containing only an ACK frame in response to a non-ACK-elic=
iting=0D
+packet (one containing only ACK and/or PADDING frames), even if there ar=
e=0D
+packet gaps which precede the received packet. Limiting the sending of A=
CK=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-packet gaps which precede the received packet=
. Limiting the sending of ACK=0D
+packet gaps which precede the received packet. Limiting ACK=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299715041">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -to a packet containing only ACK or PADDIN=
G frames, even if there are packet=0D
-gaps which precede the received packet. This prevents an indefinite feed=
back=0D
-loop of ACKs. The endpoint MUST however acknowledge packets containing o=
nly=0D
-ACK or PADDING frames when sending ACK frames in response to other packe=
ts.=0D
+An endpoint sends ACK frames to acknowledge packets it has received and=0D=

+processed. Sending ACK frames is the primary mechanism for advancing the=
 state=0D
+of a connection.=0D
+=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 packet containing only an ACK frame per received ACK-eliciting packe=
t=0D
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST=
 NOT=0D
+send a packet containing only an ACK frame in response to a non-ACK-elic=
iting=0D
+packet (one containing only ACK and/or PADDING frames), even if there ar=
e=0D
+packet gaps which precede the received packet. Limiting the sending of A=
CK=0D
+frames avoids creating an indefinite feedback loop of acknowledgements,=0D=

</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-frames avoids creating an indefinite feedback=
 loop of acknowledgements,=0D
+frames avoids an infinite feedback loop of acknowledgements,=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299715616">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -gaps which precede the received packet. T=
his prevents an indefinite feedback=0D
-loop of ACKs. The endpoint MUST however acknowledge packets containing o=
nly=0D
-ACK or PADDING frames when sending ACK frames in response to other packe=
ts.=0D
+An endpoint sends ACK frames to acknowledge packets it has received and=0D=

+processed. Sending ACK frames is the primary mechanism for advancing the=
 state=0D
+of a connection.=0D
+=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 packet containing only an ACK frame per received ACK-eliciting packe=
t=0D
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST=
 NOT=0D
+send a packet containing only an ACK frame in response to a non-ACK-elic=
iting=0D
+packet (one containing only ACK and/or PADDING frames), even if there ar=
e=0D
+packet gaps which precede the received packet. Limiting the sending of A=
CK=0D
+frames avoids creating an indefinite feedback loop of acknowledgements,=0D=

+which could prevent the connection from ever becoming idle. The endpoint=
 MUST=0D
</pre>=0D
<p>I don't think you need this MUST here. How about "The endpoint however=
 includes acknowledgements for any non-ACK-eliciting packets as normal wh=
en it receives and acknowledges an ACK-eliciting packet."</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299715697">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2874,6 +2882,18 @@ sender to become li=
mited by the congestion controller (as described in=0D
 receiver. Therefore, a sender SHOULD ensure that other frames are sent i=
n=0D
 addition to PADDING frames to elicit acknowledgments from the receiver.=0D=

 =0D
+An endpoint that is only sending acknowledgements will not receive=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-An endpoint that is only sending acknowledgem=
ents will not receive=0D
+An endpoint that is only sending ACK frames will not receive=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299715969">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2874,6 +2882,18 @@ sender to become li=
mited by the congestion controller (as described in=0D
 receiver. Therefore, a sender SHOULD ensure that other frames are sent i=
n=0D
 addition to PADDING frames to elicit acknowledgments from the receiver.=0D=

 =0D
+An endpoint that is only sending acknowledgements will not receive=0D
+acknowledgments from its peer unless those acknowledgements are included=
 in=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-acknowledgments from its peer unless those ac=
knowledgements are included in=0D
+acknowledgments from its peer.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299716010">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2874,6 +2882,18 @@ sender to become li=
mited by the congestion controller (as described in=0D
 receiver. Therefore, a sender SHOULD ensure that other frames are sent i=
n=0D
 addition to PADDING frames to elicit acknowledgments from the receiver.=0D=

 =0D
+An endpoint that is only sending acknowledgements will not receive=0D
+acknowledgments from its peer unless those acknowledgements are included=
 in=0D
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames wi=
th=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-packets with ACK-eliciting frames.  A sender =
SHOULD bundle ACK frames with=0D
+An endpoint SHOULD bundle ACK frames with=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299716307">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2874,6 +2882,18 @@ sender to become li=
mited by the congestion controller (as described in=0D
 receiver. Therefore, a sender SHOULD ensure that other frames are sent i=
n=0D
 addition to PADDING frames to elicit acknowledgments from the receiver.=0D=

 =0D
+An endpoint that is only sending acknowledgements will not receive=0D
+acknowledgments from its peer unless those acknowledgements are included=
 in=0D
+packets with ACK-eliciting frames.  A sender SHOULD bundle ACK frames wi=
th=0D
+other frames when there are new ACK-eliciting packets to acknowledge.=0D=

+When only non-ACK-eliciting packets need to be acknowledged, the sender =
MAY=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-When only non-ACK-eliciting packets need to b=
e acknowledged, the sender MAY=0D
+When only non-ACK-eliciting packets need to be acknowledged, an endpoint=
 MAY=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299716569">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  To limit ACK Ranges (see {{ack-ranges}}) =
to those that have not yet been=0D
 received by the sender, the receiver SHOULD track which ACK frames have =
been=0D
 acknowledged by its peer. The receiver SHOULD exclude already acknowledg=
ed=0D
 packets from future ACK frames whenever these packets would unnecessaril=
y=0D
-contribute to the ACK frame size.=0D
-=0D
-Because ACK frames are not sent in response to ACK-only packets, a recei=
ver that=0D
-is only sending ACK frames will only receive acknowledgements for its pa=
ckets if=0D
-the sender includes them in packets with non-ACK frames.  A sender SHOUL=
D bundle=0D
-ACK frames with other frames when possible.=0D
+contribute to the ACK frame size.  When the receiver is only sending=0D
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them,=
 such=0D
+as one per round trip, to enable dropping unnecessary ACK ranges and any=
 state=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-as one per round trip, to enable dropping unn=
ecessary ACK ranges and any state=0D
+as once per round trip, to enable dropping unnecessary ACK ranges and an=
y state=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299716652">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  To limit ACK Ranges (see {{ack-ranges}}) =
to those that have not yet been=0D
 received by the sender, the receiver SHOULD track which ACK frames have =
been=0D
 acknowledged by its peer. The receiver SHOULD exclude already acknowledg=
ed=0D
 packets from future ACK frames whenever these packets would unnecessaril=
y=0D
-contribute to the ACK frame size.=0D
-=0D
-Because ACK frames are not sent in response to ACK-only packets, a recei=
ver that=0D
-is only sending ACK frames will only receive acknowledgements for its pa=
ckets if=0D
-the sender includes them in packets with non-ACK frames.  A sender SHOUL=
D bundle=0D
-ACK frames with other frames when possible.=0D
+contribute to the ACK frame size.  When the receiver is only sending=0D
+non-ACK-eliciting packets, it can bundle a PING with a fraction of them,=
 such=0D
+as one per round trip, to enable dropping unnecessary ACK ranges and any=
 state=0D
+for previously sent packets.  The receiver MUST NOT bundle a PING with a=
ll=0D
+packets that would otherwise not be ACK-eliciting, in order to avoid an=0D=

+indefinite feedback loop of acknowledgements.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-indefinite feedback loop of acknowledgements.=
=0D
+infinite feedback loop of acknowledgements.=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/2794?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK6ULAFJS4GHZW3RFQ3P5PMH3A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KE3FY#pullrequestreview-257183127=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK3E32VPFD6ZY4YWO4DP5PMH3ANCNFSM4HYOBHNQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK3NNZEN=
QXO2VYTFEILP5PMH3A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KE3FY.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/2794?email_source=3D=
notifications\u0026email_token=3DAFTOJK6ULAFJS4GHZW3RFQ3P5PMH3A5CNFSM4HYO=
BHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
5KE3FY#pullrequestreview-257183127",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2794?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK6ULAFJS4GHZW3RFQ3P5PMH3A5CNFSM4HYOBH=
N2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K=
E3FY#pullrequestreview-257183127",=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_5d1be0fd95568_341a3fe78e8cd95c2847e4--


From nobody Tue Jul  2 15:56:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4541B12012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:56:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id L1yVtuepumai for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:56: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 78023120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:56:33 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:56:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108192; bh=fLna/ZW927g8ihB0OPwqCSDcD2FZME+ZUXScfafDttg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZqK29G2Oa6WpseXFvT0AmY/v0k8l2skKGKNxswoIK+bRWb835ni8uwayALJNl6I9H 5q5mbFx8uq6Mk99J7O9+k/gHhV58f0Ib7pEnXKEfI1ofv6BycFxmWhXjXVB4T2I8zq plJdILNvwrt+v5vm3P3C6supmsOMhc3TkJiWoY1Y=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3R3PC2B4DQXJDOBZ53FEJ2BEVBNHHBXEE5LI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2864/review/257188911@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2864@github.com>
References: <quicwg/base-drafts/pull/2864@github.com>
Subject: Re: [quicwg/base-drafts] Explicitly allow discard of packets <40 bytes (#2864)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be12032bec_159d3fdf9c6cd96c302323"; 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/do40KCw61NGjbGxj2hDuGn1Ylww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:56:36 -0000

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

ianswett requested changes on this pull request.



> @@ -2510,7 +2510,8 @@ Reset in response, which could lead to an infinite exchange.
 An endpoint MUST ensure that every Stateless Reset that it sends is smaller than
 the packet which triggered it, unless it maintains state sufficient to prevent
 looping.  In the event of a loop, this results in packets eventually being too
-small to trigger a response.
+small to trigger a response.  An endpoint MAY choose not to send a Stateless
+Reset in response to a packet that is smaller than 40 bytes.

The existing text was confusing, but I don'd see how this text is relevant to looping?

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

<p><b>@ianswett</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2864#discussion_r299716587">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2510,7 +2510,8 @@ Reset in response, which could lead to an infinite exchange.
 An endpoint MUST ensure that every Stateless Reset that it sends is smaller than
 the packet which triggered it, unless it maintains state sufficient to prevent
 looping.  In the event of a loop, this results in packets eventually being too
-small to trigger a response.
+small to trigger a response.  An endpoint MAY choose not to send a Stateless
+Reset in response to a packet that is smaller than 40 bytes.
</pre>
<p>The existing text was confusing, but I don'd see how this text is relevant to looping?</p>

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


From nobody Tue Jul  2 15:57:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 09F57120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:57:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 yXw0vnBJErKp for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:57:31 -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 1EA11120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:57:30 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:57:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108249; bh=AlyfYgpGEKIjnVadIA5voyykNrwT4jPbJUcN9RYPDrg=; h=Date:From:To:Subject:From; b=kj5a0lqVGR6xAN80bNRMpKL+ecTtL1nT1c+xfimZGhZWArszf/0lEVQB13xopgHbw MoMaNi+E2KXbRK/WD5vbUEeqbTV4NE/qh/I4kvdogZEA7ZxmyDLXlxCW/vGOPqNWaW puYBVw6/mWdy1CR0BYuQkbympie4GfBXiX7CdA3k=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/5d90a5-9f9ad4@github.com>
Subject: [quicwg/base-drafts] 9f9ad4: 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/TgQDmcR7zUOTGej5mGMc6JP4D2w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:57:33 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1
      https://github.com/quicwg/base-drafts/commit/9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  2 15:57:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F06DA120106 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:57:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 ES_dLUZ-3JVH for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:57:39 -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 F139B120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:57:38 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:57:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108257; bh=LYs8fjUqGEOMlFtYg1AdKj9bsx+TeO1hOWfDbt84Lqk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hRgNk9koU4cu+uTrUr25CkjeCgbZqghx6gd8/+55i6UlkEjH4u5qS0b/Je8OgP/T7 S6RyApT78dPbErMkDI9bc0LuetOkxNjXHRrv6Lr1AEFPy27yLcgs7vrAQ30ftXn/6K O/pj5jySrmejoiIZZ8fkILMBMMYQuYijDTxwGZ7I=
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/2794/push/3776704176@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be161af12c_38c23ff8e1acd96497937"; 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/wi9tEDyDmKHsTC2wpD8QzNc1f2M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:57:41 -0000

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

@ianswett pushed 1 commit.

9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1  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/2794/files/5d90a56f7104a2377ea015a718752ef8700dce4a..9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1

----==_mimepart_5d1be161af12c_38c23ff8e1acd96497937
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/9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1">9f9ad47</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/2794/files/5d90a56f7104a2377ea015a718752ef8700dce4a..9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1?email_source=notifications&amp;email_token=AFTOJK5BGLBM3EVR4WFQURDP5PMODA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGQYTONQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XF5ECKJ3AJTOGV7TP5PMODANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5DNQPIL5CBINNE3ULP5PMODA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGQYTONQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/5d90a56f7104a2377ea015a718752ef8700dce4a..9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1?email_source=notifications\u0026email_token=AFTOJK5BGLBM3EVR4WFQURDP5PMODA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGQYTONQ",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/5d90a56f7104a2377ea015a718752ef8700dce4a..9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1?email_source=notifications\u0026email_token=AFTOJK5BGLBM3EVR4WFQURDP5PMODA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGQYTONQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be161af12c_38c23ff8e1acd96497937--


From nobody Tue Jul  2 15:58:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 60D40120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:58:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 bEsgdr4d1BS5 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:58: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 A94D4120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:58:18 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:58:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108297; bh=tQNwJJHRIlM9J46QXi/UaHY6qYbwubfvgAk18+jFNOc=; h=Date:From:To:Subject:From; b=WTa0tawTiT5c0oi2y0BOPs8lFL3euQc+vb5rGPwH8zHZthk25wXbtSnjFt1VEWuhC Ysgr1ayBsm2Q9K/nfSv95j+8wxUqwy55OxyhdEHPGXEAlcHyQCS3I49u78cB+pxYam R2aiSPk06xqhFVoeHHgc4+a+U/Ff8D0Magyp4tx4=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/9f9ad4-e9c035@github.com>
Subject: [quicwg/base-drafts] e9c035: 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/vQ6vlvyfn_c69RiVcGgh1hlYqvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:58:21 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: e9c0357b7416ad5d14684731b05a3a02fc42e539
      https://github.com/quicwg/base-drafts/commit/e9c0357b7416ad5d14684731b05a3a02fc42e539
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 15:58:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 22955120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:58:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 fGR5oz59-QCG for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:58: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 7AC4D120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:58:26 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:58:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108305; bh=6RT4kOKq8Eg1ZT+9whnJzNQeY/EjWGjeusQWaOfioCI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=usfWBlHOU99njx4jdfa2AMzqtil7m3ZZ2i0wssaZ8dgVJ+vmCXMkyUr/AjPXIR0Ld /+uF9r73KUmknH8jaS/B39YwxE7yJvL5IENq7RC4yf/cK0L/cIfThAnl2Co6XwG+kG Uj1XtB/tsITumdMhYNUILjOMtlUvTWf2lTgP9pq4=
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/2794/push/3776705908@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be19157b92_37e03ff8dcacd964148916"; 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/cTwywa5knUdcaZFdCHJtUHdMN3E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:58:28 -0000

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

@ianswett pushed 1 commit.

e9c0357b7416ad5d14684731b05a3a02fc42e539  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/2794/files/9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1..e9c0357b7416ad5d14684731b05a3a02fc42e539

----==_mimepart_5d1be19157b92_37e03ff8dcacd964148916
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/e9c0357b7416ad5d14684731b05a3a02fc42e539">e9c0357</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/2794/files/9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1..e9c0357b7416ad5d14684731b05a3a02fc42e539?email_source=notifications&amp;email_token=AFTOJK5AIKL3MTJHO5KQQEDP5PMRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGU4TAOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYM2SWF6NNXBHJCAXDP5PMRDANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5MSE7WKUYTF3HWUTDP5PMRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGU4TAOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1..e9c0357b7416ad5d14684731b05a3a02fc42e539?email_source=notifications\u0026email_token=AFTOJK5AIKL3MTJHO5KQQEDP5PMRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGU4TAOA",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1..e9c0357b7416ad5d14684731b05a3a02fc42e539?email_source=notifications\u0026email_token=AFTOJK5AIKL3MTJHO5KQQEDP5PMRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQGU4TAOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be19157b92_37e03ff8dcacd964148916--


From nobody Tue Jul  2 15:59:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 58A20120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 KHZWBXxLAbLV for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59: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 32D42120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:59:07 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:59:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108346; bh=T+DKCtSyUG/rOm3vX9/9770gk9G1nYUOlsFF2TT4vMU=; h=Date:From:To:Subject:From; b=P/4fsbJ0UijZ0RTuwwfv52u93sXNz+pvsMGeg+dCkxznj5NvJlDgo12xxIyW7tPSj N5ZzJmRsYoVf2Xo98KfhoKXuWoYSbmBR//RmutPorT/8uNi2rSixBosd6VWRgwUkMH dEJahAuAWkNlo4OgzMLKw2J/M+5XYppRgRXJAuC8=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/e9c035-d6b8f0@github.com>
Subject: [quicwg/base-drafts] d6b8f0: 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/g2PefwknscNO3S4VQg1gZLdP66k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:59:08 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: d6b8f0f1b276e409186910c9ca6c0a1f7c490af3
      https://github.com/quicwg/base-drafts/commit/d6b8f0f1b276e409186910c9ca6c0a1f7c490af3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  2 15:59:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2AE7412012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 cBA7SrCj4NxQ for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59: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 66FC1120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:59:16 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:59:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108355; bh=1I55JIUeFZbqSxNpy23M85BU3jFGGWtWGI1SqXixNXE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ViAlRyhR1MmDTwo10B7okQoFkqmDgXWKRr6Yq/Ose5ZnI0vj90/zdXUtv5jUaSeIP N+Z8m/hAvaGSl4uHjwavQQNsSa57HSzcEB0roFhPxp0pk82tfrnhfzupE9U1gtrSTt XvtuiR6kDmNzpOYLn9mNfRwycnFFC4n7dKGk9boY=
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/2794/push/3776707732@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be1c381494_51d43fd3198cd968176941"; 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/Tdj-3gmDJttQs2viAmfyd1LQdSQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:59:18 -0000

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

@ianswett pushed 1 commit.

d6b8f0f1b276e409186910c9ca6c0a1f7c490af3  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/2794/files/e9c0357b7416ad5d14684731b05a3a02fc42e539..d6b8f0f1b276e409186910c9ca6c0a1f7c490af3

----==_mimepart_5d1be1c381494_51d43fd3198cd968176941
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/d6b8f0f1b276e409186910c9ca6c0a1f7c490af3">d6b8f0f</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/2794/files/e9c0357b7416ad5d14684731b05a3a02fc42e539..d6b8f0f1b276e409186910c9ca6c0a1f7c490af3?email_source=notifications&amp;email_token=AFTOJKZGLPIROC56GM3JAN3P5PMUHA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQG43TGMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4UIIGWM4ADMYF47Z3P5PMUHANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK24EHWLNJ5RBYPXKXDP5PMUHA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQG43TGMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/e9c0357b7416ad5d14684731b05a3a02fc42e539..d6b8f0f1b276e409186910c9ca6c0a1f7c490af3?email_source=notifications\u0026email_token=AFTOJKZGLPIROC56GM3JAN3P5PMUHA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQG43TGMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/e9c0357b7416ad5d14684731b05a3a02fc42e539..d6b8f0f1b276e409186910c9ca6c0a1f7c490af3?email_source=notifications\u0026email_token=AFTOJKZGLPIROC56GM3JAN3P5PMUHA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQG43TGMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be1c381494_51d43fd3198cd968176941--


From nobody Tue Jul  2 15:59:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 95988120106 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id G2wJrYU3WQEH for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59: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 EF103120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:59:16 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:59:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108356; bh=4O/p27jIk+w500cNd8+9VzN6n7NppgEGhY0n3KW5KyQ=; h=Date:From:To:Subject:From; b=B9PDMA9o1XOd9z29Zl4JPerS5ytUxCHTxER3TNVFmuBbyfkQUiNqn58dLrTRbJ8nJ quGKFm+dnXE0WIpLU0lhLs242bcNo5jg8J1anNZ8ql3IaIcMEBWx6pEjW0fIlSnoUN NjyHGQ/yAG5wN6SW3TPFJhZfcViEiNuscOcxjAow=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bccf3b-e7f951@github.com>
Subject: [quicwg/base-drafts] e7f951: Script updating gh-pages from 9f9ad475. [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/ZllzYrP8frGbp945rZk6MgufiWs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:59:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e7f95172ccd997d40ec1dae82bbd18787275514d
      https://github.com/quicwg/base-drafts/commit/e7f95172ccd997d40ec1dae82bbd18787275514d
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 15:59:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD194120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 VEzPTyKMDsKL for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:35 -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 CD156120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:59:35 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:59:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108375; bh=v/2tUElJiHG8KNmRoLS0geJANNNhzP3BOnHq1+ZlkyI=; h=Date:From:To:Subject:From; b=vmEXKr7Vk4xddyNbfa6DbORi9HneeuG9j2TTUhcQzrTZbi46/baehcyaHmhbkDlME fwSeuCwc+J2AldZmb+Kjig8SWp7aKE6MPvxvt8Abeooxvmo+/V9nmSSzEV2qx/sHld 0TpvE6Uh/k+sy8mQMFAMFVK/KbU2RUZDYacgJD0M=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/d6b8f0-e02a4e@github.com>
Subject: [quicwg/base-drafts] e02a4e: 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/HsJOOJtGn0tu4mWRcA29cGK6cIA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:59:38 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec
      https://github.com/quicwg/base-drafts/commit/e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  2 15:59:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4808712012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 XJ1XtIdEqGLu for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59: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 C8891120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:59:44 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:59:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108383; bh=6F9hVBqLblz9anfZ8lpe10lZwlOnCstKIgOJV1a58fo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=njm4kfNvvong93MB4lNFu01k0qWkZDshYvyfeJqG4+RKv0ENYVirAJkH2c1jIwqVh zAW8UDNurEFbs6fuFPIiWlCBYapuxwNdAmC1/vssvoNfWK9frfOhAP8fm/V32Bx/Jt inJbAZZ12Z2kfI5JU5Nl/fOQzTYAL0wQDiGuMU4M=
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/2794/push/3776708737@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be1dfb61b4_79f13f8a696cd968150266"; 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/1dibwCHy5u5nnTDqrSJy6WrdGVM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:59:46 -0000

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

@ianswett pushed 1 commit.

e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec  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/2794/files/d6b8f0f1b276e409186910c9ca6c0a1f7c490af3..e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec

----==_mimepart_5d1be1dfb61b4_79f13f8a696cd968150266
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/e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec">e02a4e8</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/2794/files/d6b8f0f1b276e409186910c9ca6c0a1f7c490af3..e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec?email_source=notifications&amp;email_token=AFTOJK7T4UNASPU5BW4HCU3P5PMV7A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHA3TGNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYB4T5GLNVPGSVEG4TP5PMV7ANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4G2MDFUFYZ63DKWM3P5PMV7A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHA3TGNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/d6b8f0f1b276e409186910c9ca6c0a1f7c490af3..e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec?email_source=notifications\u0026email_token=AFTOJK7T4UNASPU5BW4HCU3P5PMV7A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHA3TGNY",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/d6b8f0f1b276e409186910c9ca6c0a1f7c490af3..e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec?email_source=notifications\u0026email_token=AFTOJK7T4UNASPU5BW4HCU3P5PMV7A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHA3TGNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be1dfb61b4_79f13f8a696cd968150266--


From nobody Tue Jul  2 15:59:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7EC112017D for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uHJHLF4Ziyk5 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:47 -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 39FAA120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:59:47 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:59:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108386; bh=D6JD0bMZSAXxKaaS8KGh5pJL7fzlmcHyc12qTi+imV0=; h=Date:From:To:Subject:From; b=eCoB6dugkGY7z503GiP/ZorbfmfDsN1lEZIBmeXMSHFtMM4be4Uwocg+1nRupt2Hp py9gbm9t0v/uJJDHj8oiFdjO0v3hnysm/k69huj8tqxJU/lI451Fg8Ov5ft6G94onM tzexteo+rE5XJBK+8PNcpoATXBCZIw4RVyWmZ8LM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e7f951-e77a76@github.com>
Subject: [quicwg/base-drafts] e77a76: Script updating gh-pages from e9c0357b. [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/IZJRRN-0wje3Q5JUqb4Qh1lwky4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:59:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e77a76aa3e4d427f42a839db93c3b24550041eed
      https://github.com/quicwg/base-drafts/commit/e77a76aa3e4d427f42a839db93c3b24550041eed
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:00:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 18D6A120177 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 K3c_AZjkyT8i for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 15:59: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 C738B120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 15:59:57 -0700 (PDT)
Date: Tue, 02 Jul 2019 15:59:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108396; bh=vvOGY5/fPA+8lsSJts6/EI/tJ8A2Vt/5NM5umBO0eGs=; h=Date:From:To:Subject:From; b=C4wQVahBfD91KhtvxUvpg5BtUkHstU/RGHRb1X4+C6hVLcbzir5JfvYdyuAUPS57n BnXjWPPj4DCtmvdGNku0v899DXwFyfDqslu7spiYcVTMmaEYX23c9zWOxQ8ROFrCNd W4TEY6laO5BS4+oG+g6GjfG8oz2CJ3fGkZnRiGHk=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/e02a4e-352592@github.com>
Subject: [quicwg/base-drafts] 352592: 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/KcuiW-a6c-Y6UjNMIRvM1xI4j8c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 22:59:59 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3525929ad18f4b68aa23a8d89b0dc00dc945ea91
      https://github.com/quicwg/base-drafts/commit/3525929ad18f4b68aa23a8d89b0dc00dc945ea91
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  2 16:00:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E5A8A120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:00:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 wr4eMofccJnj for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:00: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 3457C120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:00:07 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:00:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108406; bh=2UkDEAcbr6dFXbtVnT0pAYY5kpOwuCEqA7z85UvjvlE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k6mJD0u50kpUadEKHF0V+1t+NgboolOvteIIf7aC7hgqAXtFlbfTHi6dtF8CY6+8h kdT60DyIgFLLWZUQ7TjXvi9abRwdBjui+hXsuG46lCdyiH4nKf/CAoinzrO/3W29gp +ZLipGEK27WLsuHxCgl0IrRTvcwrBfatfWPJJOLY=
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/2794/push/3776709347@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be1f61027c_6bd43fea1eecd9643054fd"; 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/Ioq0w-i3aTuEMVSjdjSYRQQ_BuM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:00:09 -0000

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

@ianswett pushed 1 commit.

3525929ad18f4b68aa23a8d89b0dc00dc945ea91  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/2794/files/e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec..3525929ad18f4b68aa23a8d89b0dc00dc945ea91

----==_mimepart_5d1be1f61027c_6bd43fea1eecd9643054fd
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/3525929ad18f4b68aa23a8d89b0dc00dc945ea91">3525929</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/2794/files/e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec..3525929ad18f4b68aa23a8d89b0dc00dc945ea91?email_source=notifications&amp;email_token=AFTOJK5INLODTUE6MGUWICTP5PMXNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHEZTINY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7BN7W6AAZRX6B3VY3P5PMXNANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZOMNF4XPM6GF3U4ZTP5PMXNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHEZTINY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec..3525929ad18f4b68aa23a8d89b0dc00dc945ea91?email_source=notifications\u0026email_token=AFTOJK5INLODTUE6MGUWICTP5PMXNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHEZTINY",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec..3525929ad18f4b68aa23a8d89b0dc00dc945ea91?email_source=notifications\u0026email_token=AFTOJK5INLODTUE6MGUWICTP5PMXNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZQHEZTINY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be1f61027c_6bd43fea1eecd9643054fd--


From nobody Tue Jul  2 16:00:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C3E8612012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:00:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id flrxm-eKUfVN for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:00:23 -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 E9299120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:00:22 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:00:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108422; bh=FtJoLFVvaFf75XGViqprcIehPu8t+SxpuQ+TotjNhZc=; h=Date:From:To:Subject:From; b=hMRajNC7snydSb2vzYPiuYTgscsNQNzT1SIm1sOM8+fQo1LRDSPMTQjYNVXDY+yt+ T2Nru+AUjAwdsRX5zLx7uS4BCzqSRx/tfZl+69qvh0bPn/FjNviIWeXjTtj9ORdYiQ uE/UnmQXX/QjlkBWz4whDYczN+BOiBZP2w8qa8CA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e77a76-83ef86@github.com>
Subject: [quicwg/base-drafts] 83ef86: Script updating gh-pages from d6b8f0f1. [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/zA8Bm1_a7NbZ6FXgcHDUpHuwVEc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:00:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 83ef860a1a82f3c27976f0182c74b0b495a76448
      https://github.com/quicwg/base-drafts/commit/83ef860a1a82f3c27976f0182c74b0b495a76448
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:01:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0C456120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:00:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08MDS9pUJLBj for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:00: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 85955120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:00:57 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:00:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108456; bh=GmO/4iEh49vKhXT4mZ0UuRGRN/L82i5EFsptqmjWGfQ=; h=Date:From:To:Subject:From; b=z4AC7kHtpr6fPtSN4pW0t/5ZpG03OmFmoSYXXlYSkyoZ2Ln67GdFfkpmJ2GPbw3/w S5+0+hGpmMtepIp/6FHWcP5wY5F7KBcVRDi5qBOyUJuZigRWxipdRRkPIUeqbQ7XkN x/pudAl7XuUpHSfFamRnxI9G+Ean/ImQfdp9T/Nk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/83ef86-573443@github.com>
Subject: [quicwg/base-drafts] 573443: Script updating gh-pages from e02a4e8f. [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/S_0g8PxqiSx3HEA5lbG2vpOP2B8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:00:59 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 573443d1f8f51cfac43c55aaab3d4e0db595f939
      https://github.com/quicwg/base-drafts/commit/573443d1f8f51cfac43c55aaab3d4e0db595f939
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:01:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 97083120106 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:01:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yXSjfB31f1rp for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:01: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 4FDF3120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:01:24 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:01:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108483; bh=ixdoc4V5j+Ac2CeLO2M5Vy2x3xxr12bCGML0KVp6WY4=; h=Date:From:To:Subject:From; b=r1Q6u6FRk+D+UxFxINAJ3Zt6rqmyK/BnJwUqhzpxHOx6fkDEDAaIaDzlnLdoUjB8l kRFfufQ4m07I+y8Ln7Wq5rZWCIUOKPiMRqWADtQHthRnaCvVL4G8mH7OwcpJlR4z8s QuEJJTO941jVbfmKSeEUIz2Qg1XZLrYHzzOWXID8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/573443-51092b@github.com>
Subject: [quicwg/base-drafts] 51092b: Script updating issues at 2019-07-02T23:01:16Z. [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/aHp7SVqJvwWSB2603YqsMUDWNpM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:01:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 51092be03969968058d706c597fca34104afec4b
      https://github.com/quicwg/base-drafts/commit/51092be03969968058d706c597fca34104afec4b
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-02T23:01:16Z. [ci skip]



From nobody Tue Jul  2 16:01:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1D906120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:01:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ko8cI8a8jqxh for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:01:39 -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 C52D6120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:01:39 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:01:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108499; bh=wIRZFrvXOhhb078KFR6OS001YpVM9o5AHndr9YUQv3Q=; h=Date:From:To:Subject:From; b=QYLnto4Z9e7M03U2zAQHERrnrBeDEgM3HlebNAXjUtCKOLN97iOE/PRBlf+i4eq1s 8v28blF6/TwaGfcckr8i2Y95KJ+XAuoJ5VE7hmYdmRsNsLaRcTp3x7aZhTGpC2CNzH jnam0Z7heO26DMqfYzPmB2n67rrlH5sgIfnFfD9Y=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/51092b-9f276a@github.com>
Subject: [quicwg/base-drafts] 9f276a: Script updating issues at 2019-07-02T23:01:34Z. [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/Hlyl_Mg3FKcc8XilpPj0T7Kv9oE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:01:41 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f276a786d0f73b3ce037f35256222a015d1cd37
      https://github.com/quicwg/base-drafts/commit/9f276a786d0f73b3ce037f35256222a015d1cd37
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-02T23:01:34Z. [ci skip]



From nobody Tue Jul  2 16:02:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6459812012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:02:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id u8B8HZsEXWOO for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:02: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 B798A120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:02:17 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:02:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108536; bh=VXjI95TXQCvplKR5Rmi02y4+A8kFAroBFcDCH8/WOeo=; h=Date:From:To:Subject:From; b=FMBpm/4vEkLGthbzYRaTnnpI9LCH0/A7G4b5ba2I48Iz1eC5peje6FShtJGKMcbz9 WxIqT+p4NLBK/7Uk1hPEtdk5OSlOEN+lyP7xhvO1HTvwz4zPk3jlTMzBe/NVFwpyir Ie851fAGSG+K/7LPll01mxFD88WJyeVkyJ2ceEq4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9f276a-989bbb@github.com>
Subject: [quicwg/base-drafts] 989bbb: Script updating issues at 2019-07-02T23:02:10Z. [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/6Bhb0XWqV_Ewz1xT6FPZrFPzHRc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:02:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 989bbbc2ae885b61979728f997d9a7b785190c34
      https://github.com/quicwg/base-drafts/commit/989bbbc2ae885b61979728f997d9a7b785190c34
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-02T23:02:10Z. [ci skip]



From nobody Tue Jul  2 16:03:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 67A61120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:03:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FkoEBrQy_y8E for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:03:03 -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 57766120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:03:03 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:03:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108582; bh=/9IWAVtQ2qJAA1+lrRZKo9JBglEvjyz3KNL4Y0lVwW4=; h=Date:From:To:Subject:From; b=ni+PPcvZm+z65GxVx6+wWHXXOB0E9LwvTpz1T+KdfU8syQp4cFy2Jaqci9LejuFof V7Gso2EpEGvNrXhCQXZGpYj/GL71zyPtGUOCQlTQv3bLilO3wbF1xk84mUFC7Is+a0 onn3GMvQr9pkqu03TiSbY9VKiphmmjplN5UciSQc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/989bbb-d48979@github.com>
Subject: [quicwg/base-drafts] d48979: Script updating issues at 2019-07-02T23:02:57Z. [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/bOEU8PWegMiRqMtd6c8293X1y2k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:03:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d489795872a2d05be7bf0a0fe4e0dfb59f6b2c31
      https://github.com/quicwg/base-drafts/commit/d489795872a2d05be7bf0a0fe4e0dfb59f6b2c31
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-02T23:02:57Z. [ci skip]



From nobody Tue Jul  2 16:07:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7B41E120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:06:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 mVk4eV0ZKRHm for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:06: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 ED575120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:06:57 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:06:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108816; bh=PunyP2Sp1CV+l8PbEZwq8P3fBaRZ7LFEt8IDiqcd390=; h=Date:From:To:Subject:From; b=Vzu8BrjoLltz+CGL1K3HuWJy1Paiz02a6FkVbZNxsBjSYWoq3tBZHVUqqdYegJULU Pn9sUdfQOP92P8Ehc4Kj4ZTv17QkMznOKIWTPMzR/TSrmpM48hq9QZEU7FZjJNwiED freePG4n6UDRzDMSyKyPfRQA7D7IZcG/koUYU7mw=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/352592-e4296e@github.com>
Subject: [quicwg/base-drafts] e4296e: 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/KR-AleVIIniaHTCyxfKWhphlUGQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:07:00 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818
      https://github.com/quicwg/base-drafts/commit/e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  2 16:07:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ED71D120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 jA7lMslvoURE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07:05 -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 9A9EE120106 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:07:05 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:07:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108824; bh=JMER/FKYzhn6aDmxymD+18yBoxvEEz6UmX8IM0asgfI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r2BA8AzzUPXk13/w8ksLeNM+tLc81mKCMnCn+UNVSJy9Xw3MFg2gyvlYFhNuZONG5 RUg6nk2uecZ4LBaO1N5wwDiL3gmmXFuoEdGSc/mewerjBbQQyDz6qPCMV2aUGDJdjN ilaN8MicHpdHb5v12g694ojFf9xewH50sqbNOM9M=
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/2794/push/3776724807@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be3989ca5b_1823ff7494cd968312c"; 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/HpTbw5JLFwwkYDECKGNjrU6Ecfo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:07:07 -0000

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

@ianswett pushed 1 commit.

e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818  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/2794/files/3525929ad18f4b68aa23a8d89b0dc00dc945ea91..e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818

----==_mimepart_5d1be3989ca5b_1823ff7494cd968312c
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/e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818">e4296ef</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/2794/files/3525929ad18f4b68aa23a8d89b0dc00dc945ea91..e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818?email_source=notifications&amp;email_token=AFTOJK2K66EOLXQCSF4FLCDP5PNRRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGQ4DANY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4J22K3DOG4SIDUFETP5PNRRANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6H6VA5WVV522LW42LP5PNRRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGQ4DANY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/3525929ad18f4b68aa23a8d89b0dc00dc945ea91..e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818?email_source=notifications\u0026email_token=AFTOJK2K66EOLXQCSF4FLCDP5PNRRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGQ4DANY",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/3525929ad18f4b68aa23a8d89b0dc00dc945ea91..e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818?email_source=notifications\u0026email_token=AFTOJK2K66EOLXQCSF4FLCDP5PNRRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGQ4DANY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be3989ca5b_1823ff7494cd968312c--


From nobody Tue Jul  2 16:07:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A6AB612012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 wE5E5sJNvpMf for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07: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 BEB3E120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:07:13 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:07:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108832; bh=PmXhQ62XOgoGmo2uMUKSU6K1v2InnOb29Ds+r761cEY=; h=Date:From:To:Subject:From; b=X8cTxTj4pbgPPdI9J3bbDVahrlznBCYRPPMgaEMjbtHPSKNtVFWU+4CffHHN/8w0L ocsgqU7tcuK9zCPqwxmaSzVrYOwjwMoo+wZw2WyKw7j5nHSc4UQ6u2UA5ZkdXqVNYB 8vydOKYUmbIwFTIWuNGm3hxXD4PmMuDn01AYRK30=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/e4296e-ec6a31@github.com>
Subject: [quicwg/base-drafts] ec6a31: 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/7I-HwFjdTt7L3-n6A1LriK6KMGc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:07:16 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: ec6a311f399ea4a1868d03066cf432872ff7e666
      https://github.com/quicwg/base-drafts/commit/ec6a311f399ea4a1868d03066cf432872ff7e666
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  2 16:07:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 73E841200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 GRosAijwTAE5 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07:22 -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 A8936120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:07:21 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:07:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108840; bh=f6CrtSBfb90JnmVZMckyOY997jSPC8IfcYuPBk16gGU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nGUCTGteVn+64wZYh7i1wy6AmZArXaTY7BHRwQ5aZCwKOO37Oy5hDayGNd+b/JeOA OShGALZaVx8ZiwlATM2RLYiZoiY9i25QLv3/LsUfAsafdRL8Qgugz1R2DY0wEuWPDj TLSSNwIpof2qABPZNjr1Vu8RwS2CRUcASvPrTTrc=
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/2794/push/3776725375@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be3a877de5_73413fc316ccd968103754"; 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/OVCuz3kd_IOuJOp_9j-zdfbTtw0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:07:25 -0000

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

@ianswett pushed 1 commit.

ec6a311f399ea4a1868d03066cf432872ff7e666  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/2794/files/e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818..ec6a311f399ea4a1868d03066cf432872ff7e666

----==_mimepart_5d1be3a877de5_73413fc316ccd968103754
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/ec6a311f399ea4a1868d03066cf432872ff7e666">ec6a311</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/2794/files/e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818..ec6a311f399ea4a1868d03066cf432872ff7e666?email_source=notifications&amp;email_token=AFTOJK3VJX4YYRLMABMYCUDP5PNSRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGUZTONI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY6UFXSUD4VDFLMSHDP5PNSRANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ36GPQXHKRKYGLGA3P5PNSRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGUZTONI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818..ec6a311f399ea4a1868d03066cf432872ff7e666?email_source=notifications\u0026email_token=AFTOJK3VJX4YYRLMABMYCUDP5PNSRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGUZTONI",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818..ec6a311f399ea4a1868d03066cf432872ff7e666?email_source=notifications\u0026email_token=AFTOJK3VJX4YYRLMABMYCUDP5PNSRA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGUZTONI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be3a877de5_73413fc316ccd968103754--


From nobody Tue Jul  2 16:07:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3E7E11200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 hcqH8cMVGT3A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07: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 CE736120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:07:48 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:07:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108867; bh=4Kc3v1+s+q08uPrLXjzhXY3GOlXjnDDAf5oirLuCYQs=; h=Date:From:To:Subject:From; b=FFyGWQt5sKZtfSpSthVtINHR0EP+cf/01n4MruTR4nVPn/CvqIKFwPpyUZlLj/WyA UCCzcoLZyAN7jqEOvoHA/HiMQ3gWj5/Qnw05KbYORDza7WQkf8MoXijLFOaMiXTb56 akE/8B28/9abgzKw7zxJ9hbN7al41i4QoYQ13hfk=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/ec6a31-e32333@github.com>
Subject: [quicwg/base-drafts] e32333: 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/KdxkBeRw9FkC4p0ZF-_qpQ2S4Go>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:07:50 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: e32333c304c4333bf3c986ae619e08532652a7d4
      https://github.com/quicwg/base-drafts/commit/e32333c304c4333bf3c986ae619e08532652a7d4
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  2 16:07:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5F61A1200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 ZnsH0R_6WzUw for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:07: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 8FE60120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:07:56 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:07:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108875; bh=ovL5wZqsDoBLs6jjr3mtWnliB91tZrPomgLSj6C/y/c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FA83y4SFy82HZ4yDYKwOK15EVQf2KDW6k8FOq7m4im5PmKFbQ/Iz6ShK8YC2GkJRT HEw3vUgcXHWMphn3vNwqwfXXC3r15Giqerdk7zzjjkKUn4bzXSwxavJxxWOr7tAVkj zY9wwHUnLwtcDrxi86yUu/5q5/lRb1QhaJYWGu8c=
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/2794/push/3776726677@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be3cb8d06f_1883ff7494cd96850599"; 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/BNIH5QkwAysCJ-nmaJMFOEdeqKE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:07:59 -0000

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

@ianswett pushed 1 commit.

e32333c304c4333bf3c986ae619e08532652a7d4  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/2794/files/ec6a311f399ea4a1868d03066cf432872ff7e666..e32333c304c4333bf3c986ae619e08532652a7d4

----==_mimepart_5d1be3cb8d06f_1883ff7494cd96850599
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/e32333c304c4333bf3c986ae619e08532652a7d4">e32333c</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/2794/files/ec6a311f399ea4a1868d03066cf432872ff7e666..e32333c304c4333bf3c986ae619e08532652a7d4?email_source=notifications&amp;email_token=AFTOJKZFWUYPTKHMIPEOFYDP5PNUXA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGY3DONY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5RUQOD5WKW7LH5AOTP5PNUXANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5BKAAP2Z5DXCNKWQDP5PNUXA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGY3DONY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/ec6a311f399ea4a1868d03066cf432872ff7e666..e32333c304c4333bf3c986ae619e08532652a7d4?email_source=notifications\u0026email_token=AFTOJKZFWUYPTKHMIPEOFYDP5PNUXA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGY3DONY",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/ec6a311f399ea4a1868d03066cf432872ff7e666..e32333c304c4333bf3c986ae619e08532652a7d4?email_source=notifications\u0026email_token=AFTOJKZFWUYPTKHMIPEOFYDP5PNUXA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZSGY3DONY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be3cb8d06f_1883ff7494cd96850599--


From nobody Tue Jul  2 16:08:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6FFD2120106 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:08:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Mx4pA9edNKj1 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:08:22 -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 F2E1A120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:08:21 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:08:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108900; bh=5klA/nymuen7+m2iOyBrmXz9XTTs20kirqaD8ON7Rqw=; h=Date:From:To:Subject:From; b=bRcNZjPgsnWmApxWknH21I3A/rkbAx7T2Du+C+BDPcn7YJjvOrm1inGLOIl4kyoAC uuw86FUhTyaOKeUSlF5x4LrFb9cKLUGdqgrslPZpu8LKT1G0/tScIZ3TUzZrXVEeYU k6ZbiEb2e+2JQteg77SJnPKTc9wqoWvMd5izbzgw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d48979-110635@github.com>
Subject: [quicwg/base-drafts] 110635: Script updating gh-pages from e4296ef4. [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/hLxIoMLhpCvAMCDsbN4PFvYiVgc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:08:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 110635ef5f3de5e284f51d710d4dcb5f0dc7fc3c
      https://github.com/quicwg/base-drafts/commit/110635ef5f3de5e284f51d710d4dcb5f0dc7fc3c
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:08:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CE4501200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:08:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8EIQqUDCY5g1 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:08: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 4E8FF120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:08:34 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:08:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108913; bh=P6oMR2TpYJtb+5yeMWZRg3j9CcOI27Wx7NqVg0/UnP8=; h=Date:From:To:Subject:From; b=zcDhP5otfzWyPShZr86YZemiCZXelLf7W+HYWNvKQ3vA3PgQ5gTRLAP/IC3BqVFq+ mMl/43K3G/svoVWScOx2OBOcNWErzVPSjVWnU9RHLJUyF5wnDPC0xPnN7y1Xkyrw25 oiqhMObHXqVEAwXpBG0u9B/4LYRqp/n+/N+g7LpY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/110635-e830c2@github.com>
Subject: [quicwg/base-drafts] e830c2: Script updating gh-pages from ec6a311f. [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/Q-hdDm2LH69Op6RM6dADZJcKrGc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:08:36 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e830c2f4cbf1ac882a994663180a911b222d92cd
      https://github.com/quicwg/base-drafts/commit/e830c2f4cbf1ac882a994663180a911b222d92cd
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:09:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2EE5A120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:09:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rsrAUcTRSMmI for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:09: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 71DB71200F6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:09:01 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:09:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108940; bh=5tEUm8J9Yp0PhpXxbjc4C3/oRpyulM4xu+t/kGQnqUc=; h=Date:From:To:Subject:From; b=cQK1+edHBXSbPy+6YNwx/kKSAWYj2XDJe0uF5Uc0bt8w6UmTlXkoM7oJku0sNKt8E HvjaQTshcqsumSorWObB9JaF+tK2XI5IQovvB/GWz+J24UyDL9beBQEOdXHWZMh2hf 1dp4SeHtR8jcg4PYfHdIqq4dokArjB0PhxRGnpXI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e830c2-c32140@github.com>
Subject: [quicwg/base-drafts] c32140: Script updating gh-pages from e32333c3. [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/Fk-GyrAw33bBlzClDt6x8J-cVUE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:09:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3214066df464165e72503880123eba53547b29b
      https://github.com/quicwg/base-drafts/commit/c3214066df464165e72503880123eba53547b29b
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:09:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 79F071200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:09:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 YomCAoIXPh2S for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:09: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 1FE45120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:09:49 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:09:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108988; bh=ycw8s10LCSCE85J4gMmXLWllZEX9vo4ZEOJUmriM5hM=; h=Date:From:To:Subject:From; b=lcjYgjFu9Rmr9lZRUvClc68V+MSX9QSL8bLjv4Hjt4bIdg+Qno2zpoWTaFVLD8vWQ VH0cV8S3FOMsnBwDHmTlS+UgKb6njz9l4VH3bcqkQMXYO06uNzdkiHsS6MGIGkqVlQ U5lXGt9QT40p4EHSx+HgTBPEF1coHUPRIhUWlHL0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/e32333-42540e@github.com>
Subject: [quicwg/base-drafts] 42540e: 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/-FGcQ-LAXbA2l6mLysRDd2Zmp6w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:09:50 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 42540ef2946775787f457841486975bf5d4d8445
      https://github.com/quicwg/base-drafts/commit/42540ef2946775787f457841486975bf5d4d8445
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 16:09:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4DBD71200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:09:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 pApjZOfXV1-d for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:09: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 9339C120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:09:56 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:09:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562108995; bh=sGLPEbqf3TyzYEcpdsau53uruDYUYhqXA6Zh2GP875Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ieq137HFFm3j6H1ktUAZxsAwoINs4owYoE1gMlYT2ayBcQ2jFTZt3Uy3Mr/6WqVKR rrDR74R//tQ6L5howWvk2eyXnpF/dkvpIN+w9yFRu15DE83/jzTQ/XM265wp/m/wC+ ySUuSOJnXHIEUYLScRPBDc7QzxLkkHk35ZXl1MEE=
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/2794/push/3776731077@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be443a95d6_1783ff7494cd9684787d"; 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/h8Q16W3T9BKoygPYwoIuBKDBSSQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:09:59 -0000

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

@ianswett pushed 1 commit.

42540ef2946775787f457841486975bf5d4d8445  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/2794/files/e32333c304c4333bf3c986ae619e08532652a7d4..42540ef2946775787f457841486975bf5d4d8445

----==_mimepart_5d1be443a95d6_1783ff7494cd9684787d
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/42540ef2946775787f457841486975bf5d4d8445">42540ef</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/2794/files/e32333c304c4333bf3c986ae619e08532652a7d4..42540ef2946775787f457841486975bf5d4d8445?email_source=notifications&amp;email_token=AFTOJK2JUFNHOH2BNBOEAETP5PN4HA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTGEYDONY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4B3IVWIU4JZPFD5BLP5PN4HANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5W6MN6PQV7NISKZTLP5PN4HA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTGEYDONY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/e32333c304c4333bf3c986ae619e08532652a7d4..42540ef2946775787f457841486975bf5d4d8445?email_source=notifications\u0026email_token=AFTOJK2JUFNHOH2BNBOEAETP5PN4HA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTGEYDONY",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/e32333c304c4333bf3c986ae619e08532652a7d4..42540ef2946775787f457841486975bf5d4d8445?email_source=notifications\u0026email_token=AFTOJK2JUFNHOH2BNBOEAETP5PN4HA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTGEYDONY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be443a95d6_1783ff7494cd9684787d--


From nobody Tue Jul  2 16:11:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 58C68120106 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:11:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yk80-HPIGfHH for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:11:17 -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 29E18120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:11:17 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:11:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562109076; bh=ktbC0LBOaoEwW9R8gAWgAjw5+ZNMa3qO8fYsvghHnLI=; h=Date:From:To:Subject:From; b=ysrPQppb8ahh+KtiNHLX1fbFEfX6qg6IR5STn5P/CGdhKrhWZ5cW9nEj64dYlXfoZ EVZ7j9IcGl8EY7HCpDdxkRP3NYtHNznKeKgGtOLWgKZF8RC33mcGDFHy2+8DFwfa2w IM08+Nm/25tUccK42gr66P2BopXN/D6GT11uAEkU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c32140-17acdf@github.com>
Subject: [quicwg/base-drafts] 17acdf: Script updating gh-pages from 42540ef2. [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/s305gbxzEzk6g4Eqmxlt7CyIGLc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:11:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 17acdfed0fafd66452fdb83bc3a24ae89ef755ce
      https://github.com/quicwg/base-drafts/commit/17acdfed0fafd66452fdb83bc3a24ae89ef755ce
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:13:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 92BE512008B for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:13:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 2T3Caiik0zUi for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:13: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 572F0120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:13:30 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:13:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562109209; bh=HoDMiB/7/fRD1/HweQ49kjCVEjlcdV/XhaO6TUbMyvM=; h=Date:From:To:Subject:From; b=UGvzyI6MTG+VGe8woBBNOspkA4fdZE+9gJKVZQBiCIUuSxWnEYUYKUOvBffkhgEHn ia5SVzUgMd+Zk3NbalnB6Y1hVUwj3gZQOBO49m4Ro2sPbDgMRlY09Xe/m+w/tzaRbM LZvVTcd/xExUYLR+bvHK9RgQPgDxzbIJ/bD9hQfg=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/42540e-200841@github.com>
Subject: [quicwg/base-drafts] 200841: 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/Fs2nhY0O4q1mwN0ImhEMDy409pE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:13:32 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 200841fa1a5175571e6a7c6c6ee01c8726bbb866
      https://github.com/quicwg/base-drafts/commit/200841fa1a5175571e6a7c6c6ee01c8726bbb866
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 16:13:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4CA00120106 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:13:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 GCFbsmzlNJxa for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:13:38 -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 B4088120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:13:37 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:13:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562109216; bh=P55RWmWxR+XEaEtGw0IgWxtWg6s10P5oJw+x3+TTQko=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Cd5YGqbWSudUK3BPc7XHTX4Wqz7XIqBoR7KQZQ7BvzkNYw2yOXwJ1HJyP50OlyEju O84W7kLMQ6gpVe5MO4iahwvBn5MYhdFS255u7Hj8W6bK/7qrXbTw8c4jyQY1docHas D+xgBRden1oEq69tysiFcKv1hA1DtL61CLVvXN1s=
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/2794/push/3776738850@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be5207908f_2ea93fafd86cd9601704a"; 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/HTquY59GDYe-iaoDTrK6Penti8U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:13:40 -0000

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

@ianswett pushed 1 commit.

200841fa1a5175571e6a7c6c6ee01c8726bbb866  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/2794/files/42540ef2946775787f457841486975bf5d4d8445..200841fa1a5175571e6a7c6c6ee01c8726bbb866

----==_mimepart_5d1be5207908f_2ea93fafd86cd9601704a
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/200841fa1a5175571e6a7c6c6ee01c8726bbb866">200841f</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/2794/files/42540ef2946775787f457841486975bf5d4d8445..200841fa1a5175571e6a7c6c6ee01c8726bbb866?email_source=notifications&amp;email_token=AFTOJKYSWRST3Z6ZRFPS66TP5POKBA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTHA4DKMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3NWDK6YTQZAKSTCMLP5POKBANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4OPAPW7D267WMJASDP5POKBA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTHA4DKMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/42540ef2946775787f457841486975bf5d4d8445..200841fa1a5175571e6a7c6c6ee01c8726bbb866?email_source=notifications\u0026email_token=AFTOJKYSWRST3Z6ZRFPS66TP5POKBA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTHA4DKMA",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/42540ef2946775787f457841486975bf5d4d8445..200841fa1a5175571e6a7c6c6ee01c8726bbb866?email_source=notifications\u0026email_token=AFTOJKYSWRST3Z6ZRFPS66TP5POKBA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TMNZTHA4DKMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1be5207908f_2ea93fafd86cd9601704a--


From nobody Tue Jul  2 16:14:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6B8C812008B for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:14:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YUf_RBKY1Fu3 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:14: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 30F91120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:14:44 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:14:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562109282; bh=F4P7McaB0wPQlqutNslb70f8cA2AZ1ABxX+FU4PrxYY=; h=Date:From:To:Subject:From; b=CH8PBdbcxW88CTWCpSYzaepYGJ3nv2s3vjL5f0I8xw+5S2rpa1DjQ/QqcjhjZU0Um r+DcT/PveYPp9xycqO5rpSMz44wA3sj4QlhEwVYafSzrcBAPUagsMtk9RyET3KO9Fq QONrc23Ish9j2VlEjDwAaAR2B7+PoRtO1r0crysY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/17acdf-87590f@github.com>
Subject: [quicwg/base-drafts] 87590f: Script updating gh-pages from 200841fa. [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/7LWHCfSB4cSst-k_mwgNF3ixo5A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:14:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 87590ff64a708af2490681bdec2180f709734171
      https://github.com/quicwg/base-drafts/commit/87590ff64a708af2490681bdec2180f709734171
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 16:14:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B2D6212008B for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:14:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MCwn0OGjm3c2 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:14: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 305D3120018 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:14:55 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:14:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562109294; bh=BZBQX71fAlvj8RMXSUiBj1bLjoUbRbAplUcAA/KCFcs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CJt0JbvWMbDer1sPlOGkL+S9btDQeKd/I35uJBZVqM5+Nfm/faSvwlB+Niig9sHfI p4P1UAtzJZUHlnmsp1RdAooWmGEPBmCE07NWUXq8/oOjMRblMJvT4X4dOGK8BhgR3p ujYQP6kBiiwhh3AgwEwLH+ctjjMHiyZSdiShtxXc=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYOLY2B4NC7P6VKNEV3FEL65EVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/257189796@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1be56e498f5_54293f87e06cd96c103662"; 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/Bg1OFQxJwzPrhvGQCLVN-xDN9cM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:14:58 -0000

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

ianswett commented on this pull request.

Thanks Jana, I accepted or integrated variations on all your suggestions except one.

> @@ -2859,13 +2859,21 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.

Agreed, removed.

> @@ -2874,6 +2882,18 @@ sender to become limited by the congestion controller (as described in
 receiver. Therefore, a sender SHOULD ensure that other frames are sent in
 addition to PADDING frames to elicit acknowledgments from the receiver.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in

Isn't the existing text more accurate(minus the sender/endpoint change)?

> @@ -2859,13 +2859,16 @@ valid frames? -->
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting

The existing text follows what TCP does as closely as I can manage, which I think is the best prior art we can follow 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/2794#pullrequestreview-257189796
----==_mimepart_5d1be56e498f5_54293f87e06cd96c103662
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<p>Thanks Jana, I accepted or integrated variations on all your suggestions except one.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299717299">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2859,13 +2859,21 @@ valid frames? --&gt;
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+An endpoint sends ACK frames to acknowledge packets it has received and
+processed. Sending ACK frames is the primary mechanism for advancing the state
+of a connection.
</pre>
<p>Agreed, removed.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299719826">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2874,6 +2882,18 @@ sender to become limited by the congestion controller (as described in
 receiver. Therefore, a sender SHOULD ensure that other frames are sent in
 addition to PADDING frames to elicit acknowledgments from the receiver.
 
+An endpoint that is only sending acknowledgements will not receive
+acknowledgments from its peer unless those acknowledgements are included in
</pre>
<p>Isn't the existing text more accurate(minus the sender/endpoint change)?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2794#discussion_r299720213">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2859,13 +2859,16 @@ valid frames? --&gt;
 
 ### Sending ACK Frames
 
-An endpoint MUST NOT send more than one packet containing only an ACK frame per
-received packet that contains frames other than ACK and PADDING frames.
-An endpoint MUST NOT send a packet containing only an ACK frame in response
-to a packet containing only ACK or PADDING frames, even if there are packet
-gaps which precede the received packet. This prevents an indefinite feedback
-loop of ACKs. The endpoint MUST however acknowledge packets containing only
-ACK or PADDING frames when sending ACK frames in response to other packets.
+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 packet containing only an ACK frame per received ACK-eliciting packet
+(one containing frames other than ACK and/or PADDING).  An endpoint MUST NOT
+send a packet containing only an ACK frame in response to a non-ACK-eliciting
</pre>
<p>The existing text follows what TCP does as closely as I can manage, which I think is the best prior art we can follow 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/2794?email_source=notifications&amp;email_token=AFTOJK4JSFTG3F6I2T3L6JLP5POO5A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KGPJA#pullrequestreview-257189796">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ7PLW2SNEEISK2ZPLP5POO5ANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5G4P23JDGT5GYE4L3P5POO5A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KGPJA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK4JSFTG3F6I2T3L6JLP5POO5A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KGPJA#pullrequestreview-257189796",
"url": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK4JSFTG3F6I2T3L6JLP5POO5A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KGPJA#pullrequestreview-257189796",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1be56e498f5_54293f87e06cd96c103662--


From nobody Tue Jul  2 16:42:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B3BA41200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:42:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i1IEiOFdRCiq for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:42: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 D890C1200E7 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:42:24 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:42:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562110943; bh=L5jCywzOe/6Q/E9yX6B18dQMv5oKEzk+8RuJuilfjew=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rYyIxwGnH/GGwUByzkL+wftXS3LFSmnTlcYX+2/8vWiAqHxvilXa+CeurKoxCJ48E 3LWiMURaUEaju+1ofABDq3je7B9C0qXmQkryPDo1W/yAW21mRcKLGWjlXcF/Wd7/VQ u6Jc4UBWPGf4lI8NvEyyDAN2k/f8oHKIk2Zg6h4g=
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/2662/push/3776797868@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bebdf8dde5_16ba3fc3a04cd968746a8"; 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/u0LrBZylljXsmFfId8NTHf4i8KQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:42:27 -0000

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

@LPardue pushed 1 commit.

47b300e4dd5b4a036b7724bba1a2950364ab186d  reduce and upshift error codes


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2662/files/3f1703d612aafe846049539694ceb912ab363c70..47b300e4dd5b4a036b7724bba1a2950364ab186d

----==_mimepart_5d1bebdf8dde5_16ba3fc3a04cd968746a8
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/47b300e4dd5b4a036b7724bba1a2950364ab186d">47b300e</a>  reduce and upshift error codes</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/2662/files/3f1703d612aafe846049539694ceb912ab363c70..47b300e4dd5b4a036b7724bba1a2950364ab186d?email_source=notifications&amp;email_token=AFTOJK6QQRQXXS6T6PALKK3P5PRV7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMNZZG44DMOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JMF2BII33WZI7SSTP5PRV7ANCNFSM4HJSXHSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IDXYCVVZZJL5WGP3P5PRV7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMNZZG44DMOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2662/files/3f1703d612aafe846049539694ceb912ab363c70..47b300e4dd5b4a036b7724bba1a2950364ab186d?email_source=notifications\u0026email_token=AFTOJK6QQRQXXS6T6PALKK3P5PRV7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMNZZG44DMOA",
"url": "https://github.com/quicwg/base-drafts/pull/2662/files/3f1703d612aafe846049539694ceb912ab363c70..47b300e4dd5b4a036b7724bba1a2950364ab186d?email_source=notifications\u0026email_token=AFTOJK6QQRQXXS6T6PALKK3P5PRV7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMNZZG44DMOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1bebdf8dde5_16ba3fc3a04cd968746a8--


From nobody Tue Jul  2 16:56:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 729CD1200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:56:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-r1GIJBIcP for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:56: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 90D381200E7 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:56:16 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:56:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562111775; bh=c+DjacUZfYYI/K6kPO71Krb8gdqtOT7H0OrO7qvTHyc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PeTcsKc6MpJLUIsYtkQbSSbPrvpxqd/e43hRDVLXGF4cXqqWfs7rzIQMnJfILjr4f boikLp9iAro45uf2RnFcrgDyqzhdauvablid8qbda9Gmaof4FttgmYxhVOCk3h5P9s tno235o3eWx4j+v5Pj2kQNeZTd+YFo/yyUQkNTQw=
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/2662/push/3776824826@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1bef1f6b080_70273fe111acd96014579a"; 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/rSWbbReVILeE5bH7QSmS5gg9L7M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:56:19 -0000

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

@LPardue pushed 1 commit.

dce2938dafb00dc1bf54b3d9fe556a6d0eb3f739  Apply Kazuho's suggested error ordering


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2662/files/47b300e4dd5b4a036b7724bba1a2950364ab186d..dce2938dafb00dc1bf54b3d9fe556a6d0eb3f739

----==_mimepart_5d1bef1f6b080_70273fe111acd96014579a
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/dce2938dafb00dc1bf54b3d9fe556a6d0eb3f739">dce2938</a>  Apply Kazuho&#39;s suggested error ordering</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/2662/files/47b300e4dd5b4a036b7724bba1a2950364ab186d..dce2938dafb00dc1bf54b3d9fe556a6d0eb3f739?email_source=notifications&amp;email_token=AFTOJK2EPYRBZCRLGFH7PATP5PTJ7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMOBSGQ4DENQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3F4GQBBVLBKMSOGC3P5PTJ7ANCNFSM4HJSXHSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2L4XOYERRULDEDTPTP5PTJ7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMOBSGQ4DENQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2662/files/47b300e4dd5b4a036b7724bba1a2950364ab186d..dce2938dafb00dc1bf54b3d9fe556a6d0eb3f739?email_source=notifications\u0026email_token=AFTOJK2EPYRBZCRLGFH7PATP5PTJ7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMOBSGQ4DENQ",
"url": "https://github.com/quicwg/base-drafts/pull/2662/files/47b300e4dd5b4a036b7724bba1a2950364ab186d..dce2938dafb00dc1bf54b3d9fe556a6d0eb3f739?email_source=notifications\u0026email_token=AFTOJK2EPYRBZCRLGFH7PATP5PTJ7A5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TIOJZG4YTCN2QOVZWQIZTG43TMOBSGQ4DENQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1bef1f6b080_70273fe111acd96014579a--


From nobody Tue Jul  2 16:59:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F3AA3120044 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:59:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D8MOSmmhu9fr for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 16:59:27 -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 6B87312008B for <quic-issues@ietf.org>; Tue,  2 Jul 2019 16:59:27 -0700 (PDT)
Date: Tue, 02 Jul 2019 16:59:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562111966; bh=fGMUTzsNjJVrL4AfLDF1i2ka3JeW6lEbZC6GfpB4Pq0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QNO+Xp22VOwYkVp4fLrqSj5m/O7MsZt3NfoBUhHrqZvBIUVeZkCzOh4JgRedH2Dl6 Rf9+DAbAV1lcfPGSbEsZBPF0A5tWk+RKEOdpB+XIQyuM3DbmwTMYsNxqzBwcsxP/6S IQTRYHk+xQPIdXc0dE+HACDgpObvpvEUfBy4s29w=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6I7F4C5SPESI4G7TN3FERF5EVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507886701@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1befde6397f_11073fc1a66cd96c17415"; 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/GMiVqyjmc7Xdr6xcqcHyFVONp5o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 02 Jul 2019 23:59:29 -0000

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

I added two separate commits to shift the error code space to start from 0x100 (plays well with QPACK codes starting 0x200), and to apply @kazuho's proposed ordering. I didn't add any wordsmithing to explain this order as it didn't seem crucial.

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

<p>I added two separate commits to shift the error code space to start from 0x100 (plays well with QPACK codes starting 0x200), and to apply <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>'s proposed ordering. I didn't add any wordsmithing to explain this order as it didn't seem crucial.</p>

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


From nobody Tue Jul  2 18:16:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9A5C61200E9 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:16:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tsRsVDx3mNnb for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:16: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 E363C1200DE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 18:16:49 -0700 (PDT)
Date: Tue, 02 Jul 2019 18:16:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562116608; bh=Z3O+SnStws9msE+gVoBp/LiSEYHkU0iSWbmp5i5q1c0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wUu7TDFTaCIWvLOt2G6Bnpvhush0DCOOmZUo2b2JEM6mSoJbSI+ut0frVNSPKb6LQ 4K5ACGP+5YARuOUs+4xQI7SoHCFjlsu3ZWqu0bjm84pAGzKHGTuJCKXyY3nSikIjpS jURlSY2zbd4cNRc3DKEor1ojR5c+qlxU2uDXROqU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY33RY4F4WPFI65BON3FE2IBEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/507900254@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c02003e8d_3e173fe8728cd968390436"; 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/CVVD8ko--PK_eZnabl9u34RoOXE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 01:16:52 -0000

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

My point is that the packet *is* invalid, if it is sent to a client that you know uses longer connection IDs.  The middlebox can then *reliably* identify the packet as being a stateless reset.  All it needs to know is that that client never uses shorter connection IDs.  That's not difficult; we don't assume that this sort of information is a secret.

-- 
You are receiving 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/2869#issuecomment-507900254
----==_mimepart_5d1c02003e8d_3e173fe8728cd968390436
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My point is that the packet <em>is</em> invalid, if it is sent to a client that you know uses longer connection IDs.  The middlebox can then <em>reliably</em> identify the packet as being a stateless reset.  All it needs to know is that that client never uses shorter connection IDs.  That's not difficult; we don't assume that this sort of information is a secret.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK5O6FMXHUEFA4UNYEDP5P4YBA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZC7CXQ#issuecomment-507900254">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK25FPJW7X6IZDVRZQ3P5P4YBANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGXSOQ64RX4UYIUW3P5P4YBA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZC7CXQ.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK5O6FMXHUEFA4UNYEDP5P4YBA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZC7CXQ#issuecomment-507900254",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK5O6FMXHUEFA4UNYEDP5P4YBA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZC7CXQ#issuecomment-507900254",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c02003e8d_3e173fe8728cd968390436--


From nobody Tue Jul  2 18:49:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 67E1B1200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:49:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 CryrDIJgiCrU for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:49: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 DA1111200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 18:49:23 -0700 (PDT)
Date: Tue, 02 Jul 2019 18:49:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562118563; bh=YRc3LlZXCXtK+Zo7dtYb+uENzJsEY2sqLnCmRdYJZJE=; h=Date:From:To:Subject:From; b=z3x+TjnV9lmL1h/+dVfbycgUpJyQMTwXJ96E6sxvqgp1ZA59gdBGqA/hqtPYIWhN8 C6eWDPcORBGuR9Y+jhK44NcHiv/47DvshEMJAv5zF3NE3Aa6eIuqir75tgxKHNxFIy gQ4iIFD+IgbNqxCPWau+ZLxwxhxvh1q2WkQ95KHQ=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/200841-6c786b@github.com>
Subject: [quicwg/base-drafts] 6c786b: 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/RDAb8K4U8OkaW0WbQ3-ceNr30AA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 01:49:25 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6c786bdf032d81c8bf8169d77e4c647b1c595b76
      https://github.com/quicwg/base-drafts/commit/6c786bdf032d81c8bf8169d77e4c647b1c595b76
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 18:49:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 10B7C1200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:49:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 wpshS0QO1ai4 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:49: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 3985E1200DE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 18:49:32 -0700 (PDT)
Date: Tue, 02 Jul 2019 18:49:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562118570; bh=Aax7scETrcWJl/skR3x3tQhJhpHE89cS3xh1Rk6nML4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KEmDaGEqKUkLHix0r4mtO3waqD5TEuDkVE7kQ+fGCea/tMd3+hEaCWtMzAsqjOEZ/ V0P3HaVnXffFNr+zZF5J99DaEQj9rlyXRLdRx1AIj+x94pPgB26Hfv8Q6p7edHicO2 5/Fwws9QOavJN5v/bm5OjCKYChot/FA1sXpdPskE=
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/2794/push/3777045459@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c09aab2440_6333fbfffacd95c1492fa"; 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/1pYXTPISvOY16ldAiM57p1h_1y8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 01:49:34 -0000

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

@ianswett pushed 1 commit.

6c786bdf032d81c8bf8169d77e4c647b1c595b76  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/2794/files/200841fa1a5175571e6a7c6c6ee01c8726bbb866..6c786bdf032d81c8bf8169d77e4c647b1c595b76

----==_mimepart_5d1c09aab2440_6333fbfffacd95c1492fa
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/6c786bdf032d81c8bf8169d77e4c647b1c595b76">6c786bd</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/2794/files/200841fa1a5175571e6a7c6c6ee01c8726bbb866..6c786bdf032d81c8bf8169d77e4c647b1c595b76?email_source=notifications&amp;email_token=AFTOJK6U4RTV6FMJKCSX3CTP5QASVA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMBUGU2DKOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2N25J76XGMVP27O4LP5QASVANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5H7A7453BQGVRIYZLP5QASVA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMBUGU2DKOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/200841fa1a5175571e6a7c6c6ee01c8726bbb866..6c786bdf032d81c8bf8169d77e4c647b1c595b76?email_source=notifications\u0026email_token=AFTOJK6U4RTV6FMJKCSX3CTP5QASVA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMBUGU2DKOI",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/200841fa1a5175571e6a7c6c6ee01c8726bbb866..6c786bdf032d81c8bf8169d77e4c647b1c595b76?email_source=notifications\u0026email_token=AFTOJK6U4RTV6FMJKCSX3CTP5QASVA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMBUGU2DKOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c09aab2440_6333fbfffacd95c1492fa--


From nobody Tue Jul  2 18:50:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 554F01200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:50:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id okF5Zce_fMyF for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:50: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 188481200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 18:50:47 -0700 (PDT)
Date: Tue, 02 Jul 2019 18:50:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562118645; bh=w5WsGzWIRb7SMp9nGPKyk/UPM7+r60GpLJ5u+WFZm6Y=; h=Date:From:To:Subject:From; b=lw07j6Mrhi5X77dxRId+YQ+VBDRwMyxbwBscl1gwxNbrBH0ZcDDA4QzMt8jSVSRG3 2KYQfVwACy3MCY8Zm/6AXmJaxq85zfiQWEtHIQc6efRvwaorrxmVFEI9AQhvXUh2xW KASPmdo/CPa4tuN33CvEnpk5xkNzXvbCYSzt5l/0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/87590f-3a9f43@github.com>
Subject: [quicwg/base-drafts] 3a9f43: Script updating gh-pages from 6c786bdf. [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/BIUtQ_k38bpregYkRXwJi7QCDyE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 01:50:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3a9f4338d6710d11c5eecd91e0fd485ac9a3f0dd
      https://github.com/quicwg/base-drafts/commit/3a9f4338d6710d11c5eecd91e0fd485ac9a3f0dd
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

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

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



From nobody Tue Jul  2 18:58:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 44B8F1200F6 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:58:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, 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 BBGlLo9fqCfz for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 18:58:44 -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 5A3C71200DE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 18:58:42 -0700 (PDT)
Date: Tue, 02 Jul 2019 18:58:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562119120; bh=A14v46jy5TC29577c4HAyAfnaos+2A+dRNpDi0dUMUU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hGGQ6nTUps4Bvnu6wsxKMiPonL8dmFZon4SjjQ64AGeoB9Wgt1owAL+ssXgv7+wkl rBYCatuZpErgUjjXtYSYmUaxZa5SXbkm3Y95Jqv0K8AMr/7b3/avAX7yICmnTUPFk6 jsjf1P/goS0ebkitzmORVpvhoK3WagW1InUYisNs=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TO3XSAWCDKUVLWI53FE7FBEVBMPHAECKOSU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/6c786bdf032d81c8bf8169d77e4c647b1c595b76/34164373@github.com>
In-Reply-To: <quicwg/base-drafts/commit/6c786bdf032d81c8bf8169d77e4c647b1c595b76@github.com>
References: <quicwg/base-drafts/commit/6c786bdf032d81c8bf8169d77e4c647b1c595b76@github.com>
Subject: Re: [quicwg/base-drafts] Update draft-ietf-quic-transport.md (6c786bd)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c0bd0c0a38_8ed3f8fbcacd95c39576"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MSTbhhD7IPt_R6CbuCLUqgAgyBg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 01:58:45 -0000

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

s/other/another/

-- 
You are receiving 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/6c786bdf032d81c8bf8169d77e4c647b1c595b76#commitcomment-34164373
----==_mimepart_5d1c0bd0c0a38_8ed3f8fbcacd95c39576
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>s/other/another/</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/6c786bdf032d81c8bf8169d77e4c647b1c595b76?email_source=notifications&amp;email_token=AFTOJK6XK24DQTWBUJSAPBLP5QBVBA5CNFSM4H5BFQOKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBASTUV#commitcomment-34164373">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6G4F6ORDN4IWRK4RLP5QBVBANCNFSM4H5BFQOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGMWUX4E52YFAK6QDP5QBVBA5CNFSM4H5BFQOKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBASTUV.gif" height="1" width="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/6c786bdf032d81c8bf8169d77e4c647b1c595b76?email_source=notifications\u0026email_token=AFTOJK6XK24DQTWBUJSAPBLP5QBVBA5CNFSM4H5BFQOKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBASTUV#commitcomment-34164373",
"url": "https://github.com/quicwg/base-drafts/commit/6c786bdf032d81c8bf8169d77e4c647b1c595b76?email_source=notifications\u0026email_token=AFTOJK6XK24DQTWBUJSAPBLP5QBVBA5CNFSM4H5BFQOKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBASTUV#commitcomment-34164373",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c0bd0c0a38_8ed3f8fbcacd95c39576--


From nobody Tue Jul  2 19:07:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A1C491200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:07:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fDDbfKS_OW1e for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:07:19 -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 0C0071200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:07:19 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:07:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562119637; bh=kSLaiUO92ERPD05d9u1y2xW9oe3gC0iR+hO59Wq1HGM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vEIUSdWMpk46Dp5jHqUAtePvj4sNpoUDTkwZBJT09yrEgAp2fOSZuXWx/gRHMkHjf fg6uguZoQHKozo/TQXxm6d6r/dRe9UAqPKIiMUrec3wB9t20/KP716tby9F8CpeOZ8 9vnkCHoxp4dYDrQfEsUZpxEG7fK1YKGedqzl+zF0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PYI5HLQD72JS3EVN3FFAFLEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/507909237@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c0dd552ba5_3c963ff6750cd964142894"; 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/3E_ojQsWH5vTysn4fF4i7D4-giU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:07:21 -0000

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

The only rule is that the CID can't become 0 length, so why is it invalid?  If the middlebox can't reliably identify the packet as invalid, it's all a matter of statistics and how much of an anomaly it is.  Sure, maybe it's an anomaly for CIDs to go from 18 to 1, but I don't think that's the most likely anomaly on the internet(see below).

I think the existing rule is actively harmful in multiple ways, one of which is a possible escalation of the minimum client packet size mentioned above.

The more problematic issue is that the goal is to have stateless reset not stick out and be clearly identifiable.  If so, we want the widest selection of sizes possible.  Given servers are going to want to send stateless resets smaller than the client's packet, a fixed size is going to stick out and the larger the minimum fixed size, the more it's going to stick out.  In particular, 40 is enough larger than the typical 'small' server to client packet(ie: ACK) that it's relatively unlikely on a typical connection.  If 90%+ of 40 byte payloads are stateless rejects, then we have failed at our goal and I think that's where we're at today.

To come back to my previous suggestion, why can't the client enforce 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/2869#issuecomment-507909237
----==_mimepart_5d1c0dd552ba5_3c963ff6750cd964142894
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The only rule is that the CID can't become 0 length, so why is it invalid?  If the middlebox can't reliably identify the packet as invalid, it's all a matter of statistics and how much of an anomaly it is.  Sure, maybe it's an anomaly for CIDs to go from 18 to 1, but I don't think that's the most likely anomaly on the internet(see below).</p>
<p>I think the existing rule is actively harmful in multiple ways, one of which is a possible escalation of the minimum client packet size mentioned above.</p>
<p>The more problematic issue is that the goal is to have stateless reset not stick out and be clearly identifiable.  If so, we want the widest selection of sizes possible.  Given servers are going to want to send stateless resets smaller than the client's packet, a fixed size is going to stick out and the larger the minimum fixed size, the more it's going to stick out.  In particular, 40 is enough larger than the typical 'small' server to client packet(ie: ACK) that it's relatively unlikely on a typical connection.  If 90%+ of 40 byte payloads are stateless rejects, then we have failed at our goal and I think that's where we're at today.</p>
<p>To come back to my previous suggestion, why can't the client enforce 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/2869?email_source=notifications&amp;email_token=AFTOJKZDLDSVCOINO3BVTXLP5QCVLA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDBI5I#issuecomment-507909237">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JHUDVEHL4ES664PLP5QCVLANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK654NL5SQQMPXJNDXLP5QCVLA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDBI5I.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJKZDLDSVCOINO3BVTXLP5QCVLA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDBI5I#issuecomment-507909237",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJKZDLDSVCOINO3BVTXLP5QCVLA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDBI5I#issuecomment-507909237",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c0dd552ba5_3c963ff6750cd964142894--


From nobody Tue Jul  2 19:13:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 17CB51200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 GYkpjQ3WFXWS for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13:00 -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 702A8120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:13:00 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:12:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562119978; bh=U+egB0bYb9mMay2HA2KIuTMmF1QKdTY0BurZK6WQHKE=; h=Date:From:To:Subject:From; b=eHwRZ2VWRSdjD3HFv4UzUX4kkGsDiEFK7h6RwkDT1nHBvHmD85eWY4w5TkLDClbq5 XXKAgrcwztYY0S0WrkWIlcF8nmeNq3vp3+KuriPSIcyj1lsp0QsKAj3PG0D40fqNNI 0mh4k54OEdGklrVzVwxCU5FxZoYiVIrB1otCxJ8s=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/fa3b54-ab199a@github.com>
Subject: [quicwg/base-drafts] ab199a: 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/Kmx7ylpaSlxXu0ebmIaNgnWqI2w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:13:02 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: ab199a4f27c55bfa67d604644d68ecbd4a04fea3
      https://github.com/quicwg/base-drafts/commit/ab199a4f27c55bfa67d604644d68ecbd4a04fea3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Matt Olson <maolson@microsoft.com>



From nobody Tue Jul  2 19:13:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 653CF120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 EYO0eglH2lxA for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13: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 2770D1200DE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:13:08 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:13:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562119986; bh=Q+FkGTwWmcRVe1RneucbMLenvP3I9L4vHwxC2A4phIM=; h=Date:From:To:Subject:From; b=LHebAFSsTIPwrozBAb4eYUZVvFlCg1fkQSTUKRQg1G1TGXn28ok8czqN5jnBK5KEZ E/HscWQMXX5u6+zkQLsGnj66RHbornOB3/pLc2Hg8JJL82lttDzcpWbq8bNfzC60M8 8iOztSUavJM/kkWdIm0TaVLFdo9RFC4XnuH48e7k=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/ab199a-f4a791@github.com>
Subject: [quicwg/base-drafts] f4a791: 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/mHZAMhP-Y_CZ5VmxMHmtXEZCeeE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:13:11 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: f4a79150d02c50a31686c97fb5d3690c9ea1b309
      https://github.com/quicwg/base-drafts/commit/f4a79150d02c50a31686c97fb5d3690c9ea1b309
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Matt Olson <maolson@microsoft.com>



From nobody Tue Jul  2 19:13:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 55FB5120198 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 7gEd2Nf4rr9P for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13:10 -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 6536512014B for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:13:08 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:13:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562119986; bh=iqcAvj+S+ift8XhSrmiaRCq70jHD/j5GHi/paQPGCZE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SN0i1qzDq2OyO72gh7eveWrzFP/fuqZtlcdXbBrOD8+LSWN5W7wFljMsiRJ2b12bA PDzYjss/IzKuEdddoV5c1/zkM3M97pfTExGIoinzWVvjlChOKU4Amzv6AG3BBZAo4J qe58+nCCKZ6eFe76eS3fC7XR7glkntFeeGESUStM=
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/2806/push/3777097291@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c0f329903d_18663f85b96cd968110743"; 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/HjNu1VY0lsXdJVRgNhZvk1Z7NKw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:13:14 -0000

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

@ianswett pushed 1 commit.

ab199a4f27c55bfa67d604644d68ecbd4a04fea3  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/2806/files/fa3b5497e8019ce105433a216867dd098c365ad7..ab199a4f27c55bfa67d604644d68ecbd4a04fea3

----==_mimepart_5d1c0f329903d_18663f85b96cd968110743
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/ab199a4f27c55bfa67d604644d68ecbd4a04fea3">ab199a4</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/2806/files/fa3b5497e8019ce105433a216867dd098c365ad7..ab199a4f27c55bfa67d604644d68ecbd4a04fea3?email_source=notifications&amp;email_token=AFTOJKZ5WLHD4XK2M3LIIGTP5QDLFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG4ZDSMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY44RYOAJHSW7XHTWDP5QDLFANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6BWXN263QB5F7KFLP5QDLFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG4ZDSMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/fa3b5497e8019ce105433a216867dd098c365ad7..ab199a4f27c55bfa67d604644d68ecbd4a04fea3?email_source=notifications\u0026email_token=AFTOJKZ5WLHD4XK2M3LIIGTP5QDLFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG4ZDSMI",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/fa3b5497e8019ce105433a216867dd098c365ad7..ab199a4f27c55bfa67d604644d68ecbd4a04fea3?email_source=notifications\u0026email_token=AFTOJKZ5WLHD4XK2M3LIIGTP5QDLFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG4ZDSMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c0f329903d_18663f85b96cd968110743--


From nobody Tue Jul  2 19:13:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 85B7B1200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 FDJdZ7LTYGf2 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:13: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 D47A5120177 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:13:16 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:13:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562119995; bh=GL1vEvXdIhY/Jk/nYPvO5ruX/udcJBdMGd94g4dWnTU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QBunfwYJ/iHNZqwIV1IL7dMOlVqiBmvKyv1TOk4LpSmUHPQ4jnTIGcYWxaQMR2ViH y/6Qd5dOu02DfbEN4koYeiJKveC0CC+MouQZh0E2i+ZhZDFX3SLZBRxoUSb2rcybu0 OKEUSvIbnhNvQ07KhFLiimUgHZEwU0ZhZzrud07Y=
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/2806/push/3777097542@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c0f3b193ad_119b3f97eeecd96413667f"; 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/zwJzPiJaIuGkb2wNfabToi-3CmA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:13:18 -0000

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

@ianswett pushed 1 commit.

f4a79150d02c50a31686c97fb5d3690c9ea1b309  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/2806/files/ab199a4f27c55bfa67d604644d68ecbd4a04fea3..f4a79150d02c50a31686c97fb5d3690c9ea1b309

----==_mimepart_5d1c0f3b193ad_119b3f97eeecd96413667f
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/f4a79150d02c50a31686c97fb5d3690c9ea1b309">f4a7915</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/2806/files/ab199a4f27c55bfa67d604644d68ecbd4a04fea3..f4a79150d02c50a31686c97fb5d3690c9ea1b309?email_source=notifications&amp;email_token=AFTOJK36SHHUGDXYP4TPTKLP5QDLXA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG42TIMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ZUAYWBKTBYLBGHJDP5QDLXANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NLHX63NSJJL3OLALP5QDLXA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG42TIMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/ab199a4f27c55bfa67d604644d68ecbd4a04fea3..f4a79150d02c50a31686c97fb5d3690c9ea1b309?email_source=notifications\u0026email_token=AFTOJK36SHHUGDXYP4TPTKLP5QDLXA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG42TIMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/ab199a4f27c55bfa67d604644d68ecbd4a04fea3..f4a79150d02c50a31686c97fb5d3690c9ea1b309?email_source=notifications\u0026email_token=AFTOJK36SHHUGDXYP4TPTKLP5QDLXA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMBZG42TIMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c0f3b193ad_119b3f97eeecd96413667f--


From nobody Tue Jul  2 19:14:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A29C21200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:14:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Pn6i4FERTeee for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:14: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 E88EA1200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:14:15 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:14:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120054; bh=rj8HMPB9ScvMbnEgAY6TOcpXbp6X8l2K3HXII7Pi8w8=; h=Date:From:To:Subject:From; b=dkON1m9lybbGshoEkBMG2RRCaR24aSIt5JrkIoIv9Z4iJhoH2DAVn6qYF4ZWtfC9/ 0jQsWSYUkKEJ+F8Bs1wS0WMy9b0tmSyMy2IDYxWnQY4VREe6aHSApmK0VcDftNB81p OA20fF5DRR/n0jAfukOTfOAsbfkbq83CCWI5Z75Y=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3a9f43-f22218@github.com>
Subject: [quicwg/base-drafts] f22218: Script updating gh-pages from f4a79150. [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/HS-CPIl--geuzUnfoW3N8Y3SlFI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:14:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f222187b888164b6161c5235ba9fd0958da5c317
      https://github.com/quicwg/base-drafts/commit/f222187b888164b6161c5235ba9fd0958da5c317
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

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

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



From nobody Tue Jul  2 19:14:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E02F61200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:14:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SkTjelOq62Nl for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:14: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 352CB1200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:14:33 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:14:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120071; bh=mBm0wtMdCekPnd8DIeEo9U3xhfWAFuMB6LOSDIEf4N4=; h=Date:From:To:Subject:From; b=abcQuhP0vrNB4b9jpOqgRK4wvB+wgCmDHopekmJjYq8mZyIt2Bytscrg62lUDTdg7 tAFRtix1SnxKgZtaOXKBJ5kbqx2Laduemu1ho4AjgmyQzIceVEaswROkh+AvDY8t28 DhO3TznZxaNU4CjdbQhfHrTDOuScX9zOktO8AMFg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f22218-bf8078@github.com>
Subject: [quicwg/base-drafts] bf8078: Script updating gh-pages from ab199a4f. [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/ndMfS_LOjOI-s5Y5N9-QnEL3oN8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:14:35 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bf8078d11b86753eca98d6d93e634e36fa9730f4
      https://github.com/quicwg/base-drafts/commit/bf8078d11b86753eca98d6d93e634e36fa9730f4
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  2 19:16:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CA2341200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:16:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 EihfpM-gEoBS for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:16:25 -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 D71FD1200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:16:24 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:16:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120183; bh=mPE1qZzbkKUXZevZdCGAIp6TZsNf0e/UQiQqwNf6Ygk=; h=Date:From:To:Subject:From; b=LObWDySXdxurnDG2+u3hubfUudGgEcW9GBMfI8kdD1+XFIDTi0+L/V1JZ4ZTPXcd/ CEGJkay9P0lWLYzmMLqkex/cGMFNiV/XiJjTN927CRLWSaKRF2lcCdo9Nzu9Ysr0d0 kesTLaTqSJIC1yxV77+Rv1a9L6BAEE2BZ2NqfPWc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/f4a791-7ce89c@github.com>
Subject: [quicwg/base-drafts] 7ce89c: 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/uMxDCfRteJ-bNrmRW2OF4KCluGY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:16:27 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7ce89c2709a4c26d086ee8e71bcd4684b0f49280
      https://github.com/quicwg/base-drafts/commit/7ce89c2709a4c26d086ee8e71bcd4684b0f49280
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 19:16:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F07CC1200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:16:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 i5o-4yyxZtzI for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:16:35 -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 5CC471200DE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:16:35 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:16:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120193; bh=mnDQXPBr7dPqWojA2LBEGuRf7t3nkGItPECb1BobmH8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=j4G5PDQaaAfIXWoKMi7wfK9CFkXxf6Nf8ynp8LcS1n4U5m3PZxKGgci2+PdcWDPSZ q8UubWMMpvUG9lg9vz0QXE4kRTsiE81PI2wyb4Aw4VKGIXbLC8aLPeuNKRkZz18OZk bajstTQzdtvBNht0Jh8ZWTTi/fDeB81gGu6LKIGE=
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/2806/push/3777105023@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c1001cfefb_29e73fedbcacd96c91891"; 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/WpIMwQaPGdF3nSHcDkIU25qsS8Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:16:37 -0000

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

@ianswett pushed 1 commit.

7ce89c2709a4c26d086ee8e71bcd4684b0f49280  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/2806/files/f4a79150d02c50a31686c97fb5d3690c9ea1b309..7ce89c2709a4c26d086ee8e71bcd4684b0f49280

----==_mimepart_5d1c1001cfefb_29e73fedbcacd96c91891
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/7ce89c2709a4c26d086ee8e71bcd4684b0f49280">7ce89c2</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/2806/files/f4a79150d02c50a31686c97fb5d3690c9ea1b309..7ce89c2709a4c26d086ee8e71bcd4684b0f49280?email_source=notifications&amp;email_token=AFTOJKZVXXKZL7PA76CPNODP5QDYDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJQGUYDEMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5G4OQAI2MSL5VILIDP5QDYDANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK66TXG4QEZBQWP7HPLP5QDYDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJQGUYDEMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/f4a79150d02c50a31686c97fb5d3690c9ea1b309..7ce89c2709a4c26d086ee8e71bcd4684b0f49280?email_source=notifications\u0026email_token=AFTOJKZVXXKZL7PA76CPNODP5QDYDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJQGUYDEMY",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/f4a79150d02c50a31686c97fb5d3690c9ea1b309..7ce89c2709a4c26d086ee8e71bcd4684b0f49280?email_source=notifications\u0026email_token=AFTOJKZVXXKZL7PA76CPNODP5QDYDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJQGUYDEMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c1001cfefb_29e73fedbcacd96c91891--


From nobody Tue Jul  2 19:17:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6FE621200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:17:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ADrEjWvM0Y8g for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:17: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 1E0C61200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:17:32 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:17:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120250; bh=yiv9wXK/kzdlDmh9ZRHDDo86fG1iiCkYP24y2PVICEU=; h=Date:From:To:Subject:From; b=F419CeT7s/pXkC9/Y9cVLq1VsQEV5duYFhAzi/rAznLK+sZKvOQbIg5MvxGm8Yfws i2jRzJEnjEIp6fMA7pXd67pZAbVy1Ixia8r905MmmTPenPMT9MC+9aF+pv4DvM7SLi eUTsYgGUWNQ2jRnNjWVG1kGaHM1rwChN41/l1yNU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bf8078-9a5c05@github.com>
Subject: [quicwg/base-drafts] 9a5c05: Script updating gh-pages from 7ce89c27. [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/ZJdDEZ5q5Jn49tg5PXkEk8AwBqc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:17:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9a5c056b323f97a2750f7bfccebaa432a7cd98eb
      https://github.com/quicwg/base-drafts/commit/9a5c056b323f97a2750f7bfccebaa432a7cd98eb
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  2 19:26:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 675591200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:26:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 PWOAdyUuSPyG for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:26:34 -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 071B71200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:26:33 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:26:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120793; bh=oI11PIqSp9+GrK6IDN3hF5oFtkV9sWX28d370gtva4Y=; h=Date:From:To:Subject:From; b=c4jtIpTCGQfFIAlicRNBx3U6896jW/aN/Du7dN2ZK4fvYqrQA5QPiKYDL67r3kzGS 5Neyru1UZ4r0ITWbHUhs6dO2U/MewTTHbMJn6ojgu+XGBahTkGM78WZ3O2ps3/6wAh YK2owKLFeni8k7v9riUeu3jA8FwI2HxR7anW3WMk=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/7ce89c-3a1063@github.com>
Subject: [quicwg/base-drafts] 3a1063: Remove crypto timer from the 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/sAWj6-hUEqtd8M9JD2gRP3neP-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, 03 Jul 2019 02:26:35 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3a10638950defc8a0030ef53f1f06d270b6d95a3
      https://github.com/quicwg/base-drafts/commit/3a10638950defc8a0030ef53f1f06d270b6d95a3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

  Log Message:
  -----------
  Remove crypto timer from the pseudocode



From nobody Tue Jul  2 19:26:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D9ADC1200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:26:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uyZk12GzUbtz for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:26:42 -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 057661200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:26:42 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:26:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120800; bh=OOpwLpsoGz7ZtfPn11jjtCfmhWLaEVZZgoXQnJfE+Y4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OHC3SoCOE2zUtdjpQWtECSGcFzL036MtjssiL1B6r+5BPY5MJBoLctA2N+Gt30Upv N/wFxbsFqznLpc55qVmcRDHJlEJTSBAjKb7m4RM3bY9Mu1ldhGZaehGbC043WWEsUs sAq2cyYCutMkG7eQuezqsR2scPlFBjh95A7jMfYs=
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/2806/push/3777128639@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c126052b2d_25363f90466cd96c9808d"; 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/3EHrVSCjLExXmjqeUW5Pfkql-og>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:26:44 -0000

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

@ianswett pushed 1 commit.

3a10638950defc8a0030ef53f1f06d270b6d95a3  Remove crypto timer from the pseudocode


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2806/files/7ce89c2709a4c26d086ee8e71bcd4684b0f49280..3a10638950defc8a0030ef53f1f06d270b6d95a3

----==_mimepart_5d1c126052b2d_25363f90466cd96c9808d
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/3a10638950defc8a0030ef53f1f06d270b6d95a3">3a10638</a>  Remove crypto timer from the 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/2806/files/7ce89c2709a4c26d086ee8e71bcd4684b0f49280..3a10638950defc8a0030ef53f1f06d270b6d95a3?email_source=notifications&amp;email_token=AFTOJK7APVPKYYVNIMDHOFTP5QE6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJSHA3DGOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4PMAYPFEUOWVF2JKLP5QE6BANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5PBAO5JVMAYBUOD7TP5QE6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJSHA3DGOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/7ce89c2709a4c26d086ee8e71bcd4684b0f49280..3a10638950defc8a0030ef53f1f06d270b6d95a3?email_source=notifications\u0026email_token=AFTOJK7APVPKYYVNIMDHOFTP5QE6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJSHA3DGOI",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/7ce89c2709a4c26d086ee8e71bcd4684b0f49280..3a10638950defc8a0030ef53f1f06d270b6d95a3?email_source=notifications\u0026email_token=AFTOJK7APVPKYYVNIMDHOFTP5QE6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJSHA3DGOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c126052b2d_25363f90466cd96c9808d--


From nobody Tue Jul  2 19:29:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EF0A01200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:29:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kgNuLS8Q6L-C for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:29:03 -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 4C6A01200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:29:03 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:29:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562120941; bh=JSOmikInkGqPsj1CEubFT9FEZe2Z8lu8iAVbfJw7am4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=11WyfRfcKiDrWn382iow3TkmafcglRnV6311uf9n/AgGTJFCvCG4nt2Gz4rIW0y8C 38HpdiJJ77QjX4xIw883p0SQtbErH/qGL5TDYol2x/LFSJ7YQOV1K0S50t1sdxFgBt 63Mh4LLXIpONuYtwuw3hapy38hM/Bsd/vOK/A8Mo=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UP6FO5S4R22MPSUV3FFCW3EVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c507913166@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c12edce176_75553fbb4cacd96442066"; 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/KnncPZL1HsrhRTMnVxSWgVcaI0k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:29:05 -0000

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

Thank you for the changes.

FWIW, my point was that trying to use the same codepoints for the some errors does not make sense  (I think [@ianswett's comment](https://github.com/quicwg/base-drafts/pull/2662#issuecomment-507713784) captures my feeling). I did not mean that we need to avoid using different block of codepoints than that of HTTP/2.

That said, I would not oppose from starting at 0x100.

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

<p>Thank you for the changes.</p>
<p>FWIW, my point was that trying to use the same codepoints for the some errors does not make sense  (I think <a href="https://github.com/quicwg/base-drafts/pull/2662#issuecomment-507713784" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2662/hovercard">@ianswett's comment</a> captures my feeling). I did not mean that we need to avoid using different block of codepoints than that of HTTP/2.</p>
<p>That said, I would not oppose from starting at 0x100.</p>

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


From nobody Tue Jul  2 19:41:16 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DB4061200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:41:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 ZjjW2ezr0rNb for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:41: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 687FC120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:41:13 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:41:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121671; bh=gC9fP2HXBGhH3Q4fFOKAOCdZ9rbUmP2WPk2TkLTwQe4=; h=Date:From:To:Subject:From; b=aUuZduxWe1TpOt+RR1yXEkUYNqZaB8pfseV1RRscyd0Mq8DPhMfLSomVSmahfI+Je +BrCwwh3lw5O88dxYt9axcSkaqR5s7pVvWa832JGBua06tbfgLK/0pyDszeKcewjf+ mb1qa6IDD5MojmApM81eJirZF6PpUhG+vBNO6ZLA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/3a1063-50d6ff@github.com>
Subject: [quicwg/base-drafts] 50d6ff: 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/jsNVhXby6nTLztIgqz2N7RIvaKc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:41:15 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 50d6fffc5902cdb2fcb237d1c1690559dc7c3a54
      https://github.com/quicwg/base-drafts/commit/50d6fffc5902cdb2fcb237d1c1690559dc7c3a54
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 19:41:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D3CD71200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:41:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 TKRpjhKRwpUy for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:41: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 67936120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:41:20 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:41:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121678; bh=1KlrTP+SAccnASNEQACT26Fh08N/E7sryhcy/36mhg4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jOQXyHw4VN/jOTsrWT11hqmS+dCMUWNec9sPH2qcQ2XaDXBjstlfU4pYhXuk6dTjs WAZz0jY7uyunH9lH7rp+EaiiUFCdVB8KrG6PxNgYEPPRA6876zW2R2zFtPX6hiGuMz TrTChOim9EtPfzOzy3z6nainQ5NgCdDi+LqCWS2Q=
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/2806/push/3777164815@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c15ced15c0_4f113fb645ccd96411828c"; 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/cCabGwCZl3rZCydISgeR-UVYurg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:41:22 -0000

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

@ianswett pushed 1 commit.

50d6fffc5902cdb2fcb237d1c1690559dc7c3a54  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/2806/files/3a10638950defc8a0030ef53f1f06d270b6d95a3..50d6fffc5902cdb2fcb237d1c1690559dc7c3a54

----==_mimepart_5d1c15ced15c0_4f113fb645ccd96411828c
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/50d6fffc5902cdb2fcb237d1c1690559dc7c3a54">50d6fff</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/2806/files/3a10638950defc8a0030ef53f1f06d270b6d95a3..50d6fffc5902cdb2fcb237d1c1690559dc7c3a54?email_source=notifications&amp;email_token=AFTOJK5MYHQHTFBXAEUYCYTP5QGU5A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWGQ4DCNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SBLNKA67HJS6OMU3P5QGU5ANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7QLUHS2XBEDTXA4OLP5QGU5A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWGQ4DCNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/3a10638950defc8a0030ef53f1f06d270b6d95a3..50d6fffc5902cdb2fcb237d1c1690559dc7c3a54?email_source=notifications\u0026email_token=AFTOJK5MYHQHTFBXAEUYCYTP5QGU5A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWGQ4DCNI",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/3a10638950defc8a0030ef53f1f06d270b6d95a3..50d6fffc5902cdb2fcb237d1c1690559dc7c3a54?email_source=notifications\u0026email_token=AFTOJK5MYHQHTFBXAEUYCYTP5QGU5A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWGQ4DCNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c15ced15c0_4f113fb645ccd96411828c--


From nobody Tue Jul  2 19:42:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 826EE1200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:42:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RGOOsrMDmTQD for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:42: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 21DA21200CE for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:42:28 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:42:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121746; bh=HSvpWg/673X9nBa5aFSrqCAN39+JSeOB9f5p9oMio1E=; h=Date:From:To:Subject:From; b=aZSlea7EBGxu48qhEvHEK9KFTFnPC9IDNLfgfJ8DqznrwVeIRDF5txQYmd5WF5o82 gCB+VhcP1KvV6ZS31GTxdI8yKJTppDHwdRFJwkp+7hocyzEAW+BcdRCMKwksW/sss2 mzB4lJO92CSZ/UowHeG2Ktq4tMnNfD1Ealy9HF5g=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9a5c05-875af4@github.com>
Subject: [quicwg/base-drafts] 875af4: Script updating gh-pages from 50d6fffc. [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/83Hp7gsWjxSeb9FJQ4DH9A97gbY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:42:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 875af4ad178496c14e9aa9912edde55bad1ebeb5
      https://github.com/quicwg/base-drafts/commit/875af4ad178496c14e9aa9912edde55bad1ebeb5
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  2 19:42:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7D6E91200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:42:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 3cgtrvNdECWM for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:42:38 -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 E256A120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:42:37 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:42:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121756; bh=bjBugcjQI+mm8OqOtLDTPP9OTqOrx2y5lN6h9wNKSf4=; h=Date:From:To:Subject:From; b=Wp5C7xmJWcvXLOb2PJcfISFWwfQsrUd7eW00wlGurV0mTdj4DxSXS8UChxbT1BjxV lFyQ/sjKQ496+8g4Ku9C2Tf0LeOyOBWf3o5YYKUzD2EioR/JfyRKTdHxapPty1PU7x sBmm/nEYzKMM3DRTU4sNnyU2fAahDOJInzWOjiYw=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/50d6ff-cc8019@github.com>
Subject: [quicwg/base-drafts] cc8019: 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/Onv7_bd2sHhx3KLOkb49xZZda60>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:42:40 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: cc80198b1448004726bcb388d82375e086acfba5
      https://github.com/quicwg/base-drafts/commit/cc80198b1448004726bcb388d82375e086acfba5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 19:42:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E35EC1200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:42:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 S0he5IlOXMRR for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:42:46 -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 C8E0C120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:42:45 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:42:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121764; bh=towgoKNWHyoEkRM8F80E01lGuXyP3AuZQbZxSanXz9M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cY+JqGuDcR73GunsfP57d1BSpl1D8XbAkx3/eOvz93QkB8lMkoa78tyuvykoJ9pxx QU/rTaEqohnaunAhSll3PyX9yyzJk+8XHa5iUewR8cTDoCcJDwfU+lURy3SDdnXhpv iEmuL9xOF83kbpDA1TbuC4eylkxvVFCC2YNpS/r4=
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/2806/push/3777168353@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c162452c1b_4f113fb645ccd964129266"; 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/cCrj1DZ4aYBLCeu4ZiOS9cvq-Ig>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:42:48 -0000

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

@ianswett pushed 1 commit.

cc80198b1448004726bcb388d82375e086acfba5  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/2806/files/50d6fffc5902cdb2fcb237d1c1690559dc7c3a54..cc80198b1448004726bcb388d82375e086acfba5

----==_mimepart_5d1c162452c1b_4f113fb645ccd964129266
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/cc80198b1448004726bcb388d82375e086acfba5">cc80198</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/2806/files/50d6fffc5902cdb2fcb237d1c1690559dc7c3a54..cc80198b1448004726bcb388d82375e086acfba5?email_source=notifications&amp;email_token=AFTOJK3ZYPUEY7JMIINZIIDP5QG2JA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWHAZTKMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2D5JAPT56X5Z5W57TP5QG2JANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4PSO5C3RAFJUOYUUDP5QG2JA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWHAZTKMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/50d6fffc5902cdb2fcb237d1c1690559dc7c3a54..cc80198b1448004726bcb388d82375e086acfba5?email_source=notifications\u0026email_token=AFTOJK3ZYPUEY7JMIINZIIDP5QG2JA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWHAZTKMY",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/50d6fffc5902cdb2fcb237d1c1690559dc7c3a54..cc80198b1448004726bcb388d82375e086acfba5?email_source=notifications\u0026email_token=AFTOJK3ZYPUEY7JMIINZIIDP5QG2JA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJWHAZTKMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c162452c1b_4f113fb645ccd964129266--


From nobody Tue Jul  2 19:43:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0F61D1200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:43:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EN1e74WK0gJe for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:43:48 -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 2D4A4120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:43:48 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:43:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121826; bh=8m2UHWyR6wPdL9zKNIE+cFe8IlUMdZszRKUsFtNQAls=; h=Date:From:To:Subject:From; b=GhBjCSgQFj9SaiUiAs96AV9qPJj8I9MO/2z/+ZtF4/aIuODZq9n0hrUpKHoaZig6r oLvbLVkWcTV2hgeZ6c8Z/0JDi8+JySzVnS3bNPwcioQbv0/x8jDkDLNoCvQH3NFpQc U06mBNTUMUhj5lfDYBOC5h1gpKzq6luZSPKFVXbc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/875af4-eb3508@github.com>
Subject: [quicwg/base-drafts] eb3508: Script updating gh-pages from cc80198b. [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/wVDqS8dViHRtsMdhmAkayqjNEQ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:43:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: eb3508aa33db07990c1f998fab40a22608c5d675
      https://github.com/quicwg/base-drafts/commit/eb3508aa33db07990c1f998fab40a22608c5d675
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  2 19:45:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B96A7120193 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:45:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 UI-zPxnGH3XZ for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:45: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 3F11C120187 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:45:31 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:45:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121929; bh=QIG5GIE7ahT3pvKMNNfGrL/Eg+9NAugpbV3Nwt8DZZE=; h=Date:From:To:Subject:From; b=mQLVvNPpcCZIpZo6ugMZGofw/J5x5hxNg4uuGWp18KqDHDas/dQywzFIodtyOALCc G/6ewrxj9Ex4k5dS51Lu6NLzmY4N4ysFQBNn8dk3Qhm4tYvhXv+1IaKgo1Axlj6j3r OZqUDf1qXZeRkM1atMfncwYyJQijNzjzcFsLBUF4=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/cc8019-80c67e@github.com>
Subject: [quicwg/base-drafts] 80c67e: 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/ZVwJiGSbEEzavJgJ_RNQvV-c_Rs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:45:40 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1
      https://github.com/quicwg/base-drafts/commit/80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 19:45:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A67CA1201A1 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:45:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 ldKps3ESj-Bc for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:45:39 -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 CA3521201AA for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:45:38 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:45:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562121937; bh=JmspIBV4D2uQ85wwvI2YFpY3CRjqP1APpQSu2OFF5Zw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=B1HSqQgEUb1bz0sPgDfRceVS3vj1jx1Eyk+v+eH8aPup+Sp+mkDX11FSKcmZ4vkRJ +qpnbCBpzxMMMY8H/Jf8GZO87bYLodrttIP1OYh1akaldaLZNCou5lCUOcfnS29RMu LBPB4uJvxoHdu8kiF4L1rnA6slAQXgfvnvWHQPAw=
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/2806/push/3777175996@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c16d17c32e_29cc3fa51a4cd96c156448"; 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/vAldl6xQugDA5KpFeoE4KdXEsCE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:45:48 -0000

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

@ianswett pushed 1 commit.

80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1  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/2806/files/cc80198b1448004726bcb388d82375e086acfba5..80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1

----==_mimepart_5d1c16d17c32e_29cc3fa51a4cd96c156448
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/80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1">80c67ed</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/2806/files/cc80198b1448004726bcb388d82375e086acfba5..80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1?email_source=notifications&amp;email_token=AFTOJKYDTLNLHEUE6KZ74OTP5QHFDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJXGU4TSNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5V4A54L2BJXF4MKL3P5QHFDANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5GJJI44GR7XQ3Y7XLP5QHFDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJXGU4TSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/cc80198b1448004726bcb388d82375e086acfba5..80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1?email_source=notifications\u0026email_token=AFTOJKYDTLNLHEUE6KZ74OTP5QHFDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJXGU4TSNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/cc80198b1448004726bcb388d82375e086acfba5..80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1?email_source=notifications\u0026email_token=AFTOJKYDTLNLHEUE6KZ74OTP5QHFDA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMJXGU4TSNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c16d17c32e_29cc3fa51a4cd96c156448--


From nobody Tue Jul  2 19:46:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 96A6A1200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:46:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DbWI8IDlQV31 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 19:46: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 53563120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 19:46:44 -0700 (PDT)
Date: Tue, 02 Jul 2019 19:46:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562122002; bh=tuNWgqtCTpwxy2JftVITE1aS6/VrjcWfSRmI/ZLlXR8=; h=Date:From:To:Subject:From; b=xhrhVXMX2z4VMRzeyHP29aVxlXb6Zlp3j3pyzwkqfxub7ScTMe4e8AMsaHlz46TiB H8aUG2IPC28qImNgdVWcA3EmkFBciSqintBL8Nz6Y8yMfadfQP/4aAIct8UZSf346v pDSd+Kqm4pOOJSnJoiiiph0eue4hPUoz+ETxdlD8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/eb3508-c349c7@github.com>
Subject: [quicwg/base-drafts] c349c7: Script updating gh-pages from 80c67ed5. [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/gNnGUys_dmFujPPzEmFEpbemxtk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 02:46:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c349c78f353ae518daef4ccfad5972da8c2af9ce
      https://github.com/quicwg/base-drafts/commit/c349c78f353ae518daef4ccfad5972da8c2af9ce
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  2 20:02:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 953601200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:02:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 Z1K61xToSltv for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:02:27 -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 49FB5120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 20:02:27 -0700 (PDT)
Date: Tue, 02 Jul 2019 20:02:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562122946; bh=yJhogWkYAytzoqaVFiql3NDJCxai635/k4aogBkaTYg=; h=Date:From:To:Subject:From; b=WA0v19sE7L2U4NAnEMSKSqX3KWcAVAdj6a9+B86ltcy1WbS3ZI9T2eMASeNMG/eRm sLPexmY3XJAOPo09UZfNJ/Zgvrg4Bn4bHdOrRPHiXPB/OqOX8Upbl8xvV3HMHUMjfs aq6YJGstXDogTL8xVbybI0BMRH5NfhCFbyks2Xb8=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/80c67e-876827@github.com>
Subject: [quicwg/base-drafts] 876827: 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/IPxXdIAtanDUshdv8oBCHt21oOM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 03:02:30 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 87682724d04ea9b8efd7106f814449a1230dfc7e
      https://github.com/quicwg/base-drafts/commit/87682724d04ea9b8efd7106f814449a1230dfc7e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 20:02:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B78F120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:02:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 lDVFny67_HST for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:02: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 73E1E1200F6 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 20:02:36 -0700 (PDT)
Date: Tue, 02 Jul 2019 20:02:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562122954; bh=3VSXOsu9Nbv2+QzziUbaizRLq8rY7BM9NR2mqjKeY28=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TqpQ7FcWmu1uik9/3+9z9egcMijVTT6c4SsMFo7GEM4jepjjsB8cPRfqbHcRBd6bK TPlcfUmRDKPbcqmsXwL7l0jmzmwPbmiexMvhpAd1vGDWjb4aQFSzBfXQSBrInNQz5B n4jut/LpUEhxSGWtsNUAvrVvMyqvaS27AogeDmgs=
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/2806/push/3777215445@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c1acaabf10_75553fbb4cacd96416063d"; 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/afEjgQwmHwcyXYnUou3Dxu3HPSk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 03:02:38 -0000

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

@ianswett pushed 1 commit.

87682724d04ea9b8efd7106f814449a1230dfc7e  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/2806/files/80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1..87682724d04ea9b8efd7106f814449a1230dfc7e

----==_mimepart_5d1c1acaabf10_75553fbb4cacd96416063d
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/87682724d04ea9b8efd7106f814449a1230dfc7e">8768272</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/2806/files/80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1..87682724d04ea9b8efd7106f814449a1230dfc7e?email_source=notifications&amp;email_token=AFTOJK6VR2DPBJNC2M7WJTLP5QJEVA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRRGU2DINI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UBQ4OGCM5YDDHWYTP5QJEVANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7QI6XPTG7YOM3L5RLP5QJEVA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRRGU2DINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1..87682724d04ea9b8efd7106f814449a1230dfc7e?email_source=notifications\u0026email_token=AFTOJK6VR2DPBJNC2M7WJTLP5QJEVA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRRGU2DINI",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/80c67ed5b7b6e8a93ed55f84358c5e91bdb72ae1..87682724d04ea9b8efd7106f814449a1230dfc7e?email_source=notifications\u0026email_token=AFTOJK6VR2DPBJNC2M7WJTLP5QJEVA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRRGU2DINI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c1acaabf10_75553fbb4cacd96416063d--


From nobody Tue Jul  2 20:03:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D52501200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:03:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tW8C6Xqzhecv for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:03: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 6D6BD120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 20:03:54 -0700 (PDT)
Date: Tue, 02 Jul 2019 20:03:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562123032; bh=JRV8F2nlTPjmC1FZ0Nn5SYNOwn0lZlMy7Y3L+WHf164=; h=Date:From:To:Subject:From; b=bsVx9JDBSdpAWyLVblyzgStss9ikv2+PUFtFe+cVBp5bJvNO2Fk6opI83njGGO8h5 z1jxl5lnlp4nvhM7YRalNKyPck+JM6Za3Tt1UkjeRw0Fw/ol0daSGtT7qlPyw1e6jT upUAcBff2eunrOda7V3uAnzJHr0qa7+K4EGshSmI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c349c7-84e78c@github.com>
Subject: [quicwg/base-drafts] 84e78c: Script updating gh-pages from 87682724. [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/cs-N_BeGmFJgu29uR65OSC64F_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: Wed, 03 Jul 2019 03:03:56 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 84e78cbfa08cc4e32d2aa310d7ac32431de7440b
      https://github.com/quicwg/base-drafts/commit/84e78cbfa08cc4e32d2aa310d7ac32431de7440b
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  2 20:10:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4B3411200CE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:10:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 BWeAyeP8nJgw for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:10: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 C7934120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 20:10:56 -0700 (PDT)
Date: Tue, 02 Jul 2019 20:10:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562123455; bh=mzIu3E8w8gfHwFOWYY3P4PYIizGArlEK50WHSGt3Toc=; h=Date:From:To:Subject:From; b=1f3dX9mWNO95VGcHrl17qG5/D6KlzkscHyoF5ErHioswdPyTsLXZ5OBlqGvqUA1ew bcnejz8f7qSsYHRLC4wegwjJeSvQtBnC8jGuQrF5V9vjzi/amoytHMpBxSYoVZngW3 cCtUP4+s9+Lk8btiqa4CxwHhSiNpk9M5uJyN3Eco=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/876827-342c79@github.com>
Subject: [quicwg/base-drafts] 342c79: 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/zfONL7H5yPWHHo44IICJ5P6fcUQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 03:10:58 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 342c7930d83eacd6fdfcd2dc392e4011ae9f410d
      https://github.com/quicwg/base-drafts/commit/342c7930d83eacd6fdfcd2dc392e4011ae9f410d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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



From nobody Tue Jul  2 20:11:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 35CB91200DE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:11:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ERxeYL8_EU5Q for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:11: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 B59DC120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 20:11:06 -0700 (PDT)
Date: Tue, 02 Jul 2019 20:11:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562123465; bh=j9/5T7MgUYnPvAX/TFcGeDAJew4b1vqs1eI6gDwSywY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=H4T3QJJI6V3wD1yYqHVeMp8yqKEaEhW78T9tLMJnfad7WR4dj1zDbLgdYwwPPtIC3 USrjWRJ9fCyf6O23GFrh2OJvCUeO+OWfRhv0iAgoC0rW9QmliW1oIiggw7LlV+cyqR GUCI6PeeQyINVzOhGHJJP7HSSk7AWg3/KH8g61dE=
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/2806/push/3777235156@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c1cc919e98_19fd3fb7670cd95c1364c4"; 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/iyr3hZPj1MIJXxXKnbr97EbUZdA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 03:11:08 -0000

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

@ianswett pushed 1 commit.

342c7930d83eacd6fdfcd2dc392e4011ae9f410d  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/2806/files/87682724d04ea9b8efd7106f814449a1230dfc7e..342c7930d83eacd6fdfcd2dc392e4011ae9f410d

----==_mimepart_5d1c1cc919e98_19fd3fb7670cd95c1364c4
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/342c7930d83eacd6fdfcd2dc392e4011ae9f410d">342c793</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/2806/files/87682724d04ea9b8efd7106f814449a1230dfc7e..342c7930d83eacd6fdfcd2dc392e4011ae9f410d?email_source=notifications&amp;email_token=AFTOJK7JVX4Q2KTF54LUCWTP5QKETA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRTGUYTKNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ZHCIAX3N5SXKCEB3P5QKETANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK65WA4HOLDAXLW5PH3P5QKETA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRTGUYTKNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/87682724d04ea9b8efd7106f814449a1230dfc7e..342c7930d83eacd6fdfcd2dc392e4011ae9f410d?email_source=notifications\u0026email_token=AFTOJK7JVX4Q2KTF54LUCWTP5QKETA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRTGUYTKNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/87682724d04ea9b8efd7106f814449a1230dfc7e..342c7930d83eacd6fdfcd2dc392e4011ae9f410d?email_source=notifications\u0026email_token=AFTOJK7JVX4Q2KTF54LUCWTP5QKETA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG43TOMRTGUYTKNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c1cc919e98_19fd3fb7670cd95c1364c4--


From nobody Tue Jul  2 20:29:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7B1ED1201A3 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:29:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FhMZ3QmeGi0P for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:29:29 -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 78BF01201A8 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 20:29:28 -0700 (PDT)
Date: Tue, 02 Jul 2019 20:29:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562124566; bh=ma72kS+mq7FTINj2uaNzKtcRy/dNXvhYTcdbvdoVL6M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=t60Y2/mE6sVhXsHfyPOu+kGOZ0tc9I3Wt1xSDTk8XuiNcWdm6hSqECmmDsTmbvgZx iPe1TkG0CT1nswMdO/7kSV8a6dcvgNDi4Lr7Gi98iAvct2ycPTWUGuxtNqynp/orwo Ergt7lfianPUWw1tkoFwHR9QsSxReNo1D17EIt88=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFHJC72IACPRVWLEF3FFJZNEVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/review/257244661@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c2116997b7_7fce3fa695ecd96832194e"; 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/gIBW6yMN2lqC_cQa5OK58MZMcDc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 03:29:35 -0000

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

martinthomson approved this pull request.

So many comments, so much opportunity for this to get worse if we don't stop.

> @@ -2883,16 +2901,20 @@ needing acknowledgement are received.  The sender can use the receiver's
 Strategies and implications of the frequency of generating acknowledgments are
 discussed in more detail in {{QUIC-RECOVERY}}.
 
+
+### Limiting ACK ranges

```suggestion
### Limiting ACK Ranges
```

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

<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>So many comments, so much opportunity for this to get worse if we don'=
t stop.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2794#discussi=
on_r299763939">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2883,16 +2901,20 @@ needing acknowledg=
ement are received.  The sender can use the receiver&#39;s=0D
 Strategies and implications of the frequency of generating acknowledgmen=
ts are=0D
 discussed in more detail in {{QUIC-RECOVERY}}.=0D
 =0D
+=0D
+### Limiting ACK ranges=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-### Limiting ACK ranges=0D
+### Limiting ACK Ranges=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/2794?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKZLG5ZWAF3UESET4QLP5QMJNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KT35I#pullrequestreview-257244661=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK3MJ77J2BVPMDWEITTP5QMJNANCNFSM4HYOBHNQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK4QTVH4=
G2T65KLPHWTP5QMJNA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KT35I.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/2794?email_source=3D=
notifications\u0026email_token=3DAFTOJKZLG5ZWAF3UESET4QLP5QMJNA5CNFSM4HYO=
BHN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
5KT35I#pullrequestreview-257244661",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2794?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZLG5ZWAF3UESET4QLP5QMJNA5CNFSM4HYOBH=
N2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K=
T35I#pullrequestreview-257244661",=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_5d1c2116997b7_7fce3fa695ecd96832194e--


From nobody Tue Jul  2 20:31:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C31F8120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:31:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0fO2Wz9SCMe0 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 20:31:43 -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 986D1120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 20:31:42 -0700 (PDT)
Date: Tue, 02 Jul 2019 20:31:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562124701; bh=nfJcWhB1DUswtTKntdccppYc47eWTEsbPCTOGBhV9sE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CLHWw1wj1755kpQXIcQvT/CFL8R6dzKH9Dp2SJuus3dpoXY3RXTY07PjbJCoc8+ok PSmQWmsG52q5k999TnQVXbPOKjK9EuWQO0jFpZYRyZXOyDWZGgatfV/vKqvv+YRgZF sjR9ZQkiQ+0hBMvkbBj/VWbWH5pmoi/ZI8XMXR00=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XMXO5AEHISWXX2AV3FFKBZEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/507923774@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c219cebb06_33de3fc9a12cd968361761"; 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/4SpmMwQ3rpAIuhpr5GxWTp9hYv4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 03:31:45 -0000

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

It's not generically invalid, it's only invalid in a particular context.  And we have to assume that our adversary understands that context better than the endpoint that generates the stateless reset.  That's all.

To be clear, we don't expressly forbid sending of a smaller stateless reset, only strongly imply that it won't be effective.  So I'm struggling to understand what you would concretely do 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/2869#issuecomment-507923774
----==_mimepart_5d1c219cebb06_33de3fc9a12cd968361761
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It's not generically invalid, it's only invalid in a particular context.  And we have to assume that our adversary understands that context better than the endpoint that generates the stateless reset.  That's all.</p>
<p>To be clear, we don't expressly forbid sending of a smaller stateless reset, only strongly imply that it won't be effective.  So I'm struggling to understand what you would concretely do 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/2869?email_source=notifications&amp;email_token=AFTOJKYPP52JMQ67Z3BIHFTP5QMRZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDE2PQ#issuecomment-507923774">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZAG324UAPAMJLNIFLP5QMRZANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3TLI5EXPHLN5GZIZ3P5QMRZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDE2PQ.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJKYPP52JMQ67Z3BIHFTP5QMRZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDE2PQ#issuecomment-507923774",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJKYPP52JMQ67Z3BIHFTP5QMRZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDE2PQ#issuecomment-507923774",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c219cebb06_33de3fc9a12cd968361761--


From nobody Tue Jul  2 21:19:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 693F41200D7 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:19:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fDzKjxTTOMCX for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:19: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 3AB69120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 21:19:16 -0700 (PDT)
Date: Tue, 02 Jul 2019 21:19:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562127554; bh=vqDW9IVgc8QOjFbcyQQ1n44SEBBjldLZIcb7guHKKMM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F23biJyBDXuVk+0UvOriGbHGcAqpGJFcFAz+lHoaxaeqA/HME9ySa98tYFmJ+055T d5fBR2DnEVUtaJvAFq5LPkSC70L6K0dRdU/Sc+m5625Cce7LztEss96OyxL/0d4s0r oG2pfm7v0/2dUmhhRfI/GLkVSUX+LLerck2tzhss=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7NUND3WL33L4XZV2N3FFPUFEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/c507931694@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c2cc2bcdce_34d33fdf448cd96857668c"; 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/XnxlRxjPeQyAga5lCgD3EGPrwq8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 04:19:17 -0000

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

Thanks for your patience, I believe this is now ready for a full 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/2806#issuecomment-507931694
----==_mimepart_5d1c2cc2bcdce_34d33fdf448cd96857668c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thanks for your patience, I believe this is now ready for a full 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/2806?email_source=notifications&amp;email_token=AFTOJK3K3TIGGM5QNMTUII3P5QSEFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDGYLQ#issuecomment-507931694">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BI4ZWVCBGFEWDUJTP5QSEFANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2LSCJ6YILBN5HHDM3P5QSEFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDGYLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK3K3TIGGM5QNMTUII3P5QSEFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDGYLQ#issuecomment-507931694",
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK3K3TIGGM5QNMTUII3P5QSEFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDGYLQ#issuecomment-507931694",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c2cc2bcdce_34d33fdf448cd96857668c--


From nobody Tue Jul  2 21:22:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2CEE712014B for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:22:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 cqHrv75Mkefe for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:22:36 -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 0893712012A for <quic-issues@ietf.org>; Tue,  2 Jul 2019 21:22:34 -0700 (PDT)
Date: Tue, 02 Jul 2019 21:22:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562127753; bh=71N633IDitCIGBd1OeEJoOoYXePY/y4lMfy3QSt1RLc=; h=Date:From:To:Subject:From; b=jfDew3jPdsBsP9CTqXjl7kXtuMd+AF8meAQyzxnqa2b8v3ag/jNI7tt6xgEhq3DgR 4WS+wzvBaJ2/o9ddOKHD0FaLslZDwzTb0oraMKfqa2dQ2WY84LE0Aitn+gLeTHe23v 4dq4a8qSQDNKa/Gdhe6bQEKkEoU2exLfPTRcfPUE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/6c786b-5e4350@github.com>
Subject: [quicwg/base-drafts] 5e4350: 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/ywmJNCqkjXTHl6y9exZ0SpCcry8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 04:22:38 -0000

  Branch: refs/heads/ianswett-ack-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5e43503dd4265966177e7f20e54cd576f845f33d
      https://github.com/quicwg/base-drafts/commit/5e43503dd4265966177e7f20e54cd576f845f33d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>



From nobody Tue Jul  2 21:22:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 28F1112012A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:22:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 1JWlvK2ufqlW for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:22:43 -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 BD83C120128 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 21:22:42 -0700 (PDT)
Date: Tue, 02 Jul 2019 21:22:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562127761; bh=oq2Qtg6FmmpYqyUueSROqRDU4VFTfc7YH5/q9PsS+1c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AAHik/yx1t1whRKnRoY3lCjk7IpVIA2K9e7RKS2/QGaRs87s6uheFcANnYKoF+Ntf FzwLP/gLS7vYkq5V/CforN1L/SUaglylq5KlJ/Nbc8LW4rUCCxJxsjBab+xfjm9c0h K9CW0Hso2WQgwrWGHPyfRZKGJSyqm6aRaQPOqi9k=
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/2794/push/3777398779@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c2d916cc52_35683fdf448cd9681341b7"; 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/iqPJbZu_wFrPpbPM23ngjh9bSzw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 04:22:44 -0000

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

@ianswett pushed 1 commit.

5e43503dd4265966177e7f20e54cd576f845f33d  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/2794/files/6c786bdf032d81c8bf8169d77e4c647b1c595b76..5e43503dd4265966177e7f20e54cd576f845f33d

----==_mimepart_5d1c2d916cc52_35683fdf448cd9681341b7
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/5e43503dd4265966177e7f20e54cd576f845f33d">5e43503</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/2794/files/6c786bdf032d81c8bf8169d77e4c647b1c595b76..5e43503dd4265966177e7f20e54cd576f845f33d?email_source=notifications&amp;email_token=AFTOJK7H3UWSGHPDZZIIQI3P5QSRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMZZHA3TOOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3M4GOD4DBFG3G2PODP5QSRDANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK22RZQSN4T4NWENO4TP5QSRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMZZHA3TOOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794/files/6c786bdf032d81c8bf8169d77e4c647b1c595b76..5e43503dd4265966177e7f20e54cd576f845f33d?email_source=notifications\u0026email_token=AFTOJK7H3UWSGHPDZZIIQI3P5QSRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMZZHA3TOOI",
"url": "https://github.com/quicwg/base-drafts/pull/2794/files/6c786bdf032d81c8bf8169d77e4c647b1c595b76..5e43503dd4265966177e7f20e54cd576f845f33d?email_source=notifications\u0026email_token=AFTOJK7H3UWSGHPDZZIIQI3P5QSRDA5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DQNJSGQYTOOCQOVZWQIZTG43TOMZZHA3TOOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c2d916cc52_35683fdf448cd9681341b7--


From nobody Tue Jul  2 21:23:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0871C120128 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:23:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tAl7dtY_hB2F for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:23: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 C97C8120044 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 21:23:47 -0700 (PDT)
Date: Tue, 02 Jul 2019 21:23:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562127826; bh=CUqyhYD9XdaQ8yzbBoM1HuytDLl1M2OVbDmnK0pKB+s=; h=Date:From:To:Subject:From; b=OAEs2vOIExhbMDxQXRR1C3Jao8Mw1H6jiMYXlq0eBoJS7ANaIzdEGV6QfrDT+oVgu 4QzRkOtzjwXBaXz659Xy4sTH3jzrSqZiVMA3Yzz3slhUWyEcpBzAajc9vUIWvaNG4/ rZ77x9t57xEDpoiJcEH1UjbYfJaZ9v+s2Yk0Oauk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/84e78c-3aad3c@github.com>
Subject: [quicwg/base-drafts] 3aad3c: Script updating gh-pages from 5e43503d. [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/SDjm_tBJ9oeXmTtXXpYcjSduMnA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 04:23:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3aad3cf401bf85c2e6a1e9cb6ac08357503ac620
      https://github.com/quicwg/base-drafts/commit/3aad3cf401bf85c2e6a1e9cb6ac08357503ac620
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  Changed paths:
    M ianswett-ack-ack/draft-ietf-quic-transport.html
    M ianswett-ack-ack/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  2 21:58:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D1576120182 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:58:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W0COIqojX1Ye for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 21:58: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 B5E71120111 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 21:58:35 -0700 (PDT)
Date: Tue, 02 Jul 2019 21:58:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562129914; bh=9hzhnmnmdK1ctJ+MTr8TEKrpPRdN6CKZOkllSjuVQzg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1FKUiIYoYM0tMNM1vrP8nlH2A2ju/KYkueUQRQmGqgGT2kWxKkVrEfVqiOA+EM9EX 5gcvNcUE+YT2KzdHEAftJrX2W2YLl3aZE3ZoM1l4Grp1SZCjmGYsVs+Jm9BlJayZ6p LeMaaQEOdLq3n1RSDC010iKFsj5tGQ4NZm1CaU2I=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ELNG6LKS5HST4JPN3FFUHVEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/257259977@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c35faa0e72_6b1b3ffd574cd968472e3"; 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/4DlG-lcYis2uqZAnFihxvuUVqxM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 04:58:38 -0000

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

martinthomson commented on this pull request.



>  
 A sender computes its PTO timer every time an ack-eliciting packet is sent. A
 sender might choose to optimize this by setting the timer fewer times if it
 knows that more ack-eliciting packets will be sent within a short period of
 time.
 
+The probe timer is not set if the time threshold {{time-threshold}} loss
+detection timer is set.  The time threshold loss detection timer is expected
+to both expire earlier than the PTO and be less likely to spuriously retransmit
+data. The Initial and Handshake packet number spaces will typically contain a
+small number of packets, so losses are less likely to be detected using
+packet-threshold loss detection.
+
+## Handshakes and new paths

```suggestion
## Handshakes and New Paths
```

> @@ -1283,7 +1237,7 @@ OnLossDetectionTimeout():
        SendOneHandshakePacket()
      else:
        SendOnePaddedInitialPacket()
-    crypto_count++
+    pto_count++

```suggestion
     pto_count++
```
The alignment looks off 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/2806#pullrequestreview-257259977
----==_mimepart_5d1c35faa0e72_6b1b3ffd574cd968472e3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<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/2806#discussi=
on_r299776510">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 A sender computes its PTO timer every time an ack-eliciting packet is se=
nt. A=0D
 sender might choose to optimize this by setting the timer fewer times if=
 it=0D
 knows that more ack-eliciting packets will be sent within a short period=
 of=0D
 time.=0D
 =0D
+The probe timer is not set if the time threshold {{time-threshold}} loss=
=0D
+detection timer is set.  The time threshold loss detection timer is expe=
cted=0D
+to both expire earlier than the PTO and be less likely to spuriously ret=
ransmit=0D
+data. The Initial and Handshake packet number spaces will typically cont=
ain a=0D
+small number of packets, so losses are less likely to be detected using=0D=

+packet-threshold loss detection.=0D
+=0D
+## Handshakes and new paths=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-## Handshakes and new paths=0D
+## Handshakes and New Paths=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2806#discussi=
on_r299776853">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1283,7 +1237,7 @@ OnLossDetectionTimeo=
ut():=0D
        SendOneHandshakePacket()=0D
      else:=0D
        SendOnePaddedInitialPacket()=0D
-    crypto_count++=0D
+    pto_count++=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-    pto_count++=0D
+     pto_count++=0D
</pre>=0D
=0D
<p>The alignment looks off 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/2806?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK2HLS2LOIHVFKBJKFLP5QWXVA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KXTSI#pullrequestreview-257259977=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK2MUVGTIZ4OQGXFA7LP5QWXVANCNFSM4HZFMTMQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK2DVYUF=
YI4BYNYE2JLP5QWXVA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB5KXTSI.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/2806?email_source=3D=
notifications\u0026email_token=3DAFTOJK2HLS2LOIHVFKBJKFLP5QWXVA5CNFSM4HZF=
MTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
5KXTSI#pullrequestreview-257259977",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2HLS2LOIHVFKBJKFLP5QWXVA5CNFSM4HZFMT=
M2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K=
XTSI#pullrequestreview-257259977",=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_5d1c35faa0e72_6b1b3ffd574cd968472e3--


From nobody Tue Jul  2 23:15:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BB6BA1201AF for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:15:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0S3WbX4iYPJe for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:15: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 2030E1201B0 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:15:37 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:15:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562134535; bh=8N+lp3GBTtyEKGwrstS+cZEftBXBfeyJPJvR3zSls3k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KHfzpLsN72tWqj/JqKE7bnX8ETEgN5JoErsRWisAfHLbWPcIj3+gD8EGtbAPfqcx7 DiQQFsxRnYvE9H+xuqPsWpkRVZQbrmjWy6xPWzzW6OwqaPGlbfHfzcvf5Oyc8iF/jY jn0vzXOBBojCPWMqGj+qTbNqDlL/8H2Wp0CB2Fas=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5YW2K47P3XFD4IWN3FF5IPEVBNHHBWDXNEU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2778/507954847@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2778@github.com>
References: <quicwg/base-drafts/issues/2778@github.com>
Subject: Re: [quicwg/base-drafts] CID change still required in response to migration? (#2778)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c4807a9571_68053fca798cd95c276731"; 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/Q2y9AClFGLSlAxAYRMDUITB96Nk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:15:39 -0000

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

I think the issue is that there are two types of migration: "Direct" migration, where an endpoint changes to a new path and it is in their interest to also change the CID (to reduce trackability), and "indirect" migration, i.e., NAT rebinding, where a middlebox changes the path for an endpoint in a way that they are unaware of and therefore cannot initiate a CID migration for. Both of there are valid, but they are slightly different.

Is it sufficient to clarify that for a direct migration, a CID change SHOULD happen, and for an indirect migration, it (generally) cannot, and that the peer must handle both?

-- 
You are receiving 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/2778#issuecomment-507954847
----==_mimepart_5d1c4807a9571_68053fca798cd95c276731
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think the issue is that there are two types of migration: "Direct" migration, where an endpoint changes to a new path and it is in their interest to also change the CID (to reduce trackability), and "indirect" migration, i.e., NAT rebinding, where a middlebox changes the path for an endpoint in a way that they are unaware of and therefore cannot initiate a CID migration for. Both of there are valid, but they are slightly different.</p>
<p>Is it sufficient to clarify that for a direct migration, a CID change SHOULD happen, and for an indirect migration, it (generally) cannot, and that the peer must handle both?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2778?email_source=notifications&amp;email_token=AFTOJK67OVLF5AYC64LYAMDP5Q7YPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMNHY#issuecomment-507954847">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTLLXAH5YBS4Q55MDP5Q7YPANCNFSM4HWPX2ZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY2I7YXAVVY3IR3A2DP5Q7YPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMNHY.gif" height="1" width="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/2778?email_source=notifications\u0026email_token=AFTOJK67OVLF5AYC64LYAMDP5Q7YPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMNHY#issuecomment-507954847",
"url": "https://github.com/quicwg/base-drafts/issues/2778?email_source=notifications\u0026email_token=AFTOJK67OVLF5AYC64LYAMDP5Q7YPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMNHY#issuecomment-507954847",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c4807a9571_68053fca798cd95c276731--


From nobody Tue Jul  2 23:16:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A43591201B0 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:16:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PwBpMdKYDmrM for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:16:50 -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 176B51201A2 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:16:50 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:16:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562134608; bh=WrbKk007p8RzYAHgwuPvSrnZ2rpd11yMAvXkS2t0MAk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gEJhH/YI0Y7KwpAnRZeCzmfvMudBpffVdFXHai+C2CU/gJMVoQORuQIXCr8wml371 XxuyoB78gLQh9I19JCIV62aXF6sj8RzNBgsgBpLis2+WEDujSap6r/BTrZHrLTgsDb byqPF3SgOMZtDBS29I7PvY+ccRnoKEEWL4NKLZAE=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5SADYQGIBOUXZZJVF3FF5NBEVBNHHBW2NK2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2837/507955188@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2837@github.com>
References: <quicwg/base-drafts/issues/2837@github.com>
Subject: Re: [quicwg/base-drafts] Does a Retry really need to change the CID? (#2837)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c4850a1f7f_70bc3fed826cd96420624"; 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/XMcZuaIbDkJZLgxvZ142qvHZ58I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:16:51 -0000

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

@ianswett can this be closed 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/2837#issuecomment-507955188
----==_mimepart_5d1c4850a1f7f_70bc3fed826cd96420624
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=20072817" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> can this be closed 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/2837?email_source=notifications&amp;email_token=AFTOJK3JWVHAOFJUDUDY3HDP5Q75BA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMP5A#issuecomment-507955188">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76X2XAGNEH5DFJYOTP5Q75BANCNFSM4H266NGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYPYEFVKJU5IKZ5O5TP5Q75BA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMP5A.gif" height="1" width="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/2837?email_source=notifications\u0026email_token=AFTOJK3JWVHAOFJUDUDY3HDP5Q75BA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMP5A#issuecomment-507955188",
"url": "https://github.com/quicwg/base-drafts/issues/2837?email_source=notifications\u0026email_token=AFTOJK3JWVHAOFJUDUDY3HDP5Q75BA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMP5A#issuecomment-507955188",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c4850a1f7f_70bc3fed826cd96420624--


From nobody Tue Jul  2 23:19:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EAD651201AF for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:19:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HUHbf0G5GcZE for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:19:12 -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 743CD1201A2 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:19:12 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:19:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562134751; bh=UT6A1zBeOsRaUIrVYYunpN/auFrKAsmlR6AH30+Eckc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AghU2ELagc8gbVtvjL/nQWCdrqs0DufJr93o6urCvheh+obnVZDcw8qnJKZXvvDYn C1ev1LLJQM3ziOJcdNc4FBq+wqV3Z2yvwFs7Y12xVBYPCySyTkbmDvfuwZRTmp69Ki KSIs10lZ//a2zdCdu4SHTFuKAgCPdJtDuPv4qGHA=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6JNU5Z75BOSWO2J2F3FF5V7EVBNHHBW3C4Q4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2838/507955858@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2838@github.com>
References: <quicwg/base-drafts/issues/2838@github.com>
Subject: Re: [quicwg/base-drafts] Provide Signal that SCID is client assigned (#2838)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c48df4eb0b_7e9f3fc513ccd96429437"; 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/EzOvNbXi2k5oZwGYulAg9BChhoE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:19:14 -0000

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

I think the discussion supports closing 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/2838#issuecomment-507955858
----==_mimepart_5d1c48df4eb0b_7e9f3fc513ccd96429437
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think the discussion supports closing 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/2838?email_source=notifications&amp;email_token=AFTOJKY45UMT4VEV3YMXZGLP5RAF7A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMVEQ#issuecomment-507955858">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLJFU2BTSNR7HH26TP5RAF7ANCNFSM4H3CE2KQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7NGUMFNMOUZFA4HTDP5RAF7A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMVEQ.gif" height="1" width="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/2838?email_source=notifications\u0026email_token=AFTOJKY45UMT4VEV3YMXZGLP5RAF7A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMVEQ#issuecomment-507955858",
"url": "https://github.com/quicwg/base-drafts/issues/2838?email_source=notifications\u0026email_token=AFTOJKY45UMT4VEV3YMXZGLP5RAF7A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDMVEQ#issuecomment-507955858",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c48df4eb0b_7e9f3fc513ccd96429437--


From nobody Tue Jul  2 23:19:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ED3951201AF for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:19:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 W_-oELFyRg1f for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:19: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 65B2D1201A2 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:19:27 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:19:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562134766; bh=ozis1svsWwr61zvfYaunyTKFOOwyUm2x+aDiIQGeAh0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tXbGtxKySOD3ZJzPRWnopsZA6t+HBwQfkE4FIZrkqUeUzhGiRBlT5agx42jqvpP9g lH3yVi1ZdZZmSA/NwVH1dYPQwZUqTr16W3tFqtiK2Brv3SpBS9FMKyeoxKW+ojved5 6djE4be2j2dezbrgmbyt5shr+HxI6VQ67mKZOdsM=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YJCQSDCSLMHXDUHF3FF5W5EVBNHHBW3C4Q4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2838/issue_event/2456440403@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2838@github.com>
References: <quicwg/base-drafts/issues/2838@github.com>
Subject: Re: [quicwg/base-drafts] Provide Signal that SCID is client assigned (#2838)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c48ee4b3c1_a8c3fbf6d2cd9603005db"; 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/PjH_w9-M96B9mlfQsfKlsLwXIrA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:19:29 -0000

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

Closed #2838.

-- 
You are receiving 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/2838#event-2456440403
----==_mimepart_5d1c48ee4b3c1_a8c3fbf6d2cd9603005db
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="460086407" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2838" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2838/hovercard" href="https://github.com/quicwg/base-drafts/issues/2838">#2838</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/2838?email_source=notifications&amp;email_token=AFTOJKZ6M2GOQX2UFXY5KNDP5RAG5A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJVE4UY#event-2456440403">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY2FM34KN6X7MCUQGTP5RAG5ANCNFSM4H3CE2KQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4OXP3VPKCXSEUAYK3P5RAG5A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJVE4UY.gif" height="1" width="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/2838?email_source=notifications\u0026email_token=AFTOJKZ6M2GOQX2UFXY5KNDP5RAG5A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJVE4UY#event-2456440403",
"url": "https://github.com/quicwg/base-drafts/issues/2838?email_source=notifications\u0026email_token=AFTOJKZ6M2GOQX2UFXY5KNDP5RAG5A5CNFSM4H3CE2K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSJVE4UY#event-2456440403",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c48ee4b3c1_a8c3fbf6d2cd9603005db--


From nobody Tue Jul  2 23:22:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9F37D1201B4 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:22:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oqdlP4HbvW3h for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:22: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 2B3581201A2 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:22:08 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:22:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562134927; bh=PjeMfc4DFWxNA154HI56VCBBRYLYaOmQheL9HeBF2BE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZsqdInw75VFny475rgD4M50rkCD+WyXJDD7oiistU1b8L6qvumMHvxhk1V7aR68Dl 3MdlJw7Tr30ab54TR/7sxvZCmj02Xr4hVuCIfByUJRgZqQfzC3TJ4JxX51ENWgCZb4 V6+zraN7JuT4O5HhfzN75CbhA4rYGPeogvAa52nE=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4QYJCJAPZ2S465Q6N3FF6A7EVBNHHBWWQD7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2823/507956642@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2823@github.com>
References: <quicwg/base-drafts/issues/2823@github.com>
Subject: Re: [quicwg/base-drafts] Do Initial secrets change after Retry packet? (#2823)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c498f45f66_44753fe1e84cd95c598793"; 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/kQhWMaptrlzl8a2Kah66L9wTovQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:22:10 -0000

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

Are editorial clarifications needed 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/2823#issuecomment-507956642
----==_mimepart_5d1c498f45f66_44753fe1e84cd95c598793
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Are editorial clarifications needed 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/2823?email_source=notifications&amp;email_token=AFTOJKZQ3BNKBMUX67IFU7DP5RAQ7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDM3IQ#issuecomment-507956642">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5YLDKBHAG5GWUCA3P5RAQ7ANCNFSM4HZ6U5CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6M3UHUC6R2E3HR42DP5RAQ7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDM3IQ.gif" height="1" width="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/2823?email_source=notifications\u0026email_token=AFTOJKZQ3BNKBMUX67IFU7DP5RAQ7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDM3IQ#issuecomment-507956642",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=notifications\u0026email_token=AFTOJKZQ3BNKBMUX67IFU7DP5RAQ7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDM3IQ#issuecomment-507956642",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c498f45f66_44753fe1e84cd95c598793--


From nobody Tue Jul  2 23:35:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0E0481201B0 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:35:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 B0tQ1KA0t0qZ for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:35:05 -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 6D859120135 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:35:05 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:35:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562135704; bh=PrWV76G3GbBiGdzYjBdCyz4VvR7wY8RjYcwPU8MoyU0=; h=Date:From:To:Subject:From; b=gQtxz+FtDGZU37IqQJ6rAS/WIFGNYhH0we7W9a+Zp2fIrK0Zk6znsRuHfBjhDwbUG YaYLHip7h4FDKq8t2je3uPN76B6sjE5jcaZqUNjCHVvcBOBZ6wQzSt1s01GPqzOoeF HShXulUgRazIU+I4uvGsmPvPk2hLex4t+g0slW2s=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/retry-rekey/000000-35c7a5@github.com>
Subject: [quicwg/base-drafts] 35c7a5: Initial secrets change after Retry
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ts--dM8w0eXrjsBsdiKiQt0v1ng>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:35:07 -0000

  Branch: refs/heads/retry-rekey
  Home:   https://github.com/quicwg/base-drafts
  Commit: 35c7a5982639ba2e965e0c62faa608b68797cac8
      https://github.com/quicwg/base-drafts/commit/35c7a5982639ba2e965e0c62faa608b68797cac8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

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

  Log Message:
  -----------
  Initial secrets change after Retry

This was implied, but not explicit previously.

Closes #2823.



From nobody Tue Jul  2 23:35:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AB7D71201B0 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:35:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 iEKvIDvOr70C for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:35:24 -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 2D815120135 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:35:24 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:35:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562135723; bh=wIrrea4U5jsJ63TRwbDTJjQvC7haAH1nt3+PXa+p1CY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=SY4VH+QGGpflwRg1pqq1Gd2Hnlmwlkz5a37YcmBcaHSKS/oGG+nBI31Qm6R1NbdbL 5Bram+XqP2Yy0BIF2dmm3bQGaQcJ32vOPWcUfZ3nekeyzM5rVcmezSxW0HwLMwnkBo 7FwmvSno/j0S4pVvhZGJbHjwOVJv/dzrYaYPKgQY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK77NXNG6AWLDJASLD53FF7SXEVBNHHBXIMFLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2870@github.com>
Subject: [quicwg/base-drafts] Initial secrets change after Retry (#2870)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c4cab44425_48903f8ef8ccd9607656cd"; 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/4TzuQP9GOs8jDXXrcU6m9g0YIrs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:35:26 -0000

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

This was implied, but not explicit previously.

Closes #2823.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Initial secrets change after Retry

-- File Changes --

    M draft-ietf-quic-tls.md (7)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2870.patch
https://github.com/quicwg/base-drafts/pull/2870.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/2870

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

<p>This was implied, but not explicit previously.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2823.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458884091" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2823" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2823/hovercard" href="https://github.com/quicwg/base-drafts/issues/2823">#2823</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/2870'>https://github.com/quicwg/base-drafts/pull/2870</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Initial secrets change after Retry</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2870.patch'>https://github.com/quicwg/base-drafts/pull/2870.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2870.diff'>https://github.com/quicwg/base-drafts/pull/2870.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/2870?email_source=notifications&amp;email_token=AFTOJK4MQHAM25FOZPPGG2TP5RCCXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5BQVPA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GAWCEM5FZFCKAG5DP5RCCXANCNFSM4H5CMCIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK54OFK7LN7WZDNJAPTP5RCCXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5BQVPA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK4MQHAM25FOZPPGG2TP5RCCXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5BQVPA",
"url": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK4MQHAM25FOZPPGG2TP5RCCXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5BQVPA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1c4cab44425_48903f8ef8ccd9607656cd--


From nobody Tue Jul  2 23:36:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C7AB6120135 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:36:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dhQTcZVNhazm for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:36: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 3F15F1201B5 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:36:21 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:36:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562135780; bh=Mf/qTSfg5PHI/Y/mBw3FoI5tDP6RJes2y7VLO/6uqYU=; h=Date:From:To:Subject:From; b=WNU7VYk+HMz/22FWtWUslgqI3J4bS82K8UbnLQajulS//yQGLpG17Be/cab7ZWr7A O0Z2zLb0zK34PMAAH21CF4gUlTCw45MVAkvwX6gNDrd2gNu1FIgXpKyxW65qefH2YW JzhLhoz17ppLQd9pELOEBF39VxYN77af83FwtmwQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3aad3c-f6bd94@github.com>
Subject: [quicwg/base-drafts] f6bd94: Script updating gh-pages from 35c7a598. [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/pJK01__B5uxvtw1X3xheAqzy8Ao>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:36:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f6bd94af378bde1a8e569e18db2999ce0d0fc778
      https://github.com/quicwg/base-drafts/commit/f6bd94af378bde1a8e569e18db2999ce0d0fc778
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

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

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



From nobody Tue Jul  2 23:39:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BDA53120135 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:39:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n7K9RqV7_E6A for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:39: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 E4B041200B2 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:39:20 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:39:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562135959; bh=4EbtFofA1juDSRV4GnRTK/yudoU2kL9M2S1ffSjmKiY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aepNjNVuHKZj3192/y65EnLY3Dqhjq6Mgj3gLd3kOo0lecgyHRApVy/jQghe4DuxY Jpij+Tmpt7OZFOZ6AMp1cGbrNvwaLRggEdCyzVF8J4KOGiZZznigZpSYGZXUxdhNR3 cONPVKhq0loEte3+xQAkHiFfOJ7sCODE5o56JTrQ=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25KWMD4AMX5FGHNM53FGABPEVBNHHBWDXNEU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2778/507961252@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2778@github.com>
References: <quicwg/base-drafts/issues/2778@github.com>
Subject: Re: [quicwg/base-drafts] CID change still required in response to migration? (#2778)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c4d97ac70d_68043fc715ccd960340675"; 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/Sp6AOPRH2uBfgvOioCEpu_wwMWs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:39:23 -0000

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

 @larseggert I like the way you categorize migration.

> Is it sufficient to clarify that for a direct migration, a CID change SHOULD happen, and for an indirect migration, it (generally) cannot, and that the peer must handle both?

Does that mean in practical sense that clients SHOULD change CID for direct migration, and that servers SHOULD respond to a CID change with a CID change?

Assuming that is what we are seeking, I think it might be a good idea to clarify using a non-RFC2199 term that is effectively what we recommend (I understand that we prefer talking about "endpoints").

-- 
You are receiving 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/2778#issuecomment-507961252
----==_mimepart_5d1c4d97ac70d_68043fc715ccd960340675
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=200328" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/larseggert">@larseggert</a> I like the way you categorize migration.</p>
<blockquote>
<p>Is it sufficient to clarify that for a direct migration, a CID change SHOULD happen, and for an indirect migration, it (generally) cannot, and that the peer must handle both?</p>
</blockquote>
<p>Does that mean in practical sense that clients SHOULD change CID for direct migration, and that servers SHOULD respond to a CID change with a CID change?</p>
<p>Assuming that is what we are seeking, I think it might be a good idea to clarify using a non-RFC2199 term that is effectively what we recommend (I understand that we prefer talking about "endpoints").</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2778?email_source=notifications&amp;email_token=AFTOJKYLRNMT2JE6DSK35XDP5RCRPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDN7JA#issuecomment-507961252">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77EEQD33BRMYHMTGTP5RCRPANCNFSM4HWPX2ZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUXSDZ7KP4AAK3JELP5RCRPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDN7JA.gif" height="1" width="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/2778?email_source=notifications\u0026email_token=AFTOJKYLRNMT2JE6DSK35XDP5RCRPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDN7JA#issuecomment-507961252",
"url": "https://github.com/quicwg/base-drafts/issues/2778?email_source=notifications\u0026email_token=AFTOJKYLRNMT2JE6DSK35XDP5RCRPA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDN7JA#issuecomment-507961252",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c4d97ac70d_68043fc715ccd960340675--


From nobody Tue Jul  2 23:40:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0F540120135 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:40:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tyfKsf01hBCP for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:40: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 5E71C1201B5 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:40:17 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:40:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562136016; bh=fMIDXVwu6+dtw+tddoXQy70M/eimOZE1iROLvZwijJM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HNftN5BjfnFRMz4LJXBkIgaYbBd9XSAYBFQU6wmv54xNxc/EBLGAJZyK/8HCVM5Jj 89rD7CrrnvY7YZbUp3zQhqmWMj84PIrgvDD4MVhsVY0L3/VWD3itEcKOgJFA+CrogI ndUeVJww1RiPScPg1JJH7Xbh/GYLoAsWOriA8Gec=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK74KQC6RXG5YHNOD4V3FGAFBEVBNHHBXIMFLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2870/review/257284725@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2870@github.com>
References: <quicwg/base-drafts/pull/2870@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets change after Retry (#2870)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c4dd06bda1_78d63fee1d8cd96c4114d9"; 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/oXBM6OYsNwqC0q5KyY1mlJ3-9wU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:40:19 -0000

----==_mimepart_5d1c4dd06bda1_78d63fee1d8cd96c4114d9
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/2870#pullrequestreview-257284725
----==_mimepart_5d1c4dd06bda1_78d63fee1d8cd96c4114d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2870?email_source=notifications&amp;email_token=AFTOJK6TPGT77MMLXV2JJFLP5RCVBA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K5U5I#pullrequestreview-257284725">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7CTAF5QU4FX3UV563P5RCVBANCNFSM4H5CMCIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYPQUCJKUTA2CPYE2TP5RCVBA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K5U5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK6TPGT77MMLXV2JJFLP5RCVBA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K5U5I#pullrequestreview-257284725",
"url": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK6TPGT77MMLXV2JJFLP5RCVBA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K5U5I#pullrequestreview-257284725",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c4dd06bda1_78d63fee1d8cd96c4114d9--


From nobody Tue Jul  2 23:43:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A80ED1201C7 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:43:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h90zBSTc9x70 for <quic-issues@ietfa.amsl.com>; Tue,  2 Jul 2019 23:43: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 20B51120135 for <quic-issues@ietf.org>; Tue,  2 Jul 2019 23:43:38 -0700 (PDT)
Date: Tue, 02 Jul 2019 23:43:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562136216; bh=Fk2duB8IPdxfPZ5naJGoz5x6B0mVOX0SGLqziRUZhQs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MpNhFe1j3TQJ3RrcfNF+bxz9GxlWbzWOT319EItbMPs+Bf2XvuGRYRDiEkc3dHSp+ JyRFifiI3nJ9TN7+2S0aTE9KDw626YNnF8raVLzO/KHCzp8ZAt58JZAOzTxMfwUndD KdDYN/JGckBrDb+KmUgnxxwT8NUZc2lCWIs/qRhw=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2YCT3KMHPMBMX7KCF3FGARREVBNHHBXIMFLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2870/review/257285866@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2870@github.com>
References: <quicwg/base-drafts/pull/2870@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets change after Retry (#2870)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c4e98b978b_a883fbf6d2cd96049466e"; 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/zsWwx3rBpBamYjGrZ6s_TlTuAbw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 06:43:40 -0000

----==_mimepart_5d1c4e98b978b_a883fbf6d2cd96049466e
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/2870#pullrequestreview-257285866
----==_mimepart_5d1c4e98b978b_a883fbf6d2cd96049466e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2870?email_source=notifications&amp;email_token=AFTOJK5KINLGFKEX7YYLFJDP5RDBRA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K552Q#pullrequestreview-257285866">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6IPV4V4UEKCUZPTODP5RDBRANCNFSM4H5CMCIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSFZKJFS7C3JHZRVTP5RDBRA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K552Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK5KINLGFKEX7YYLFJDP5RDBRA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K552Q#pullrequestreview-257285866",
"url": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK5KINLGFKEX7YYLFJDP5RDBRA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5K552Q#pullrequestreview-257285866",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c4e98b978b_a883fbf6d2cd96049466e--


From nobody Wed Jul  3 01:09:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BB2EC12069D for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 01:09:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-ZcQ_gf-DvU for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 01:09: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 9B9FF120682 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 01:09:24 -0700 (PDT)
Date: Wed, 03 Jul 2019 01:09:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562141363; bh=k3UjtssjL6JqaUEUtBQG6uoYKrmYzJuMdjQW111fbMk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GnCu3l//IrAvKlTjexp/zEtHgON4kBOXXFdWV6ZYRsqgHybRQhOdsoswU+0Oi9g9M DUxXHwNz3IWKeYctTV+Th9brtKvXE8WrTKzlVKLtAY0tK2Y/vxgUQ2zkkGOBMQ162j lpeHWCBptTtcT0JDmJ4gQu55fjuxKOkaO9cPwuaY=
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KT6QQZVZSNBOHQ4V3FGKTHEVBNHHBWDXNEU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2778/507988206@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2778@github.com>
References: <quicwg/base-drafts/issues/2778@github.com>
Subject: Re: [quicwg/base-drafts] CID change still required in response to migration? (#2778)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c62b3326ea_4a603f9c146cd9601853c1"; 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/15BqEjxtFCWHr-6r4P4VbP3I3js>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 08:09:27 -0000

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

Client don't change CID in indirect migration because it does not aware of it.
Regardless of direct or indirect migration, server knows the packet is coming from new path (new remote address and/or port). 
So the question is server MAY/SHOULD/MUST change CID when sending a packet to new path.

Current draft says that it is MUST to change CID on direct migration:

> An endpoint MUST use a new connection ID if it initiates connection 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/2778#issuecomment-507988206
----==_mimepart_5d1c62b3326ea_4a603f9c146cd9601853c1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Client don't change CID in indirect migration because it does not aware of it.<br>
Regardless of direct or indirect migration, server knows the packet is coming from new path (new remote address and/or port).<br>
So the question is server MAY/SHOULD/MUST change CID when sending a packet to new path.</p>
<p>Current draft says that it is MUST to change CID on direct migration:</p>
<blockquote>
<p>An endpoint MUST use a new connection ID if it initiates connection migration.</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/2778?email_source=notifications&amp;email_token=AFTOJK26KMH5ZBU6DLUU6YTP5RNDHA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDUR3Q#issuecomment-507988206">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62ZM6UNE635Z4JQITP5RNDHANCNFSM4HWPX2ZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2PB5W4GKYZ6VHJHG3P5RNDHA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDUR3Q.gif" height="1" width="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/2778?email_source=notifications\u0026email_token=AFTOJK26KMH5ZBU6DLUU6YTP5RNDHA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDUR3Q#issuecomment-507988206",
"url": "https://github.com/quicwg/base-drafts/issues/2778?email_source=notifications\u0026email_token=AFTOJK26KMH5ZBU6DLUU6YTP5RNDHA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDUR3Q#issuecomment-507988206",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c62b3326ea_4a603f9c146cd9601853c1--


From nobody Wed Jul  3 01:56:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EFC48120186 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 01:56:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vUi-kdrPpyl0 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 01:56: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 0603F120183 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 01:56:41 -0700 (PDT)
Date: Wed, 03 Jul 2019 01:56:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562144200; bh=BLTuhWveRNkvNj4DB4Jljs4m1ZRNOtL+JtMjmxlLT3o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=W84dpIOc/Kw/Mp4dROIhNaTa8JDIzLxCViPF/4tGfpCA1crIUiR2R/lGkhQasIzi0 7A9dwmANzuitCnwrgEo4mMe5WsskhHjApe28oNGEEob3j+qxLLF3fWGbyRMCN9mDmn wzhRl28eL7BCDAlXQBPJtCvVvqPiAll2zksUFo9M=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26QUEE6V7TVWXZLSV3FGQEREVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/257348210@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c6dc8cf745_12c13ff66eecd96c28486"; 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/BYvdpyv983QrU8ucILTA9gCHFJA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 08:56:44 -0000

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

mikkelfj commented on this pull request.



> @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender's rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender's rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 

Would we want some upper limit or this? What happens if idle timeout is not set - just indefinite inactivity?

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

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r299847418">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender&#39;s rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender&#39;s rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 
</pre>
<p>Would we want some upper limit or this? What happens if idle timeout is not set - just indefinite inactivity?</p>

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


From nobody Wed Jul  3 02:02:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F0B6D1201D7 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:02:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4c1qz5qQtc8S for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:02: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 A49AB120183 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 02:02:04 -0700 (PDT)
Date: Wed, 03 Jul 2019 02:02:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562144523; bh=5Ij9Ss5V293B3Nil/vBhKqz/hpPTOkU70jrheZwM/tE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kGtvho3zetshLwaA/IKhOBDAuHbxYU8jqNUNDFRGWAlRwAZxbSUEWky48+AKW4II/ k49JVrHyFHkf3JW/YLwHUmapSGxCtrpHCxYwEgQzuM5QDhnM6Cx5NerVPj00s/dLNo LW+gh11p/rBULRozXRVWGTDzZRSM8kI6g8pEPwMs=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZK4M6LXMACRFXZIGV3FGQYXEVBNHHBWDXNEU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2778/508007306@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2778@github.com>
References: <quicwg/base-drafts/issues/2778@github.com>
Subject: Re: [quicwg/base-drafts] CID change still required in response to migration? (#2778)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c6f0bd25a7_29e33fcfa18cd95c3035e0"; 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/bEIIu5R5D1B5Mg5tbhT_3MpinnU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 09:02:06 -0000

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

An option would also to keep MUST change CID on direct migration and add that a en endpoint SHOULD not reject a migration that doesn't change CID because it might be a valid indirect migration. An endpoint MAY, however, reject indirect migrations that do not change CID if this is privacy is considered more important than broad interop (this is controversial).

-- 
You are receiving 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/2778#issuecomment-508007306
----==_mimepart_5d1c6f0bd25a7_29e33fcfa18cd95c3035e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>An option would also to keep MUST change CID on direct migration and add that a en endpoint SHOULD not reject a migration that doesn't change CID because it might be a valid indirect migration. An endpoint MAY, however, reject indirect migrations that do not change CID if this is privacy is considered more important than broad interop (this is controversial).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2778?email_source=notifications&amp;email_token=AFTOJK42WLWXUIGOR5B5DN3P5RTIXA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZHCQ#issuecomment-508007306">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JPYGLCCA6C34D45DP5RTIXANCNFSM4HWPX2ZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMKQTAL6PYQFCIPPDP5RTIXA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZHCQ.gif" height="1" width="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/2778?email_source=notifications\u0026email_token=AFTOJK42WLWXUIGOR5B5DN3P5RTIXA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZHCQ#issuecomment-508007306",
"url": "https://github.com/quicwg/base-drafts/issues/2778?email_source=notifications\u0026email_token=AFTOJK42WLWXUIGOR5B5DN3P5RTIXA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZHCQ#issuecomment-508007306",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c6f0bd25a7_29e33fcfa18cd95c3035e0--


From nobody Wed Jul  3 02:05:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3030A120755 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:05:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MojEgSES0Epk for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:05: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 C1A6F120733 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 02:05:10 -0700 (PDT)
Date: Wed, 03 Jul 2019 02:05:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562144709; bh=nep146XmP6Bmee70pQ3DkvbnfbWni8pFijbibAROANo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XwfLDaXWfj/VMg1pe/YX2l6xMfFyhW2yefDCaSA5+mWr4U9l4Pc/SVRupYrocs5FC omEvgolllEgXmoxwsvwfuio5xDnafdprdpnvVavBpV7gHUwSUtNhq87izMNtbMXw8W J7qbJ0HwfdkcJLaXeTAeRjSTNy+g0HXBl0gCvpaU=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6W75ASXLYD26OZBG53FGRELEVBNHHBWDXNEU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2778/508008427@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2778@github.com>
References: <quicwg/base-drafts/issues/2778@github.com>
Subject: Re: [quicwg/base-drafts] CID change still required in response to migration? (#2778)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c6fc5c3c19_23433fe2978cd96c2039da"; 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/x61rCWgQEWIRG-sSXe40DNNu4uE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 09:05:16 -0000

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

Either way, I think it would be beneficial if the text has a section with clear definition of the terms "direction migration" and "indirect 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/2778#issuecomment-508008427
----==_mimepart_5d1c6fc5c3c19_23433fe2978cd96c2039da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Either way, I think it would be beneficial if the text has a section with clear definition of the terms "direction migration" and "indirect 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/2778?email_source=notifications&amp;email_token=AFTOJKZE6KESZ3YNTKOBAOTP5RTULA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZP2Y#issuecomment-508008427">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5YHO36NQ3IR42GWHLP5RTULANCNFSM4HWPX2ZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ANEDN225CW7OM3FTP5RTULA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZP2Y.gif" height="1" width="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/2778?email_source=notifications\u0026email_token=AFTOJKZE6KESZ3YNTKOBAOTP5RTULA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZP2Y#issuecomment-508008427",
"url": "https://github.com/quicwg/base-drafts/issues/2778?email_source=notifications\u0026email_token=AFTOJKZE6KESZ3YNTKOBAOTP5RTULA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZDZP2Y#issuecomment-508008427",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1c6fc5c3c19_23433fe2978cd96c2039da--


From nobody Wed Jul  3 02:22:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B74FE120183 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:22:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3ygB-F4Ev3XR for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:22:09 -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 C21091201E7 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 02:22:09 -0700 (PDT)
Date: Wed, 03 Jul 2019 02:22:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562145728; bh=t+5rtlg/9b84gCgSnGNEaDwFEM4PRSz1RqHbrPbV7XE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wpxduL0T2E2FG22vW1vg0ExmNlBK5VVEp5cuPM68MImQA4OZ6xYkxSvg41Bh4gSMr m4qOgs4mVRUaOhatc8+/1NiqqdGASqTl28F2ca6Wlkm8bRPS6zKk+lJcwGPBkpHBBj 1/60igKWNqZIeUET0yk1Wdu6M9MFqwc6d+E3+aSY=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3VCNATLTRRAOD4YAF3FGTEBEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/257362464@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c73c0cf12c_77b13f8a092cd96823478d"; 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/xxFoTLRXvy-SRCTQqAv_JgbDF_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: Wed, 03 Jul 2019 09:22:12 -0000

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

marten-seemann commented on this pull request.



> @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender's rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender's rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 

Why would there be no idle 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/2806#discussion_r299859093
----==_mimepart_5d1c73c0cf12c_77b13f8a092cd96823478d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r299859093">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender&#39;s rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender&#39;s rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 
</pre>
<p>Why would there be no idle timeout?</p>

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


From nobody Wed Jul  3 02:28:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CC14D120743 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:28:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ad8N_G_kEl34 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:28: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 09F6A120733 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 02:28:11 -0700 (PDT)
Date: Wed, 03 Jul 2019 02:28:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562146090; bh=1svLCJSeIaXX9k+UBCXRGCeCQWMprFM41zIKOVMtdig=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BtPomCWOlEVydf7uzjfH5PiwQJ2RRqiCMQtVUJPAIS8cX7QNWqhL03Q35aUelmwPS 6oqrLSHSCyEQgREd05xbLL7Ckf1Al0hGjCBgZIsTDnuifi+O8kmdtlSaUrLDdbu7HU CVKa+pRwP6CyjxZRnN8BOYpiCAkkhQI/ZeaT1b8I=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3AVANAVXBQF3MZAVV3FGT2VEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/257366180@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c752a2a9dd_9443ff6856cd96c31514b"; 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/7zLb9Zz3-3GxPwXUgGaskmtvyIE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 09:28:13 -0000

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

mikkelfj commented on this pull request.



> @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender's rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender's rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 

There should be, and maybe that is the answer. But I think a change was made to allow idle timeout to be indefinite. So I wonder how that will affect 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/2806#discussion_r299862021
----==_mimepart_5d1c752a2a9dd_9443ff6856cd96c31514b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r299862021">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender&#39;s rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender&#39;s rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 
</pre>
<p>There should be, and maybe that is the answer. But I think a change was made to allow idle timeout to be indefinite. So I wonder how that will affect PTO.</p>

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


From nobody Wed Jul  3 02:38:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9C412120019 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:38:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sGhgTy4xaJND for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:38:46 -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 C9AF412002E for <quic-issues@ietf.org>; Wed,  3 Jul 2019 02:38:45 -0700 (PDT)
Date: Wed, 03 Jul 2019 02:38:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562146724; bh=2lul2/k4drggbEm+su6DGBE3MzdnXqkcSe5BoOpEaYE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KjGeDs+1lD7uq19ZJIaT/Hb1QHtvO3SBSAEL9bPKLmhqv9s6t3PDz5uQHgvC13Fst GMgzRnQn61+pNVWjFhyNc6uNCWUvGVKk0TX71WDU/KFgkhM3ee2gZzeB5onGInc8NC VK5nj2/mR4XVckH6XsVocHQ3nwkqU86yj+Bw7o2g=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XWC7VODJX4VSR4LF3FGVCJEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/257372301@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c77a4bd163_29da3fcfa18cd95c4470e8"; 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/jtRCRsbwivLs4Y-zV0hrqVF2izM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 09:38:48 -0000

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

marten-seemann commented on this pull request.



> @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender's rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender's rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 

I don't remember any change like that. Every peer decides on its idle timeout. So even if a peer decides to have an infinite idle timeout (why would you do that to yourself?), once you reach a PTO duration on the order of what you might consider a typical idle timeout (let's say 30 seconds), exponential backoff should take care of your concern.

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

<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r299866909">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender&#39;s rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender&#39;s rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 
</pre>
<p>I don't remember any change like that. Every peer decides on its idle timeout. So even if a peer decides to have an infinite idle timeout (why would you do that to yourself?), once you reach a PTO duration on the order of what you might consider a typical idle timeout (let's say 30 seconds), exponential backoff should take care of your concern.</p>

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


From nobody Wed Jul  3 02:41:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2E7EE12003E for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:41:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zFqf5M_suFMX for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 02:41: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 8516D120019 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 02:41:04 -0700 (PDT)
Date: Wed, 03 Jul 2019 02:41:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562146863; bh=14lrAR/vEsz4ylKFUQ32iR7/kNlyMiOTKLC0CrYP6uQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zq5mbxGgrp1nqX99omaQE0Cd5CvsAuk8FmS9ctPmGlw3HDPHhlWhttiIut+TUK7ej JR82KmsjePZSc5QZgxY+HN2WgOcUuvQiBwLab2QtRS0c3ekXfuxdEL7gkeYaV6/gSH ff+EXHbZHB+Uh4y7MaEo6/MJyIDO+jXYJWwTOhcM=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HRU4WHQYKJWWI5W53FGVK7EVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/257373618@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1c782f5c167_2a553feddb4cd96c467927"; 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/cDh2-FSrkP1y_8JvrHFasYW1klE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 09:41:06 -0000

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

mikkelfj commented on this pull request.



> @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender's rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender's rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 

Thats what I am asking - should the PTO just grow, or would you clamp it to 30 seconds 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/2806#discussion_r299867970
----==_mimepart_5d1c782f5c167_2a553feddb4cd96c467927
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r299867970">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender&#39;s rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender&#39;s rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 
</pre>
<p>Thats what I am asking - should the PTO just grow, or would you clamp it to 30 seconds or something?</p>

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


From nobody Wed Jul  3 09:48:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D1AB412027B for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 09:48:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WUiV-zeV_8mG for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 09:48: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 C71151200F9 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 09:48:17 -0700 (PDT)
Date: Wed, 03 Jul 2019 09:48:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562172496; bh=9V58wbYQRwqnty3FJHBnYzFioOsukYRE+8Bir7V6ncA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T8bcQF/ATDgBJZLcba1btS73+lI/85bkiDiczJ0+s8WlP5xiFb4KnVIIsdxAXuT9X vEcTTVPi4tdO9FzM5rvjFQk54bEN6Hejipb5adhljM9QEzkUy/SR5r2vxEqPM/ySR/ lkCgV0dyOYPdUBB81uhzFcV2fkkaaJ7j+c9PUG7Y=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64RK5IAKT3D7Q5OP53FIHNBEVBNHHBWDXNEU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2778/508171246@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2778@github.com>
References: <quicwg/base-drafts/issues/2778@github.com>
Subject: Re: [quicwg/base-drafts] CID change still required in response to migration? (#2778)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1cdc5093974_42db3f9315ccd96c48335"; 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/wfC7rrXY5fMzz_HF_OXbTh8nbG4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 16:48:20 -0000

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

@tatsuhiro-t bit when a server sees the client using a new path (because of a NAT rebind) the server is not the one *initiating* the 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/2778#issuecomment-508171246
----==_mimepart_5d1cdc5093974_42db3f9315ccd96c48335
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=404610" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tatsuhiro-t">@tatsuhiro-t</a> bit when a server sees the client using a new path (because of a NAT rebind) the server is not the one <em>initiating</em> the 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/2778?email_source=notifications&amp;email_token=AFTOJKYYYJAZKJR6W4L5KADP5TJ5BA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFBH3Q#issuecomment-508171246">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JWWYEEWDGHTOYNY3P5TJ5BANCNFSM4HWPX2ZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5D4I3F6RJIWT6JNTTP5TJ5BA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFBH3Q.gif" height="1" width="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/2778?email_source=notifications\u0026email_token=AFTOJKYYYJAZKJR6W4L5KADP5TJ5BA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFBH3Q#issuecomment-508171246",
"url": "https://github.com/quicwg/base-drafts/issues/2778?email_source=notifications\u0026email_token=AFTOJKYYYJAZKJR6W4L5KADP5TJ5BA5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFBH3Q#issuecomment-508171246",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1cdc5093974_42db3f9315ccd96c48335--


From nobody Wed Jul  3 10:49:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A1C4A120314 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 10:49:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3yUhKkTv-2vd for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 10:49: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 35AD81202F9 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 10:49:30 -0700 (PDT)
Date: Wed, 03 Jul 2019 10:49:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562176168; bh=gKqZZj4JLbRruHgO1wtbaMIf4qzOy1yH6km0NA9mHwM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bTVKs7TPJhnE4R/l9sbmTUGH4Lh6Mwo+C5E/ijekEcyG4XVEvxTlUfx92n7C5ufvo SRf9lqYj8uEKAMGBl6PSgk2DD5/0MRYiBdZhMrLFUrbLsYYiRg9EeKyMrX/gjjar1S UeEwYSTElTDNEeAZ3PNw+x/cdWamH9gQC3tm+New=
From: Nick Harper <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3L2Y5J7A7DB5JWU4F3FIOSREVBNHHBWWQD7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2823/508192699@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2823@github.com>
References: <quicwg/base-drafts/issues/2823@github.com>
Subject: Re: [quicwg/base-drafts] Do Initial secrets change after Retry packet? (#2823)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1ceaa8df062_5ca73fa1364cd9687670"; 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/S6jjaKndinbsQ5Zd-V42e8QToNI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 17:49:32 -0000

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

At the minimum, the first sentence of the "Initial Secrets" section needs to be revised. I'd prefer to understand the design rationale for when initial keys change (and possibly incorporate that into the edit). Right now I don't understand the "why" of option 3.

-- 
You are receiving 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/2823#issuecomment-508192699
----==_mimepart_5d1ceaa8df062_5ca73fa1364cd9687670
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>At the minimum, the first sentence of the "Initial Secrets" section needs to be revised. I'd prefer to understand the design rationale for when initial keys change (and possibly incorporate that into the edit). Right now I don't understand the "why" of option 3.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2823?email_source=notifications&amp;email_token=AFTOJK75VAXROFTLOI3SEMDP5TRCRA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFGPOY#issuecomment-508192699">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ULRB643QHLVFHVPDP5TRCRANCNFSM4HZ6U5CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MTSJ3NPF45WCRAFLP5TRCRA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFGPOY.gif" height="1" width="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/2823?email_source=notifications\u0026email_token=AFTOJK75VAXROFTLOI3SEMDP5TRCRA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFGPOY#issuecomment-508192699",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=notifications\u0026email_token=AFTOJK75VAXROFTLOI3SEMDP5TRCRA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFGPOY#issuecomment-508192699",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1ceaa8df062_5ca73fa1364cd9687670--


From nobody Wed Jul  3 10:53:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E519012038E for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 10:53:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XXBNpwwbxu0g for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 10:53: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 E28071202F9 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 10:53:09 -0700 (PDT)
Date: Wed, 03 Jul 2019 10:53:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562176388; bh=1JKuJegUrFZDVSKgA7Q4cLraYGO1hPkktm28jIBMksU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jAKe0CRI6YtsaJF2ZR0pjH2DV1g4MXcecdDcp8yK9aqDcNduQkxmsaLqzsKVyLb/E LMZHidEq76pv1v/MZyhxxqQCpRY3Bn362jl0iLCb90EJ3AacSNMaf45fy/KggKmUu8 85KfAsZKndENoR1TEOreDzgiCo2M/0xKDM8gPPdQ=
From: Nick Harper <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK77HXVTVLG4NJ5VWBN3FIPAJEVBNHHBXIMFLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2870/c508194040@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2870@github.com>
References: <quicwg/base-drafts/pull/2870@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets change after Retry (#2870)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1ceb84cb67f_4e913fdd7c0cd96c116243"; 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/5u5Jqr9pducqbTi84vANREmtR9U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 17:53:12 -0000

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

I think this also needs to change the first sentence that currently says =
"Initial packets are protected with a secret derived from the Destination=
 Connection ID field from the client=E2=80=99s first Initial packet of th=
e connection."=0D
=0D
If we're attempting to describe the behavior that people currently have i=
mplemented (where Initial keys change on a Retry packet but nothing else)=
, the sentence I've quoted above is false.=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/2870#issuecomment-508194040=

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

<p>I think this also needs to change the first sentence that currently sa=
ys "Initial packets are protected with a secret derived from the Destinat=
ion Connection ID field from the client=E2=80=99s first Initial packet of=
 the connection."</p>=0D
<p>If we're attempting to describe the behavior that people currently hav=
e implemented (where Initial keys change on a Retry packet but nothing el=
se), the sentence I've quoted above is false.</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/2870?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK64NQTE2BMGCZED5MDP5TRQJA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFVREXG43VMV=
BW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFGZ6A#issuecomment-508194040">view it on =
GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-au=
th/AFTOJK44H6FOEEFL3GXG2M3P5TRQJANCNFSM4H5CMCIQ">mute the thread</a>.<img=
 src=3D"https://github.com/notifications/beacon/AFTOJKYGUTTGTM6HW37RRGLP5=
TRQJA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOOR=
PWSZGODZFGZ6A.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/2870?email_source=3D=
notifications\u0026email_token=3DAFTOJK64NQTE2BMGCZED5MDP5TRQJA5CNFSM4H5C=
MCI2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFGZ6A#i=
ssuecomment-508194040",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2870?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK64NQTE2BMGCZED5MDP5TRQJA5CNFSM4H5CMC=
I2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFGZ6A#iss=
uecomment-508194040",=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_5d1ceb84cb67f_4e913fdd7c0cd96c116243--


From nobody Wed Jul  3 13:18:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 01BF6120663 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 13:18:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-yG78mnpa4q for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 13:18: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 17081120647 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 13:18:36 -0700 (PDT)
Date: Wed, 03 Jul 2019 13:18:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562185114; bh=YYaJFGxTE68XywCoFMtH7XYrazbz1sDHitox/vTgUvo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DxAnA4/8kml7fH4N2m9dHdXB6YLWctMf464fqdOz4v0GfNN0+uf94AGKH9bbXGp8N BJZ91ZhD+KXfbORZIhe3YHuFnV/V8tqzHPwUvCynov/qIQDnoWapRYzb/PmSiLrh/t K0CmgVL4ccGX9+J8VQ9N/YnwAp49CXcxTKiW7RlU=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2AQI7JU677CGVNS7F3FJABVEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/508240533@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1d0d9aa0b21_2a3d3fb374ccd9602613da"; 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/u2L_cOPFLwbctZmN0VMiYE8LPpU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 20:18:44 -0000

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

@martinthomson What is this adversary trying to accomplish here? Can you elaborate on threat vector? The number 39 is reducing the reliability of the protocol, what security property does it give us in exchange?

-- 
You are receiving 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/2869#issuecomment-508240533
----==_mimepart_5d1d0d9aa0b21_2a3d3fb374ccd9602613da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> What is this adversary trying to accomplish here? Can you elaborate on threat vector? The number 39 is reducing the reliability of the protocol, what security property does it give us in exchange?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK4ZH765GQOX65RVIJLP5UCRVA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSFFI#issuecomment-508240533">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6EMFPYQUGVK2WWVOLP5UCRVANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3YR5OVVCO6RA2JDDTP5UCRVA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSFFI.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK4ZH765GQOX65RVIJLP5UCRVA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSFFI#issuecomment-508240533",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK4ZH765GQOX65RVIJLP5UCRVA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSFFI#issuecomment-508240533",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1d0d9aa0b21_2a3d3fb374ccd9602613da--


From nobody Wed Jul  3 13:20:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A408C1204AD for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 13:19:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F0XjW-Ok9T-K for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 13:19: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 E5CB312068B for <quic-issues@ietf.org>; Wed,  3 Jul 2019 13:19:56 -0700 (PDT)
Date: Wed, 03 Jul 2019 13:19:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562185195; bh=a0l84Pi6yHybrB+qBZk5mfEZTtmqx2UkPLm7lEsOau0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SJ7hsPY6HLL0cO5HP8+HIVTVtxYsXW3ajTpe8ZsBnqwdCvu/3wI3Bk6ycKcyL66QV LVTXz07Ghq0xWQl+CQUYUZM63k6mXGNGUtauhtblNxRLH9NGv+ZwL/AuDpHB4Olofd KZEbCBUSXX5yWyY2jNwYexxMX0nFH4NYIBa0ZpUE=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6TOU2EQUPRPES43ZN3FJAGXEVBNHHBW2NK2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2837/508240955@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2837@github.com>
References: <quicwg/base-drafts/issues/2837@github.com>
Subject: Re: [quicwg/base-drafts] Does a Retry really need to change the CID? (#2837)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1d0debbfff9_66953f8fc1ecd96c2302e3"; 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/gaOi6GRPnqwWe_JkzlJ44v9mBHQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 20:20:04 -0000

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

@larseggert If we decide to not change the current requirement to change the CID, this issue should track adding editorial text explaining why we require changing 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/2837#issuecomment-508240955
----==_mimepart_5d1d0debbfff9_66953f8fc1ecd96c2302e3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=200328" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/larseggert">@larseggert</a> If we decide to not change the current requirement to change the CID, this issue should track adding editorial text explaining why we require changing 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/2837?email_source=notifications&amp;email_token=AFTOJK7ZZUOS2NUSFZVJ5ADP5UCWXA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSIOY#issuecomment-508240955">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK35M2Z5YFRMOMY2NG3P5UCWXANCNFSM4H266NGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5VF2HPNEER2B72PE3P5UCWXA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSIOY.gif" height="1" width="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/2837?email_source=notifications\u0026email_token=AFTOJK7ZZUOS2NUSFZVJ5ADP5UCWXA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSIOY#issuecomment-508240955",
"url": "https://github.com/quicwg/base-drafts/issues/2837?email_source=notifications\u0026email_token=AFTOJK7ZZUOS2NUSFZVJ5ADP5UCWXA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZFSIOY#issuecomment-508240955",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1d0debbfff9_66953f8fc1ecd96c2302e3--


From nobody Wed Jul  3 14:47:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7C43C120100 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 14:47:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3f8eGJekVOLy for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 14:47: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 A5DAE1200DB for <quic-issues@ietf.org>; Wed,  3 Jul 2019 14:47:44 -0700 (PDT)
Date: Wed, 03 Jul 2019 14:47:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562190463; bh=lEnnLKwH971H7QAC9DUlNNZgaXOmrWeRVdqXlSKdUvs=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=nenZgBKZYZg3kDDtT/17BAFiWQKyvtot5b1vmOGVFOvK4hpV6u67uFX56oY+SSCg4 V5B7BqehIhdjh1Bt7PiKzbs4wlzdNrP3/gWKlRRxsVIECyO++PjE8ktpc31TDhMxss CCEWS9y2wWbyBSpaMovZlCNDF8tfwqWVP122RAf8=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3DUCH2Y6GO7HWAMO53FJKP7EVBNHHBXJ4VXY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2871@github.com>
Subject: [quicwg/base-drafts] Retransmission Instructions do not include NEW_TOKEN (#2871)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1d227f4b5d8_114b3fec9a8cd9642605d"; 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/Vqtr2KpZzu0Q2L7AIoUY7zAPt9Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Jul 2019 21:47:47 -0000

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

Sec 13.2 of QUIC Transport explains what to do for the loss of a packet for every stream type except NEW_TOKEN.

IMO it's nice but not critical to repair this loss, but I care less about how we resolve it than that we write it 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/issues/2871
----==_mimepart_5d1d227f4b5d8_114b3fec9a8cd9642605d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Sec 13.2 of QUIC Transport explains what to do for the loss of a packet for every stream type except NEW_TOKEN.</p>
<p>IMO it's nice but not critical to repair this loss, but I care less about how we resolve it than that we write it 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/issues/2871?email_source=notifications&amp;email_token=AFTOJK7Y6P2UXM3ZVEWLIRTP5UM77A5CNFSM4H5L6R7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5HSW7A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63QTXAGVVWBPZJ3KDP5UM77ANCNFSM4H5L6R7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4XWUZYL47W73GD45TP5UM77A5CNFSM4H5L6R7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5HSW7A.gif" height="1" width="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/2871?email_source=notifications\u0026email_token=AFTOJK7Y6P2UXM3ZVEWLIRTP5UM77A5CNFSM4H5L6R7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5HSW7A",
"url": "https://github.com/quicwg/base-drafts/issues/2871?email_source=notifications\u0026email_token=AFTOJK7Y6P2UXM3ZVEWLIRTP5UM77A5CNFSM4H5L6R7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5HSW7A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1d227f4b5d8_114b3fec9a8cd9642605d--


From nobody Wed Jul  3 18:34:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 08A0F1200E7 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:34:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CmA5LcHw_-bE for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:34: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 00C911200D7 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 18:34:05 -0700 (PDT)
Date: Wed, 03 Jul 2019 18:34:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562204044; bh=iJrySXQ/bGUn5tnqeIWyj5BUFhRxxMnAihPGuFYs82k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yLxnTu0yRXDOxf+5QXo6fQe7lO3No95FlWVikXHhpM2ljINYSrbrMELqUQF6gL4m8 UYcWdue6zZC3IC9gPhmJ+Fgd0D7TGYekcVi9U/9+xtfwJSlSptI5n3Gbr9pFu7UWm1 hy3A0BJAA1gWfJS+r+e6GJuE2EkLMQxPFiL35bBM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64AD2UTNGQSRL57DV3FKFAZEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/508306030@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1d578ca93c4_74d3f9332ccd9682127b1"; 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/Pz1LtegqkHa6ts9k5hCweh9bqWA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 04 Jul 2019 01:34:08 -0000

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

I believe that we wanted to avoid the observer from being able to recognize resets.  The idea being that recognition preceded some sort of action.  The worst I can imagine here is dropping state prior to the endpoints being ready for that.  For instance, forwarding the packet and then dropping NAT bindings immediately, which - if that packet is lost - might leave the recipient with the belief that it still has an active connection when it does not.

The point being that we're attempting to avoid facilitation of bad behaviour.

Perhaps you can talk about the way in which you perceive reliability being reduced.  39 isn't exactly a very large number, nor is it a hard 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/issues/2869#issuecomment-508306030
----==_mimepart_5d1d578ca93c4_74d3f9332ccd9682127b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I believe that we wanted to avoid the observer from being able to recognize resets.  The idea being that recognition preceded some sort of action.  The worst I can imagine here is dropping state prior to the endpoints being ready for that.  For instance, forwarding the packet and then dropping NAT bindings immediately, which - if that packet is lost - might leave the recipient with the belief that it still has an active connection when it does not.</p>
<p>The point being that we're attempting to avoid facilitation of bad behaviour.</p>
<p>Perhaps you can talk about the way in which you perceive reliability being reduced.  39 isn't exactly a very large number, nor is it a hard 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/issues/2869?email_source=notifications&amp;email_token=AFTOJK5T3MSUFNVRNW7IIC3P5VHQZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCE3Q#issuecomment-508306030">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6MRB6VVR3XJGMFP2TP5VHQZANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NLADHP7YPLHAJMRTP5VHQZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCE3Q.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK5T3MSUFNVRNW7IIC3P5VHQZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCE3Q#issuecomment-508306030",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK5T3MSUFNVRNW7IIC3P5VHQZA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCE3Q#issuecomment-508306030",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1d578ca93c4_74d3f9332ccd9682127b1--


From nobody Wed Jul  3 18:36:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BD9041200F9 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:36:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 FlcV8poum4MH for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:36:05 -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 3651A1200D7 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 18:36:05 -0700 (PDT)
Date: Wed, 03 Jul 2019 18:36:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562204164; bh=0HFVv/TNyZ6GIEU0legn7nQxeOSFNX3B1ISFEiWP10U=; h=Date:From:To:Subject:From; b=qUoKICTHQM5bTHEhQwLGKKiJw20iOOvd1ngEgwGp06RSwKfQTK0wEchB0f5HSWpZW AHuwLo2IWy1vNHVKq0Y6ZkuVUN3ogmAFoY55bQRz56g3TLeuEAFJIcrybqnAiP8sL1 zuCSzoLDyWh0eZK9p/gGwqxFGzOTynlMj75uGwL4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/retry-rekey/35c7a5-b71c60@github.com>
Subject: [quicwg/base-drafts] b71c60: First Initial is misleading
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J16MsMGXWI9mFZTYp53dmP6HGmI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 04 Jul 2019 01:36:07 -0000

  Branch: refs/heads/retry-rekey
  Home:   https://github.com/quicwg/base-drafts
  Commit: b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd
      https://github.com/quicwg/base-drafts/commit/b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-04 (Thu, 04 Jul 2019)

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

  Log Message:
  -----------
  First Initial is misleading



From nobody Wed Jul  3 18:36:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E7E1F1200E7 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:36:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Hjwfzlf9-AES for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:36: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 444681200D7 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 18:36:13 -0700 (PDT)
Date: Wed, 03 Jul 2019 18:36:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562204171; bh=d02bXIUT6V5AqCW2sn3zc7eXCgK2tPemAGetbwWBrkY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LaCvDl93SdquP433Q8ArF6gVE3HYUPLIzSCQDqEq18HdncDtwThVRlRDgLJBVvmGa nG3u4R26E8m781Rr7AY9nA5G3Y2sbdUCKZHzIUAFLdtQJXY0WUm8pmLB4/9YFxFmy4 VFzLQdKelFssgqaplF6/Pnqq6MCif/nzL5dHTcHM=
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/2870/push/3781448536@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2870@github.com>
References: <quicwg/base-drafts/pull/2870@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets change after Retry (#2870)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1d580bd10ce_74b3f9332ccd9681579fa"; 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/Nt0zhocA02wTQA0J5dco9IkYuOA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 04 Jul 2019 01:36:15 -0000

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

@martinthomson pushed 1 commit.

b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd  First Initial is misleading


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2870/files/35c7a5982639ba2e965e0c62faa608b68797cac8..b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd

----==_mimepart_5d1d580bd10ce_74b3f9332ccd9681579fa
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/b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd">b71c607</a>  First Initial is misleading</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/2870/files/35c7a5982639ba2e965e0c62faa608b68797cac8..b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd?email_source=notifications&amp;email_token=AFTOJK4MYZDHDVXEPUAD5FLP5VHYXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIMBSGIZDSNKQOVZWQIZTG44DCNBUHA2TGNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5VIT4UOYLF42B7TXTP5VHYXANCNFSM4H5CMCIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY35VCA3OKHZLYF633P5VHYXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIMBSGIZDSNKQOVZWQIZTG44DCNBUHA2TGNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2870/files/35c7a5982639ba2e965e0c62faa608b68797cac8..b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd?email_source=notifications\u0026email_token=AFTOJK4MYZDHDVXEPUAD5FLP5VHYXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIMBSGIZDSNKQOVZWQIZTG44DCNBUHA2TGNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2870/files/35c7a5982639ba2e965e0c62faa608b68797cac8..b71c607b6e43bf5ae79b5859b1aabc6c936ad0bd?email_source=notifications\u0026email_token=AFTOJK4MYZDHDVXEPUAD5FLP5VHYXA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIMBSGIZDSNKQOVZWQIZTG44DCNBUHA2TGNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1d580bd10ce_74b3f9332ccd9681579fa--


From nobody Wed Jul  3 18:37:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4FAAF1204AD for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:37:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MfeVSj0r5csh for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:37: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 584C01206B9 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 18:37:17 -0700 (PDT)
Date: Wed, 03 Jul 2019 18:37:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562204235; bh=xfaVKekhC93DX6nayBkwiaRNWlHmg2kNTrwBj67Xfxw=; h=Date:From:To:Subject:From; b=X/6ff/+h4Gey8y2ZeD30iy6GHQiG7gSViDB+Ut9XG/jNKbnZmTCojMZ5GVV1I9quF BOLPVX97mArbCRvRaPg/5D6LBz6fED7b8OaU5+kISEbz6Job5054Qu8DIvh6pqb2sV EJSSunIksoW7levknzlF92P8fy1d1JojDzB+Gk/w=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f6bd94-91dd17@github.com>
Subject: [quicwg/base-drafts] 91dd17: Script updating gh-pages from b71c607b. [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/MGzu_Ifc7QOs9pyQXMcIz6eP1f0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 04 Jul 2019 01:37:21 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 91dd178c05fc9824567a863773adb0babb75b640
      https://github.com/quicwg/base-drafts/commit/91dd178c05fc9824567a863773adb0babb75b640
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-04 (Thu, 04 Jul 2019)

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

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



From nobody Wed Jul  3 18:38:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E8DEA1200E7 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:38:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UgCM55iSE_nc for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:37: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 639931200D7 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 18:37:59 -0700 (PDT)
Date: Wed, 03 Jul 2019 18:37:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562204277; bh=qUDWUmuxfeHrsnNOf+RoosVub9Vc4WIQE0b0Yva/H5I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zzgso3B4Bmn6t6+hSTw12+5OqIg0nrrRSPkP8WjtYVUKXblWULFG3ZbaJvBW8FvJ1 aTs1hpXIaZW7Gf5GYpdzabWSvBGSnLAzsYy9Lr8wyhBdqqwTr+LIrlV6TQ4Blir/EA 4gka7rRsx1yP4FngHlpi1UEDcjq6215j8K28eon4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72YBC5FSHMNEZKYKV3FKFPLEVBNHHBWWQD7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2823/508306625@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2823@github.com>
References: <quicwg/base-drafts/issues/2823@github.com>
Subject: Re: [quicwg/base-drafts] Do Initial secrets change after Retry packet? (#2823)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1d5875db3b6_2f6b3fb8c84cd96417677c"; 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/e-B-LMNmAUzyWEQWYGkA_oyIXuY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 04 Jul 2019 01:38:02 -0000

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

I don't believe that we have any responsibility to document "why" for anything.  In this case, my understanding is that Reset is intended to be largely stateless.  If it were stateless, then the token would need to carry the original destination connection ID (or the derived key), and that would need to be extracted before the packet could be 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/issues/2823#issuecomment-508306625
----==_mimepart_5d1d5875db3b6_2f6b3fb8c84cd96417677c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't believe that we have any responsibility to document "why" for anything.  In this case, my understanding is that Reset is intended to be largely stateless.  If it were stateless, then the token would need to carry the original destination connection ID (or the derived key), and that would need to be extracted before the packet could be processed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2823?email_source=notifications&amp;email_token=AFTOJK76XHRV3ARCD3TDT3DP5VH7LA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCJQI#issuecomment-508306625">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VZEYR7PEDKNWUDN3P5VH7LANCNFSM4HZ6U5CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ7TDNWM3WEJBHOYV3P5VH7LA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCJQI.gif" height="1" width="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/2823?email_source=notifications\u0026email_token=AFTOJK76XHRV3ARCD3TDT3DP5VH7LA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCJQI#issuecomment-508306625",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=notifications\u0026email_token=AFTOJK76XHRV3ARCD3TDT3DP5VH7LA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZGCJQI#issuecomment-508306625",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1d5875db3b6_2f6b3fb8c84cd96417677c--


From nobody Wed Jul  3 18:39:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 27C641200F9 for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:39:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Gn6TjPF4BQvc for <quic-issues@ietfa.amsl.com>; Wed,  3 Jul 2019 18:39: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 739061200D7 for <quic-issues@ietf.org>; Wed,  3 Jul 2019 18:39:14 -0700 (PDT)
Date: Wed, 03 Jul 2019 18:39:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562204353; bh=bCKJsaZ5NS2IlGBKVQ9xn8406+5FTZ1I2qhNzgcmxjI=; h=Date:From:To:Subject:From; b=h1222h+hepGDGNI75MykB4Eff3AAN2JlT/PWIAnZY4tXeFiMCFQLmT4y4ZxRWbUBh nwGglE+ctvE5rA7aT132vt6sRcOjU/ducXA11qrMPbqfSsMF9OYxrKRGm9jndwYb7Y 9UiOo+4LKROSTBwkN4iU8n9KrNAZec7dMdrD3eg4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/91dd17-af4cde@github.com>
Subject: [quicwg/base-drafts] af4cde: Script updating issues at 2019-07-04T01:39:07Z. [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/GbztDthLHxhNMWF-FGjRLBA2QF4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 04 Jul 2019 01:39:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: af4cdefeee6bcb463e7629c3ff7bbdb9aba7eed4
      https://github.com/quicwg/base-drafts/commit/af4cdefeee6bcb463e7629c3ff7bbdb9aba7eed4
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-04 (Thu, 04 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-04T01:39:07Z. [ci skip]



From nobody Fri Jul  5 04:24:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 979A21201DC for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 04:24:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wR0yqZJ7QXHF for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 04:23:59 -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 AD281120261 for <quic-issues@ietf.org>; Fri,  5 Jul 2019 04:23:59 -0700 (PDT)
Date: Fri, 05 Jul 2019 04:23:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562325838; bh=9K+mIlbFa6yn3HW50292W7euV8+k29iNNDae5hd3NX0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=JLn9N1MbHguCmUpPIam8PkhGwLAPe5y+V5d22t0/xdyKm8MB8HvsU3y7ao+YwFmOq zvFwaUs1O6nTsuR9dmKsxG37tw4g4UTmizXXUjX4DRczaZilWcUH1fu9OTPZLBZf22 Ky3VNl7W/c9FIoyxEVPusSFYbGQhT0W2AOZZNyM0=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7A3JWQ5UG6IFZ3WHF3FRS45EVBNHHBXMJJVQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2872@github.com>
Subject: [quicwg/base-drafts] move definition of active_connection_id_limit to where it belongs (#2872)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1f334ecb946_152e3fe44a6cd9641077032"; 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/ndu7_Cts8f-EfY0-XYDI5lvPptg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 11:24:09 -0000

----==_mimepart_5d1f334ecb946_152e3fe44a6cd9641077032
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/2872

-- Commit Summary --

  * move definition of active_connection_id_limit to where it belongs

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2872.patch
https://github.com/quicwg/base-drafts/pull/2872.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/2872

----==_mimepart_5d1f334ecb946_152e3fe44a6cd9641077032
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/2872'>https://github.com/quicwg/base-drafts/pull/2872</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>move definition of active_connection_id_limit to where it belongs</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2872.patch'>https://github.com/quicwg/base-drafts/pull/2872.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2872.diff'>https://github.com/quicwg/base-drafts/pull/2872.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/2872?email_source=notifications&amp;email_token=AFTOJKYMXY4R3KFXIZMNY5TP54VM5A5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5RFGWA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5OF7GKEB6LMNEP4JLP54VM5ANCNFSM4H6KOGBA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7GSF4BZT5AXYEP2C3P54VM5A5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5RFGWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2872?email_source=notifications\u0026email_token=AFTOJKYMXY4R3KFXIZMNY5TP54VM5A5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5RFGWA",
"url": "https://github.com/quicwg/base-drafts/pull/2872?email_source=notifications\u0026email_token=AFTOJKYMXY4R3KFXIZMNY5TP54VM5A5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5RFGWA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1f334ecb946_152e3fe44a6cd9641077032--


From nobody Fri Jul  5 05:16:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AA8CF12028C for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 05:16:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id z7ZgHIko2Afl for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 05:16: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 697501202DA for <quic-issues@ietf.org>; Fri,  5 Jul 2019 05:16:18 -0700 (PDT)
Date: Fri, 05 Jul 2019 05:16:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562328977; bh=lfZyqFiKuRmjuXHk14i6Gn9TmSQMAECwfkUDc1f5nbE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Z4hrh9Fxh/D79wB1WslSEWigBiQPkPbGZr0w0y3lZDoMfxh0oaG39QyFVYgaBJWp+ ouzheQFBf8fYB/u50tZSCfZg1jOLR6QdwXViQOt3p2sR/iLo2m1MOFDpTDfvi55Q4I wcpip35UKwA3FwuS4588qgboyuiceobR2oj/IZeo=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2DQYJDK7GJBGPXTFV3FRZBBEVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873@github.com>
Subject: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1f3f91736b_52ca3fe0d06cd96410892e4"; 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/_pXgDPPnos0twtm4188N9pn4rgE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 12:16:29 -0000

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

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

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

-- Commit Summary --

  * grease transport parameters

-- File Changes --

    M draft-ietf-quic-recovery.md (2)
    M draft-ietf-quic-transport.md (11)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2873.patch
https://github.com/quicwg/base-drafts/pull/2873.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/2873

----==_mimepart_5d1f3f91736b_52ca3fe0d06cd96410892e4
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 #2550.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="424993268" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2550" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2550/hovercard" href="https://github.com/quicwg/base-drafts/issues/2550">#2550</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/2873'>https://github.com/quicwg/base-drafts/pull/2873</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>grease transport parameters</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2873/files#diff-0">draft-ietf-quic-recovery.md</a>
    (2)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2873/files#diff-1">draft-ietf-quic-transport.md</a>
    (11)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2873.patch'>https://github.com/quicwg/base-drafts/pull/2873.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2873.diff'>https://github.com/quicwg/base-drafts/pull/2873.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/2873?email_source=notifications&amp;email_token=AFTOJKZKT6DKC3BVBP2NGLTP543RDA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5ROHEQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZEUG6ZLQUKVTTY3UDP543RDANCNFSM4H6KZHXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7B54ISZVOEQFC3J2TP543RDA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5ROHEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJKZKT6DKC3BVBP2NGLTP543RDA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5ROHEQ",
"url": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJKZKT6DKC3BVBP2NGLTP543RDA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5ROHEQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d1f3f91736b_52ca3fe0d06cd96410892e4--


From nobody Fri Jul  5 06:04:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D4FDD1200B2 for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 06:04:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i1Wtga07rJas for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 06:04:22 -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 3451A120026 for <quic-issues@ietf.org>; Fri,  5 Jul 2019 06:04:22 -0700 (PDT)
Date: Fri, 05 Jul 2019 06:04:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562331861; bh=92bO8X/T7ByUXOA/6TF24izrCn1kZkPtIiQN0HFA744=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ACRV22sKQXcKdIR9sXO2bnCkBcpM42LIzXeKG5t4fjXwBXJOujk52gsXgDzrGHQBt jwSo1tGx3zhpn16R/aiYWGba3eNuAY2J1bAWa66UZwgK/IMcXjVAOJcIdXxLtpaPqq 572OPbN0ywdeA002yLnlG8ezjE9rRpWAUw4H7uAo=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TR2S6OJL2WPZVB2V3FR6VLEVBNHHBWWQD7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2823/508752190@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2823@github.com>
References: <quicwg/base-drafts/issues/2823@github.com>
Subject: Re: [quicwg/base-drafts] Do Initial secrets change after Retry packet? (#2823)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1f4ad53375c_3ed43fc1416cd96818166ac"; 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/Gs6lpcignGh3_5XrR0M3i74GMHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 13:04:24 -0000

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

> I don't believe that we have any responsibility to document "why" for anything.

+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/2823#issuecomment-508752190
----==_mimepart_5d1f4ad53375c_3ed43fc1416cd96818166ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I don't believe that we have any responsibility to document "why" for anything.</p>
</blockquote>
<p>+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/2823?email_source=notifications&amp;email_token=AFTOJKZ76J2PHJ3PMLI4JA3P55BFLA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZJPCPQ#issuecomment-508752190">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5EWU5I6SXI23S3OZTP55BFLANCNFSM4HZ6U5CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Z2IFP2WSFDQQ2P5TP55BFLA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZJPCPQ.gif" height="1" width="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/2823?email_source=notifications\u0026email_token=AFTOJKZ76J2PHJ3PMLI4JA3P55BFLA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZJPCPQ#issuecomment-508752190",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=notifications\u0026email_token=AFTOJKZ76J2PHJ3PMLI4JA3P55BFLA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZJPCPQ#issuecomment-508752190",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1f4ad53375c_3ed43fc1416cd96818166ac--


From nobody Fri Jul  5 13:10:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 038CC12010D for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 13:09:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rHILpMGAl0Dq for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 13:09: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 CC0091200EF for <quic-issues@ietf.org>; Fri,  5 Jul 2019 13:09:56 -0700 (PDT)
Date: Fri, 05 Jul 2019 13:09:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562357395; bh=e9U0sMyxkaWbW9tS/TqGUAEFc/kIbXliGwNy6r1Ggrk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YgMj3cGveeXe4AvKB1EB4iOlyd26K48yS6xCKZqNGFSWa17LLGzaNPabZVVeQCrDJ 3xgyEQSb99RoIvTJU0hgnUrhvoi9dd//IU4G0OMm2MHZ9xkmOho9RaMhAjTdYDT0/n JgW3+YzzpEOy+NDbhAgltg8zplYUO6V/4t16i+8Y=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3KM444BMLENOWRZQ53FTQRFEVBNHHBW2NK2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2837/508852501@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2837@github.com>
References: <quicwg/base-drafts/issues/2837@github.com>
Subject: Re: [quicwg/base-drafts] Does a Retry really need to change the CID? (#2837)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1fae92e7f20_43013f92014cd95c1095a0"; 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/T7UfZ6xH2gAapai0HZPWadutCwo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 20:09:59 -0000

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

I'm happy for this to be marked as editorial and then we can explain why we require changing 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/2837#issuecomment-508852501
----==_mimepart_5d1fae92e7f20_43013f92014cd95c1095a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm happy for this to be marked as editorial and then we can explain why we require changing 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/2837?email_source=notifications&amp;email_token=AFTOJK3A7WLYQIRCX6QWZNDP56TBFA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKHSFI#issuecomment-508852501">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYVBZYN3YRI54WHV4DP56TBFANCNFSM4H266NGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYDDWCFR55CBJER633P56TBFA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKHSFI.gif" height="1" width="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/2837?email_source=notifications\u0026email_token=AFTOJK3A7WLYQIRCX6QWZNDP56TBFA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKHSFI#issuecomment-508852501",
"url": "https://github.com/quicwg/base-drafts/issues/2837?email_source=notifications\u0026email_token=AFTOJK3A7WLYQIRCX6QWZNDP56TBFA5CNFSM4H266NGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKHSFI#issuecomment-508852501",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1fae92e7f20_43013f92014cd95c1095a0--


From nobody Fri Jul  5 16:20:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7C9B120152 for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:20:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xPeLWkjVE4ka for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:20:05 -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 26A41120189 for <quic-issues@ietf.org>; Fri,  5 Jul 2019 16:20:05 -0700 (PDT)
Date: Fri, 05 Jul 2019 16:20:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562368804; bh=KXcivQyymmSxpafXQySryUotK8NTad0/8wFtCi6zyHo=; h=Date:From:To:Subject:From; b=QIdwPZmSJpOzfbonReSLdnYWIZIaQ7NhR9F8TRWOH8e3E/FJ45YJ8NMSNjEHzfRaK Ed/mDsCZRbb687Ncl1Cbkl/Rgmjl8mBOvuKbsq4aqsEi+fhf33R4CQ/i4yQD+7CMNb GrvwkfEAHmg3lSX8Pzmk8+PQ1suqHllOFzG30Gvw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/63321d-5dd2c5@github.com>
Subject: [quicwg/base-drafts] 458232: move definition of active_connection_id_limit to w...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6dsYtrjaia8eHVHa1Gi82Jm9orw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 23:20:18 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 458232de8e964beb957288593b74ebcbb0a1ffa9
      https://github.com/quicwg/base-drafts/commit/458232de8e964beb957288593b74ebcbb0a1ffa9
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2019-07-05 (Fri, 05 Jul 2019)

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

  Log Message:
  -----------
  move definition of active_connection_id_limit to where it belongs


  Commit: 5dd2c59cb76179b64d7725d248c7f1d4cfeaf442
      https://github.com/quicwg/base-drafts/commit/5dd2c59cb76179b64d7725d248c7f1d4cfeaf442
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-06 (Sat, 06 Jul 2019)

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

  Log Message:
  -----------
  Merge pull request #2872 from marten-seemann/move-active-conn-id-limit-def

move definition of active_connection_id_limit to where it belongs


Compare: https://github.com/quicwg/base-drafts/compare/63321d1cef41...5dd2c59cb761


From nobody Fri Jul  5 16:20:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 342FC12018B for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:20:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZruekVfhzGcr for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:20:13 -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 46132120144 for <quic-issues@ietf.org>; Fri,  5 Jul 2019 16:20:13 -0700 (PDT)
Date: Fri, 05 Jul 2019 16:20:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562368812; bh=l27XD2uRDfMnqrQYce3CdtgQvcq2yxo08Z/gZqlkZUI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C7YyqFrD60AzHM7H0tzq64/w/GNn++opGKkR7wgAC/DBp77o2L0E32Im308/Q2UMB nu+FLja4+wrRLtaMtO4gZF6PkUxRhAgHW8J4J3Yk0aQuMrq0EeLehMr8CnVskqH8q1 HUKeLi5ka+d4VK0DHBirLhz5TU8xrx/XvSmQLmsQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFBQ6FVSR5JCJJVFN3FUG2ZEVBNHHBXMJJVQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2872/issue_event/2463663211@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2872@github.com>
References: <quicwg/base-drafts/pull/2872@github.com>
Subject: Re: [quicwg/base-drafts] move definition of active_connection_id_limit to where it belongs (#2872)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1fdb2caee6_3d883fc4172cd95c43835c"; 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/lLWxGivGAVLsW2oYD5G76xevFOk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 23:20:25 -0000

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

Merged #2872 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/2872#event-2463663211
----==_mimepart_5d1fdb2caee6_3d883fc4172cd95c43835c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="464595372" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2872" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2872/hovercard" href="https://github.com/quicwg/base-drafts/pull/2872">#2872</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/2872?email_source=notifications&amp;email_token=AFTOJK6FBS5UNP5HYRXNLQ3P57JKZA5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLMII2Y#event-2463663211">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26HBNOE5V5LEUHE2TP57JKZANCNFSM4H6KOGBA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5JK6MDFVR724TU4PLP57JKZA5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLMII2Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2872?email_source=notifications\u0026email_token=AFTOJK6FBS5UNP5HYRXNLQ3P57JKZA5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLMII2Y#event-2463663211",
"url": "https://github.com/quicwg/base-drafts/pull/2872?email_source=notifications\u0026email_token=AFTOJK6FBS5UNP5HYRXNLQ3P57JKZA5CNFSM4H6KOGBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLMII2Y#event-2463663211",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1fdb2caee6_3d883fc4172cd95c43835c--


From nobody Fri Jul  5 16:21:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9D5971201AA for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:21:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qDCySrXt360O for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:21: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 9D9BC1201BC for <quic-issues@ietf.org>; Fri,  5 Jul 2019 16:21:23 -0700 (PDT)
Date: Fri, 05 Jul 2019 16:21:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562368882; bh=ManbXf1zoBepTAcg54WvZsxmXQ/Qgj7CWkp2cQL6TyA=; h=Date:From:To:Subject:From; b=KLWXQ/CD23O5CbqPn7Qaz57wRN2b/yon8mpILYi7hao/7W4dFuzECfUHDfArbp3Li HzA/C7mKZMc7IfmAZiO3AFuPD3N7D9BzOfxQFS+w3cy0KQoMNSO5jzW8ccfMahjMeG N/kYGCsFejU4s+NdKrrtCKSdA7VKukiSc0RUUvZY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/af4cde-183490@github.com>
Subject: [quicwg/base-drafts] 183490: Script updating gh-pages from 5dd2c59c. [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/vwfFwcZ7xkaL4KvEgKdmdzJnRyk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 23:21:35 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 183490000281185f4777ca241e8b2ad942d82385
      https://github.com/quicwg/base-drafts/commit/183490000281185f4777ca241e8b2ad942d82385
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-05 (Fri, 05 Jul 2019)

  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-close-initial-handshake/draft-ietf-quic-http.html
    R ianswett-close-initial-handshake/draft-ietf-quic-http.txt
    R ianswett-close-initial-handshake/draft-ietf-quic-invariants.html
    R ianswett-close-initial-handshake/draft-ietf-quic-invariants.txt
    R ianswett-close-initial-handshake/draft-ietf-quic-qpack.html
    R ianswett-close-initial-handshake/draft-ietf-quic-qpack.txt
    R ianswett-close-initial-handshake/draft-ietf-quic-recovery.html
    R ianswett-close-initial-handshake/draft-ietf-quic-recovery.txt
    R ianswett-close-initial-handshake/draft-ietf-quic-tls.html
    R ianswett-close-initial-handshake/draft-ietf-quic-tls.txt
    R ianswett-close-initial-handshake/draft-ietf-quic-transport.html
    R ianswett-close-initial-handshake/draft-ietf-quic-transport.txt
    R ianswett-close-initial-handshake/index.html
    M index.html
    R srt-same/draft-ietf-quic-http.html
    R srt-same/draft-ietf-quic-http.txt
    R srt-same/draft-ietf-quic-invariants.html
    R srt-same/draft-ietf-quic-invariants.txt
    R srt-same/draft-ietf-quic-qpack.html
    R srt-same/draft-ietf-quic-qpack.txt
    R srt-same/draft-ietf-quic-recovery.html
    R srt-same/draft-ietf-quic-recovery.txt
    R srt-same/draft-ietf-quic-tls.html
    R srt-same/draft-ietf-quic-tls.txt
    R srt-same/draft-ietf-quic-transport.html
    R srt-same/draft-ietf-quic-transport.txt
    R srt-same/index.html

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



From nobody Fri Jul  5 16:23:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 52C28120133 for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:23:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h34M_AnhAnlR for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 16:23: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 18F711200A3 for <quic-issues@ietf.org>; Fri,  5 Jul 2019 16:23:10 -0700 (PDT)
Date: Fri, 05 Jul 2019 16:23:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562368989; bh=DKOhK8nUNzeF+8t4t3kWnWBSrXi68MQXMY2K/XXJqp4=; h=Date:From:To:Subject:From; b=MEu508H8+b6q2Dw2uXItXCZrtLr4LjbRj2dcDNOkjuFi77CgIsRE75gWO20IA8gW0 HrnlBF5GTLp0bKYfNLpuCJg9QIZsLPpYhfIww55GhkApWnplZkK3RwbLV9N/0u2qjB G3cPJzpI0lTEmsxWxKy4q0vCKa6dyLFxMC1DciEg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/183490-25ead2@github.com>
Subject: [quicwg/base-drafts] 25ead2: Script updating issues at 2019-07-05T23:23:03Z. [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/Pl7x_cXldsRwQDgtPHxcImRNiBk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 05 Jul 2019 23:23:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 25ead2716217e22cd88486aafe4de4969928cd18
      https://github.com/quicwg/base-drafts/commit/25ead2716217e22cd88486aafe4de4969928cd18
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-05 (Fri, 05 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-05T23:23:03Z. [ci skip]



From nobody Fri Jul  5 17:39:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F06F71200DB for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 17:39:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F9D1ZqlB20ki for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 17:39:35 -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 9B6F91200A3 for <quic-issues@ietf.org>; Fri,  5 Jul 2019 17:39:35 -0700 (PDT)
Date: Fri, 05 Jul 2019 17:39:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562373573; bh=p7+xiN8h2785ZpSU71f/+obnWCUX5UDmH6lD22Z2MdM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XMwrTwCyR0UFDccKXhVOL89GeP3BLKGqqOfYRBqNdVxzS+Ddvc58yTdFqj/pGnYY+ 2zk3iQdF3jSS63eCaDO9eOqvMBdWgtgoiGQoWlRxF46iidHEI9NsgU33u5B2XyQWQk KhiXuguJ9Jqj9QOEefA/eGrYwwicIlydaZfOI7Tk=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4HMDA47KR36WRUVPV3FUQELEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/508884624@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d1fedc5e013c_70eb3fd089ecd9683684c4"; 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/PWIEfCLNj3iCBCPzxRSBTvRkzzU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Jul 2019 00:39:38 -0000

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

I agree with this threat model. We really want to avoid NATs reacting to stateless resets the way they react to TCP RSTs today.

However, we've heard from implementors that the majority of QUIC traffic will not use client connection IDs. But there will be an implementation that uses them (either all the time, or at least some of the time, to apply grease to servers to make sure they support them). Let's assume there is a client implementation called CLIENT_18 that always uses 18-byte client CIDs. Do you think someone will go out of their way to implement code that detects CLIENT_18 traffic, and then installs a rule for those connections only where the detection of a server-to-client packet shorter than 39 bytes will drop the NAT mapping? This sounds about as likely as a NAT implementation that drops packets whose connection IDs are prime numbers...

To answer your question on reliability: I think it will be common to have a client establish a connection, send some requests, get the responses, then idle for a few minutes, then after user action, sends another request. Assuming the server uses 8-byte CIDs, this will cause the client to send a packet than can easily be under 39 bytes (assuming a short request). Let's assume the server has restarted during the idle period. It won't recognize the connection ID. If the server decides that this packet is too short to trigger a stateless reset, then the client will timeout causing user-visible delays. For a protocol with such a goal of improving latency, a timeout is a critical failure.

The issue here is that the spec doesn't mandate the client to pad its packets, and allows servers to not respond to short packets. Giving both implementations too much leeway is dangerous here.

It would be in the spirit of the spec to be more prescriptive. We remove the 39-byte requirement, and tell servers that their stateless resets should be of length in the range `[min(39, client_packet_size - 1), max(39, client_packet_size - 1)]`. We then tell clients to pad their packets such that `packet_number_length + payload_length >= 4 + max(0, max_used_client_cid_length - server_cid_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/issues/2869#issuecomment-508884624
----==_mimepart_5d1fedc5e013c_70eb3fd089ecd9683684c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with this threat model. We really want to avoid NATs reacting to stateless resets the way they react to TCP RSTs today.</p>
<p>However, we've heard from implementors that the majority of QUIC traffic will not use client connection IDs. But there will be an implementation that uses them (either all the time, or at least some of the time, to apply grease to servers to make sure they support them). Let's assume there is a client implementation called CLIENT_18 that always uses 18-byte client CIDs. Do you think someone will go out of their way to implement code that detects CLIENT_18 traffic, and then installs a rule for those connections only where the detection of a server-to-client packet shorter than 39 bytes will drop the NAT mapping? This sounds about as likely as a NAT implementation that drops packets whose connection IDs are prime numbers...</p>
<p>To answer your question on reliability: I think it will be common to have a client establish a connection, send some requests, get the responses, then idle for a few minutes, then after user action, sends another request. Assuming the server uses 8-byte CIDs, this will cause the client to send a packet than can easily be under 39 bytes (assuming a short request). Let's assume the server has restarted during the idle period. It won't recognize the connection ID. If the server decides that this packet is too short to trigger a stateless reset, then the client will timeout causing user-visible delays. For a protocol with such a goal of improving latency, a timeout is a critical failure.</p>
<p>The issue here is that the spec doesn't mandate the client to pad its packets, and allows servers to not respond to short packets. Giving both implementations too much leeway is dangerous here.</p>
<p>It would be in the spirit of the spec to be more prescriptive. We remove the 39-byte requirement, and tell servers that their stateless resets should be of length in the range <code>[min(39, client_packet_size - 1), max(39, client_packet_size - 1)]</code>. We then tell clients to pad their packets such that <code>packet_number_length + payload_length &gt;= 4 + max(0, max_used_client_cid_length - server_cid_length)</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/2869?email_source=notifications&amp;email_token=AFTOJK6R7XTU4OGVSLKR3TDP57SULA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKPNEA#issuecomment-508884624">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57A5I3VCP4Y544A5DP57SULANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3L57WYCF6CRZCKUODP57SULA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKPNEA.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK6R7XTU4OGVSLKR3TDP57SULA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKPNEA#issuecomment-508884624",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK6R7XTU4OGVSLKR3TDP57SULA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKPNEA#issuecomment-508884624",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d1fedc5e013c_70eb3fd089ecd9683684c4--


From nobody Fri Jul  5 23:30:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4817E1200F6 for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 23:30:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D4SqyREYSVWw for <quic-issues@ietfa.amsl.com>; Fri,  5 Jul 2019 23:30: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 6BD8F1200E9 for <quic-issues@ietf.org>; Fri,  5 Jul 2019 23:30:19 -0700 (PDT)
Date: Fri, 05 Jul 2019 23:30:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562394617; bh=L6sDsrFv40O0ttdNmpbCIUHYLoZ8VSZpTtoPV1dJjk0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=HeEaM43gFVT6Rpw+cqm7Ir82wWq4BlJo8BgwTmAywUpo6I/ZDi5d9OJbFNjkMnMl1 q1cA4Obe29SDb5WPT3PR6WJ7nMPZY87LEVRDfm7Jc5rimwIkskpTb0j2+DW+66NCSH rsoiRP8zbMYeyRLqYDudztrls9Cf5DuW0nS4jbks=
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYNOU6PQK7Q5WPRPZV3FVZHTEVBNHHBXNFFXE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2874@github.com>
Subject: [quicwg/base-drafts] transport: dangling references (#2874)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d203ff9c594b_6c3c3f95eeccd96876855"; 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/h75gW-iaic21kjfsqjVqRwvQGl4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Jul 2019 06:30:21 -0000

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

WARNING: apparently dangling reference to 6.2.1 of QUIC-RECOVERY
WARNING: apparently dangling reference to 6.2.1 of QUIC-RECOVERY
WARNING: apparently dangling reference to 5.3.1.2 of QUIC-RECOVERY
WARNING: apparently dangling reference to 6.9 of QUIC-RECOVERY
WARNING: apparently dangling reference to 5.3.1.2 of QUIC-RECOVERY
WARNING: apparently dangling reference to 6.9 of QUIC-RECOVERY


-- 
You are receiving 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/2874
----==_mimepart_5d203ff9c594b_6c3c3f95eeccd96876855
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>WARNING: apparently dangling reference to 6.2.1 of QUIC-RECOVERY<br>
WARNING: apparently dangling reference to 6.2.1 of QUIC-RECOVERY<br>
WARNING: apparently dangling reference to 5.3.1.2 of QUIC-RECOVERY<br>
WARNING: apparently dangling reference to 6.9 of QUIC-RECOVERY<br>
WARNING: apparently dangling reference to 5.3.1.2 of QUIC-RECOVERY<br>
WARNING: apparently dangling reference to 6.9 of QUIC-RECOVERY</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2874?email_source=notifications&amp;email_token=AFTOJK4JCL3ZHGIVYC65SX3P6A3XTA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5UUW4Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZHPCX7ZYGIUOSNLMTP6A3XTANCNFSM4H6SWONQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZK3MWMAQY2FKY2WQDP6A3XTA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5UUW4Q.gif" height="1" width="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/2874?email_source=notifications\u0026email_token=AFTOJK4JCL3ZHGIVYC65SX3P6A3XTA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5UUW4Q",
"url": "https://github.com/quicwg/base-drafts/issues/2874?email_source=notifications\u0026email_token=AFTOJK4JCL3ZHGIVYC65SX3P6A3XTA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5UUW4Q",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d203ff9c594b_6c3c3f95eeccd96876855--


From nobody Sat Jul  6 03:41:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 50EAA120250 for <quic-issues@ietfa.amsl.com>; Sat,  6 Jul 2019 03:41:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n9shRUeLYlk3 for <quic-issues@ietfa.amsl.com>; Sat,  6 Jul 2019 03:41: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 66ACD1200E0 for <quic-issues@ietf.org>; Sat,  6 Jul 2019 03:41:54 -0700 (PDT)
Date: Sat, 06 Jul 2019 03:41:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562409713; bh=7rG+9c3sEzbwxxfmByGUivGUgmMMZg8cA4VeKSqTnkA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dM3iyRs2QfBZLrkpO3cQkA7hVUQsxYvxvKuLIuGSsTHgtT2qBNHC89aChMwMN9W/L R0ykmVosiJO9PV7TsCQjohL9q01Ek5D2kMhgH1/opyRZ5PyWP4Vf/3jLwYFFqBqrzn Z/8ML6hxdIV9HBdzqsrFYYUI6WOwsIK83IRN7w7E=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6N6GDBQOJYAXXAGLF3FWWXBEVBNHHBWLLVNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2789/508915973@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2789@github.com>
References: <quicwg/base-drafts/issues/2789@github.com>
Subject: Re: [quicwg/base-drafts] Use a higher seed RTT for new paths (#2789)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d207af0e9903_7cb63fce9a2cd96047165"; 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/gCGzXcxC2UvD7V_4Cvi2p72Ykr0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Jul 2019 10:41:57 -0000

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

I missed this, and the text isn=E2=80=99t correct, but my comment was ove=
r-simplified  - and I am on vacation for a week, really sorry. =0D
=0D
So will get back after the vacation.=0D
=0D
Gorry =0D
=0D
> On 17 Jun 2019, at 17:16, ianswett <notifications@github.com> wrote:=0D=

> =0D
> I reread 6298 and I also can't find the 1.5 text. Can you point out whi=
ch text you have in mind?=0D
> =0D
> The goal is not to base the new path's congestion control properties on=
 the previous path, but if there was a PATH_CHALLENGE/RESPONSE before mig=
rating, then it's ok to use that to seed the initial_rtt.=0D
> =0D
> =E2=80=94=0D
> You are receiving this because you were mentioned.=0D
> Reply to this email directly, view it on GitHub, or mute the thread.=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/2789#issuecomment-508915973=

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

I missed this, and the text isn=E2=80=99t correct, but my comment was ove=
r-simplified  - and I am on vacation for a week, really sorry. <br>=0D
<br>=0D
So will get back after the vacation.<br>=0D
<br>=0D
Gorry <br>=0D
<br>=0D
&gt; On 17 Jun 2019, at 17:16, ianswett &lt;notifications@github.com&gt; =
wrote:<br>=0D
&gt; <br>=0D
&gt; I reread 6298 and I also can&#39;t find the 1.5 text. Can you point =
out which text you have in mind?<br>=0D
&gt; <br>=0D
&gt; The goal is not to base the new path&#39;s congestion control proper=
ties on the previous path, but if there was a PATH_CHALLENGE/RESPONSE bef=
ore migrating, then it&#39;s ok to use that to seed the initial_rtt.<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, or mute the thread.=
<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/2789?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK7SFQWDT2NJXQKKMQ3P6BZHBA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKXCBI#issuecomment-508915973">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK4EFQHVWN6BWXHEJLLP6BZHBANCNFSM4HX7UTKA">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK3DGSS4E5VF7ZZ7U4TP=
6BZHBA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGODZKXCBI.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/issues/2789?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK7SFQWDT2NJXQKKMQ3P6BZHBA5CNFSM4=
HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKXCB=
I#issuecomment-508915973",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2789?email_source=3D=
notifications\u0026email_token=3DAFTOJK7SFQWDT2NJXQKKMQ3P6BZHBA5CNFSM4HX7=
UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKXCBI#i=
ssuecomment-508915973",=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_5d207af0e9903_7cb63fce9a2cd96047165--


From nobody Sun Jul  7 16:31:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C93401201ED for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 16:31:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.597
X-Spam-Level: 
X-Spam-Status: No, score=-6.597 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 oRN_7Ylt9Lk8 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 16:31: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 3764C120250 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 16:31:15 -0700 (PDT)
Date: Sun, 07 Jul 2019 16:31:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562542273; bh=GvnE5322R+484V1RlYRRyWn8VrSDUYPyYMW/SafzShE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V0CW8xySTLQn269PEO+whCaqijrAb2DzcdYbGOu987uHJyGBqNkzsVWC7CW1ZqKlJ FAhf3+3ZbIpc76qisjws5X4+RBRMcKW9MpCQOCwrNQpPMkiFoFplBTJLFh1SH/xt50 ZKQ1ZqUR9dvpNrkENoRZm9woRhCKuvvZJ+QCdKE8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5LN7AOW7X73JEF4V3F6ZUDEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/509039192@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2280c1a5c4b_7a203ffa9accd95c385580"; 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/z7XvlQjZukD_k6uXW8GO-KRajoc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 07 Jul 2019 23:31:22 -0000

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

I could live with that.  That is a lot harder to write down, but I think that it might work.  I wouldn't make the calculation so complex (just say that the minimum packet size is `maxcid+19` to account for 1 type byte, 1 data byte, and 16 auth tag bytes plus the connection ID length and the one extra byte we lose for the stateless reset) and I wouldn't tie it to a particular role (stateless reset is supposed to be symmetric, it's just that one direction in particular is more likely by far).  We can leave the details to implementations.

I was concerned about clients that were also identifiable by means easier than fingerprinting.  Say someone who deployed client code in their server cluster, where connection IDs are far more likely as a client, for whom any packet (to a client or server) could be readily identified as a stateless reset by virtue of its size.  Profiling by IP address would be easy for someone to do in that 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/2869#issuecomment-509039192
----==_mimepart_5d2280c1a5c4b_7a203ffa9accd95c385580
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I could live with that.  That is a lot harder to write down, but I think that it might work.  I wouldn't make the calculation so complex (just say that the minimum packet size is <code>maxcid+19</code> to account for 1 type byte, 1 data byte, and 16 auth tag bytes plus the connection ID length and the one extra byte we lose for the stateless reset) and I wouldn't tie it to a particular role (stateless reset is supposed to be symmetric, it's just that one direction in particular is more likely by far).  We can leave the details to implementations.</p>
<p>I was concerned about clients that were also identifiable by means easier than fingerprinting.  Say someone who deployed client code in their server cluster, where connection IDs are far more likely as a client, for whom any packet (to a client or server) could be readily identified as a stateless reset by virtue of its size.  Profiling by IP address would be easy for someone to do in that 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/2869?email_source=notifications&amp;email_token=AFTOJK6FFVF4K46Y7T6AVALP6J4EDA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLVEWA#issuecomment-509039192">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2V25AXUHAGMD22D53P6J4EDANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6Y75W4QAAASKZW54DP6J4EDA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLVEWA.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK6FFVF4K46Y7T6AVALP6J4EDA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLVEWA#issuecomment-509039192",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK6FFVF4K46Y7T6AVALP6J4EDA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLVEWA#issuecomment-509039192",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2280c1a5c4b_7a203ffa9accd95c385580--


From nobody Sun Jul  7 18:14:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 582D712008A for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:14:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6YlsF3kiJi_4 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:14: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 020601200D5 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:14:20 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:14:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562548459; bh=pMe5NiRQFA9y+itZAyVIdHiOgJGibNgxxb4shjomlbY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=B60zNv79CQ4vgSyUc2Nivbh2zcAAr1ymT2OSxjNGdD4EJ+AQGeCnCDG29skSYZmZG DJhTuKIYofKP9iCsMpRrHexQAgr8kCDjACmlnRsiymi3exgsyDRpiwHxfWgKte0M9t lcHJJ9+QzOWvj8m8o/oxbon2aKHV6YIaApfGHOxk=
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2QF6YI3VKH6TJKDQ53F7FWXEVBNHHBW3GWVY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2839/issue_event/2464680937@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2839@github.com>
References: <quicwg/base-drafts/issues/2839@github.com>
Subject: Re: [quicwg/base-drafts] Consider adding flags transport parameter for extension, frame, or feature negotiation (#2839)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2298eb8402a_38123fc1928cd9603490a8"; 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/2oISev4oUdor5QGwc6VE0pdphGE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:14:23 -0000

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

Closed #2839.

-- 
You are receiving 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/2839#event-2464680937
----==_mimepart_5d2298eb8402a_38123fc1928cd9603490a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="460117678" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2839" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2839/hovercard" href="https://github.com/quicwg/base-drafts/issues/2839">#2839</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/2839?email_source=notifications&amp;email_token=AFTOJK2KQTZR5IKQQSOFUL3P6KIGXA5CNFSM4H3CWYBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUAX2I#event-2464680937">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72P7CZ6CWXEJHVOKDP6KIGXANCNFSM4H3CWYBA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZCJLKJNLBDQC4QO7TP6KIGXA5CNFSM4H3CWYBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUAX2I.gif" height="1" width="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/2839?email_source=notifications\u0026email_token=AFTOJK2KQTZR5IKQQSOFUL3P6KIGXA5CNFSM4H3CWYBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUAX2I#event-2464680937",
"url": "https://github.com/quicwg/base-drafts/issues/2839?email_source=notifications\u0026email_token=AFTOJK2KQTZR5IKQQSOFUL3P6KIGXA5CNFSM4H3CWYBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUAX2I#event-2464680937",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2298eb8402a_38123fc1928cd9603490a8--


From nobody Sun Jul  7 18:48:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 02B5C1200D7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:48:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 At7_btbshHPR for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:48: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 B62A71200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:48:47 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:48:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550525; bh=AEVweUOY4863P+atw6tpu+MQVkARyjLiwQwKbXvGnbI=; h=Date:From:To:Subject:From; b=wIBkOQg82UT34yNR//THL79R52cHKssmOpexzBMOOP4jESqc2iziO2ArNu/s49CEl cAW6G8o/5XwaWfSuUWCqYcHZOwNx1qHb4mt5L53W83gIq/fvQVjMt9+nyNj8L8XrE4 Z91vFwmRDwWHja7WX1jaFNlnUsJ4nPFa3TNcwgdM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/5dd2c5-6a7141@github.com>
Subject: [quicwg/base-drafts] cf17a8: 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/E782Xqy84sz35uVHOKA5cfbvM_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: Mon, 08 Jul 2019 01:48:52 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: cf17a89edd1b238a5fd7df4e400b180cb675765a
      https://github.com/quicwg/base-drafts/commit/cf17a89edd1b238a5fd7df4e400b180cb675765a
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-04 (Tue, 04 Jun 2019)

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

  Log Message:
  -----------
  Retire Prior To


  Commit: 13f452a1556564d5ceffd9424525ed2d430b6de4
      https://github.com/quicwg/base-drafts/commit/13f452a1556564d5ceffd9424525ed2d430b6de4
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-05 (Wed, 05 Jun 2019)

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

  Log Message:
  -----------
  clearer text. 2119 language. retire prior to less than seq number


  Commit: 091b4f5f81ae8dfb10155853ae48c1fad098ab57
      https://github.com/quicwg/base-drafts/commit/091b4f5f81ae8dfb10155853ae48c1fad098ab57
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-05 (Wed, 05 Jun 2019)

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

  Log Message:
  -----------
  Missed a type change


  Commit: f80ffce179dabc3c0f72ef6ea8d0c199f0eb91e0
      https://github.com/quicwg/base-drafts/commit/f80ffce179dabc3c0f72ef6ea8d0c199f0eb91e0
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-05 (Wed, 05 Jun 2019)

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

  Log Message:
  -----------
  Change restriction from >= to >


  Commit: 75ed143f62141b429057c54827fefb660ced7367
      https://github.com/quicwg/base-drafts/commit/75ed143f62141b429057c54827fefb660ced7367
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-05 (Wed, 05 Jun 2019)

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

  Log Message:
  -----------
  Mention initial and preferred_address CIDs


  Commit: db6980c75761ff46772d685a60d2a97e29baff0f
      https://github.com/quicwg/base-drafts/commit/db6980c75761ff46772d685a60d2a97e29baff0f
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-05 (Wed, 05 Jun 2019)

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

  Log Message:
  -----------
  Yet another < vs <= fix


  Commit: 2db529c95f40f1118cd04e371325764aca1bec78
      https://github.com/quicwg/base-drafts/commit/2db529c95f40f1118cd04e371325764aca1bec78
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-05 (Wed, 05 Jun 2019)

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

  Log Message:
  -----------
  Added a 'than'


  Commit: 4696d46774b50379d3d1823470d195ff975abcbc
      https://github.com/quicwg/base-drafts/commit/4696d46774b50379d3d1823470d195ff975abcbc
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-07 (Fri, 07 Jun 2019)

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

  Log Message:
  -----------
  Make it a requirement; SHOULD do immediately


  Commit: ff007e11812de4775eaf91de75b33aa6dd789164
      https://github.com/quicwg/base-drafts/commit/ff007e11812de4775eaf91de75b33aa6dd789164
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-07 (Fri, 07 Jun 2019)

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

  Log Message:
  -----------
  Clean up the other text too


  Commit: 87b268bcd6c8c11c443a92c99486dfe9239e9603
      https://github.com/quicwg/base-drafts/commit/87b268bcd6c8c11c443a92c99486dfe9239e9603
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-10 (Mon, 10 Jun 2019)

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

  Log Message:
  -----------
  Don't Close; Just Remove after 3 PTO


  Commit: 6a8d79bc7e743972250e4ed94008ed734935fb93
      https://github.com/quicwg/base-drafts/commit/6a8d79bc7e743972250e4ed94008ed734935fb93
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-11 (Tue, 11 Jun 2019)

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

  Log Message:
  -----------
  Mike's suggestion.

Co-Authored-By: Mike Bishop <mbishop@evequefou.be>


  Commit: 5035bae0fc51c06048ea68798e8565c33b230025
      https://github.com/quicwg/base-drafts/commit/5035bae0fc51c06048ea68798e8565c33b230025
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-11 (Tue, 11 Jun 2019)

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

  Log Message:
  -----------
  Mike's suggestion.

Co-Authored-By: Mike Bishop <mbishop@evequefou.be>


  Commit: 6cc8ad2c9406a26b5c222f529d43458e40491bd6
      https://github.com/quicwg/base-drafts/commit/6cc8ad2c9406a26b5c222f529d43458e40491bd6
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-11 (Tue, 11 Jun 2019)

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

  Log Message:
  -----------
  Mike's suggestion.

Co-Authored-By: Mike Bishop <mbishop@evequefou.be>


  Commit: 8275d504bc118ac651b7d4071c73392179945853
      https://github.com/quicwg/base-drafts/commit/8275d504bc118ac651b7d4071c73392179945853
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-11 (Tue, 11 Jun 2019)

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

  Log Message:
  -----------
  Ian's suggestions


  Commit: 65e576d03e3c985d3fbed778bec0bf17702ff375
      https://github.com/quicwg/base-drafts/commit/65e576d03e3c985d3fbed778bec0bf17702ff375
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-11 (Tue, 11 Jun 2019)

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

  Log Message:
  -----------
  David's suggestions


  Commit: 54c308a351d5293b66964a32e4bab00f23c35a27
      https://github.com/quicwg/base-drafts/commit/54c308a351d5293b66964a32e4bab00f23c35a27
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-11 (Tue, 11 Jun 2019)

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

  Log Message:
  -----------
  More of David's suggestions


  Commit: 4a446a068f57b98e60a3ca0439e408fa0f093829
      https://github.com/quicwg/base-drafts/commit/4a446a068f57b98e60a3ca0439e408fa0f093829
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-12 (Wed, 12 Jun 2019)

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

  Log Message:
  -----------
  Ian's suggestion

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: e8df2f6a6622d14d40810d0d93e4483ca412051a
      https://github.com/quicwg/base-drafts/commit/e8df2f6a6622d14d40810d0d93e4483ca412051a
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-12 (Wed, 12 Jun 2019)

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

  Log Message:
  -----------
  Ian's suggestions


  Commit: 933ac365d1d324e07bee34e69045ad674287b3fe
      https://github.com/quicwg/base-drafts/commit/933ac365d1d324e07bee34e69045ad674287b3fe
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-12 (Wed, 12 Jun 2019)

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

  Log Message:
  -----------
  Eric's suggestions


  Commit: 10d19646b5774de97b1e594bdf71b3aed139fe76
      https://github.com/quicwg/base-drafts/commit/10d19646b5774de97b1e594bdf71b3aed139fe76
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-13 (Thu, 13 Jun 2019)

  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: 62795f89f068f02159dca106ebd7a7fe94aae2f5
      https://github.com/quicwg/base-drafts/commit/62795f89f068f02159dca106ebd7a7fe94aae2f5
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-20 (Thu, 20 Jun 2019)

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

  Log Message:
  -----------
  Remove paragraph; add period


  Commit: 8cbcebf6ccafee170693188161e402506f2d2ef7
      https://github.com/quicwg/base-drafts/commit/8cbcebf6ccafee170693188161e402506f2d2ef7
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-06-20 (Thu, 20 Jun 2019)

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

  Log Message:
  -----------
  Reword field desc


  Commit: 81bef6ee83ba699dee2d4cbc036023f31b469054
      https://github.com/quicwg/base-drafts/commit/81bef6ee83ba699dee2d4cbc036023f31b469054
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

  Log Message:
  -----------
  More suggestions


  Commit: 6a71414dbad7b8ed4d0745a2606aab70e1e37910
      https://github.com/quicwg/base-drafts/commit/6a71414dbad7b8ed4d0745a2606aab70e1e37910
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Merge pull request #2769 from nibanks/pr/replace-cid

Request to Retire Locally Issued CIDs


Compare: https://github.com/quicwg/base-drafts/compare/5dd2c59cb761...6a71414dbad7


From nobody Sun Jul  7 18:49:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D84BE1200DB for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:48:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YcWetZ4AAZJ9 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:48: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 382101200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:48:54 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:48:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550533; bh=rWUaArMhqTDq1NB4UaVtSJLRhMp/urn4xSyrT6nAppE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T8ofSXsPRrRZMOQ9KiVo43/0iQx1vX5r/DzbbSS8mYhLBeWxHfQe9wVC7HMmM+j2v JxwfkDFu7E2ZnVl820yB6tgfM833aOPBm95QxqKmc9pU5IFHQ0at4epkDPvAT7vEfp JODMZg74ABhJZZrYGvLj5MUi00AJ5sAh2R/VxUaE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LYXUKJHHUBKA2G6N3F7JYLEVBNHHBV45H2U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2769/issue_event/2464709955@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2769@github.com>
References: <quicwg/base-drafts/pull/2769@github.com>
Subject: Re: [quicwg/base-drafts] Request to Retire Locally Issued CIDs (#2769)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a10542672_4a383fabf32cd95c59034b"; 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/J91d8ovoKqZQniCBo2JX9qZjBEo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:48:56 -0000

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

Merged #2769 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/2769#event-2464709955
----==_mimepart_5d22a10542672_4a383fabf32cd95c59034b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="452175829" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2769" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2769/hovercard" href="https://github.com/quicwg/base-drafts/pull/2769">#2769</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/2769?email_source=notifications&amp;email_token=AFTOJKYYLA2IJUM7KGON3ALP6KMILA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2QY#event-2464709955">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7G3B2VF2ZWW3AX6J3P6KMILANCNFSM4HTARDHA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IKJDSDF4QITC4JZLP6KMILA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2QY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2769?email_source=notifications\u0026email_token=AFTOJKYYLA2IJUM7KGON3ALP6KMILA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2QY#event-2464709955",
"url": "https://github.com/quicwg/base-drafts/pull/2769?email_source=notifications\u0026email_token=AFTOJKYYLA2IJUM7KGON3ALP6KMILA5CNFSM4HTARDHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2QY#event-2464709955",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a10542672_4a383fabf32cd95c59034b--


From nobody Sun Jul  7 18:49:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 426F01200B7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:48:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kDUsC0NQWOmJ for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:48: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 4192A1200D7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:48:54 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:48:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550532; bh=F1OtGjGMBDa7WvuP+S2N9ohcNW/Z00+Umf4C22UmQco=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oTXDWJEnoItWi7yAFpRQuBt1rqFLGfVVjqqKY4If/beinI9tz6Po3UPI3HtaTGXe5 zuvA6xdYer8hLTRXGFFGdz+wVou1Yj+OOkwDhgPu0iNFZOpSBlQdW2wl5VoACfYU0Z yrmqiBlWuOMJgHediceG+bb+dSghJ5euR8xtKu1E=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7NUBEH7FIRSNTWVDF3F7JYJEVBNHHBUAUCHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2645/issue_event/2464709958@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2645@github.com>
References: <quicwg/base-drafts/issues/2645@github.com>
Subject: Re: [quicwg/base-drafts] Retire My Own CID (#2645)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a104c9333_388a3fb81f8cd96469106b"; 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/Z-zJfiSmIyc3imeDgUK-6XbEIKo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:48:56 -0000

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

Closed #2645 via #2769.

-- 
You are receiving 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/2645#event-2464709958
----==_mimepart_5d22a104c9333_388a3fb81f8cd96469106b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="436372024" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2645" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2645/hovercard" href="https://github.com/quicwg/base-drafts/issues/2645">#2645</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="452175829" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2769" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2769/hovercard" href="https://github.com/quicwg/base-drafts/pull/2769">#2769</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/2645?email_source=notifications&amp;email_token=AFTOJKZMBPLQ42QRG7ZELLDP6KMIJA5CNFSM4HH6CSH2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2RQ#event-2464709958">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LBFRGBZITWLRMO4LP6KMIJANCNFSM4HH6CSHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK56NZK73DPXJD3WB4TP6KMIJA5CNFSM4HH6CSH2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2RQ.gif" height="1" width="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/2645?email_source=notifications\u0026email_token=AFTOJKZMBPLQ42QRG7ZELLDP6KMIJA5CNFSM4HH6CSH2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2RQ#event-2464709958",
"url": "https://github.com/quicwg/base-drafts/issues/2645?email_source=notifications\u0026email_token=AFTOJKZMBPLQ42QRG7ZELLDP6KMIJA5CNFSM4HH6CSH2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH2RQ#event-2464709958",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a104c9333_388a3fb81f8cd96469106b--


From nobody Sun Jul  7 18:49:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C0D481200D7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:49:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 kmRd2xKU8W-z for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:49:38 -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 964971200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:49:37 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:49:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550575; bh=HvNV1uSu0+FlxkK0hySjhwj9WzSZmUGBjNr5dnW7Vmg=; h=Date:From:To:Subject:From; b=guOy0rOJKFXFNrASB4bX5/Yc8B9406MqhS82Bwh3wUrEoWk3qVRIk24nv6MTMRGm7 HgOA30xKYYCfQdwlfrnFICmdC8k56DTVfjahsJCVnE/fgVbl6VI+ulfCXCaJ8qqvq2 /bQCSXY1va0wve0O/Ad3sxzjIv5QpQo5Lnib73w0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/6a7141-b7c58f@github.com>
Subject: [quicwg/base-drafts] 6b587a: #2724: Don't store or retransmit PATH_RESPOSNE fra...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pmNIXRfsEbEMjxt_9QlHNlhL9Jk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:49:43 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6b587ac89ed89afc48026a391ab52da6f0c8c1e0
      https://github.com/quicwg/base-drafts/commit/6b587ac89ed89afc48026a391ab52da6f0c8c1e0
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2019-05-20 (Mon, 20 May 2019)

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

  Log Message:
  -----------
  #2724: Don't store or retransmit PATH_RESPOSNE frames, avoid buffering too many


  Commit: e27a1c68f3e85eb79bb352a9e6b36b7d99bacc62
      https://github.com/quicwg/base-drafts/commit/e27a1c68f3e85eb79bb352a9e6b36b7d99bacc62
  Author: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>
  Date:   2019-05-21 (Tue, 21 May 2019)

  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: 52957ecb8dbc1740819661a2a87564addbc821ea
      https://github.com/quicwg/base-drafts/commit/52957ecb8dbc1740819661a2a87564addbc821ea
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2019-05-28 (Tue, 28 May 2019)

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

  Log Message:
  -----------
  Clarify the MUST, unless and indicate that the destination CID is sufficient for rate limiting


  Commit: d0d147a3a3db426ddba63ce139d0555fa8f26019
      https://github.com/quicwg/base-drafts/commit/d0d147a3a3db426ddba63ce139d0555fa8f26019
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2019-05-28 (Tue, 28 May 2019)

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

  Log Message:
  -----------
  Remove example


  Commit: ac8b8ef220b82e693fc5144e43463dc1b98fd1dc
      https://github.com/quicwg/base-drafts/commit/ac8b8ef220b82e693fc5144e43463dc1b98fd1dc
  Author: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>
  Date:   2019-05-28 (Tue, 28 May 2019)

  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: c205b79ad75d9e67759dcb48994f3aef3b021715
      https://github.com/quicwg/base-drafts/commit/c205b79ad75d9e67759dcb48994f3aef3b021715
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-06-14 (Fri, 14 Jun 2019)

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

  Log Message:
  -----------
  Prohibit sending multiple PATH_RESPONSE


  Commit: f00f3d111f9ca642081e9c9dd2ce7c117081055b
      https://github.com/quicwg/base-drafts/commit/f00f3d111f9ca642081e9c9dd2ce7c117081055b
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2019-06-14 (Fri, 14 Jun 2019)

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

  Log Message:
  -----------
  Only one path response should be sent in response to a packet containing any number of path challenge frames


  Commit: 950ab2255168c827670234a01f8211ea68090d35
      https://github.com/quicwg/base-drafts/commit/950ab2255168c827670234a01f8211ea68090d35
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2019-06-14 (Fri, 14 Jun 2019)

  Changed paths:
    M CONTRIBUTING.md
    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
    A workflow.png
    A workflow.xml

  Log Message:
  -----------
  Merge branch 'master' into dont_retransmit_path_response


  Commit: bef17653caa29d28e96fa825ad34ef4ce8345d70
      https://github.com/quicwg/base-drafts/commit/bef17653caa29d28e96fa825ad34ef4ce8345d70
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2019-06-14 (Fri, 14 Jun 2019)

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

  Log Message:
  -----------
  Remove requirement on responders to PATH_CHALLENGE


  Commit: 3c0d1f7297091d0e0cff31d7850fa1c557f2d130
      https://github.com/quicwg/base-drafts/commit/3c0d1f7297091d0e0cff31d7850fa1c557f2d130
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

  Log Message:
  -----------
  Update with Jana's wording suggestion


  Commit: b7c58fd9f4eebc161964f87aff2a33471395f874
      https://github.com/quicwg/base-drafts/commit/b7c58fd9f4eebc161964f87aff2a33471395f874
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Merge pull request #2729 from erickinnear/dont_retransmit_path_response

Don't store or retransmit PATH_RESPONSE frames, avoid buffering


Compare: https://github.com/quicwg/base-drafts/compare/6a71414dbad7...b7c58fd9f4ee


From nobody Sun Jul  7 18:49:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EB3D412010C for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:49:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id awRW3d9K4C99 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:49: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 0159B1200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:49:44 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:49:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550582; bh=sjVUqrJiVfuSnvoHGLuq6bSJetze/8G0sHo02O3huf8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iCs2Qlt5E9OT/AqcMDJQERD75kQilL4x+g7MQLEIu/aV6vigNZuMqPFaS3xO9oCdy CAX+NgSAl13kxpVPCIC/TMDEoyDl+pDTOv13aSrnsm6tU9KxQvZPsGEwjty4rEe0lC dOaKUr0+jqPntEZP7+2GYbFUd7BoleFSphpR5yBQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PT5CFWSD4OLXFMGN3F7J3NEVBNHHBVGEZF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2729/issue_event/2464710639@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2729@github.com>
References: <quicwg/base-drafts/pull/2729@github.com>
Subject: Re: [quicwg/base-drafts] Don't store or retransmit PATH_RESPONSE frames, avoid buffering (#2729)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a136bc1f7_8d63fbf374cd96c8200b3"; 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/fKsXoFSNKkXm1lzEz6sds_oqWiA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:49:46 -0000

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

Merged #2729 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/2729#event-2464710639
----==_mimepart_5d22a136bc1f7_8d63fbf374cd96c8200b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="446208303" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2729" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2729/hovercard" href="https://github.com/quicwg/base-drafts/pull/2729">#2729</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/2729?email_source=notifications&amp;email_token=AFTOJK3BYAPZKJB24OJVY7LP6KMLNA5CNFSM4HODS4DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH73Y#event-2464710639">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5E73UY3WU7LLNS3VTP6KMLNANCNFSM4HODS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7I4APGSJ755HIPHJTP6KMLNA5CNFSM4HODS4DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH73Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2729?email_source=notifications\u0026email_token=AFTOJK3BYAPZKJB24OJVY7LP6KMLNA5CNFSM4HODS4DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH73Y#event-2464710639",
"url": "https://github.com/quicwg/base-drafts/pull/2729?email_source=notifications\u0026email_token=AFTOJK3BYAPZKJB24OJVY7LP6KMLNA5CNFSM4HODS4DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH73Y#event-2464710639",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a136bc1f7_8d63fbf374cd96c8200b3--


From nobody Sun Jul  7 18:49:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C73C21200DB for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:49:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nxotMgnXEjaF for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:49:44 -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 2D6E41200D7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:49:44 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:49:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550582; bh=qu6uOa05lataeUTHjIElfZHGIpZK8nRCv0IObHhoOfs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w8+wUjBT++yAxIxXfiL45iernaMQ7l4d2j4I1x4hzLi7cn0NVGPEcEV/xsEE7Rw68 B+9+cazlggkEG1pid7EGlENr1aHZPNHA4SqGnYSJy/GqW2/QQYtDXSyIWO1tExEFMJ dp0v4rpnj8PO+Ka1Em24LvzA6Qwh+KaJRA1H3av4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UIZCQJLMB26HH4XN3F7J3NEVBNHHBVF33HA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2724/issue_event/2464710642@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2724@github.com>
References: <quicwg/base-drafts/issues/2724@github.com>
Subject: Re: [quicwg/base-drafts] Clarify PATH_RESPONSE lack of retransmission in Path Validation (#2724)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a13688310_38a23fb81f8cd9647567c7"; 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/cl-zvmaDcgUaVz1D3UbIcWKbIFk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:49:48 -0000

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

Closed #2724 via #2729.

-- 
You are receiving 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/2724#event-2464710642
----==_mimepart_5d22a13688310_38a23fb81f8cd9647567c7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="446135096" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2724" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2724/hovercard" href="https://github.com/quicwg/base-drafts/issues/2724">#2724</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="446208303" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2729" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2729/hovercard" href="https://github.com/quicwg/base-drafts/pull/2729">#2729</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/2724?email_source=notifications&amp;email_token=AFTOJK3H6MKVZEGBLPTCAM3P6KMLNA5CNFSM4HOCJAO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH74Q#event-2464710642">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3P3MXX2JRV5Z4OJULP6KMLNANCNFSM4HOCJAOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ICULUDT6PYXH4N3DP6KMLNA5CNFSM4HOCJAO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH74Q.gif" height="1" width="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/2724?email_source=notifications\u0026email_token=AFTOJK3H6MKVZEGBLPTCAM3P6KMLNA5CNFSM4HOCJAO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH74Q#event-2464710642",
"url": "https://github.com/quicwg/base-drafts/issues/2724?email_source=notifications\u0026email_token=AFTOJK3H6MKVZEGBLPTCAM3P6KMLNA5CNFSM4HOCJAO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUH74Q#event-2464710642",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a13688310_38a23fb81f8cd9647567c7--


From nobody Sun Jul  7 18:50:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 022BA1200D8 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:50:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-WxnOEV3muB for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:50:14 -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 028CA1200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:50:14 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:50:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550612; bh=/bSqc4PcsQcEExrrH2FdUZx/f7KyoIg4IoRpvWUxuBg=; h=Date:From:To:Subject:From; b=KVxC5QE4cNw2znimZp99JNc4Ec0sTIKqyke8Mp1Q0MzJt1Q/Ha5qp08gMsAaDpB9p Nta4CEiYzODrSw0R6zh9VnT8NA5s+oW30Hgjh/B8zg1xoPvLeVuPGarfCBFxAuDyxK 4RWg+MtVkH7o3/cxEEyBUzS1v+3x2ULaDLDalu7k=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/25ead2-a5425f@github.com>
Subject: [quicwg/base-drafts] a5425f: Script updating gh-pages from 6a71414d. [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/MIQ4LJd_Ec1lojYHOesZvckoUZQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:50:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a5425ff4aa811fa63ebc33a290df5da57cc856e5
      https://github.com/quicwg/base-drafts/commit/a5425ff4aa811fa63ebc33a290df5da57cc856e5
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  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 6a71414d. [ci skip]



From nobody Sun Jul  7 18:50:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1CADE1200D7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:50:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YUSj7EFBFO0B for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:50:53 -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 3D3581200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:50:53 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:50:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550651; bh=z/gRuJJJH5lybOcTa7Xqk4Cer8atzfROpNpRjQ05PQ0=; h=Date:From:To:Subject:From; b=Q8YQiccKHbPhAHibqMIIWYVktG0koogY4Aau5U0uzy4oxMhuwQZUvgsMxOfaJNTYt DkhbasFxFL3MlXn/4J27uRzOzywxtFsKbrdsyMuA6FAnPlqQ3Mbb0G1HbKm58jMaRW NhHiztlExn1j/RNuJ5ZSp2Nyt8iQ0xBAqvTMadyc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a5425f-350226@github.com>
Subject: [quicwg/base-drafts] 350226: Script updating gh-pages from b7c58fd9. [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/aiNSCiGaxR3vh3LpXDI9Kjv3Fok>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:50:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 350226d5880482a42173d26ee2ce5548eaa7886d
      https://github.com/quicwg/base-drafts/commit/350226d5880482a42173d26ee2ce5548eaa7886d
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Sun Jul  7 18:51:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E7BA51200D7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 O9FrI9on5gAx for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51: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 8782B1200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:51:03 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:51:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550661; bh=f3w7jfAQ8LbTIY593PkY6OyBIE3W08gvasAA/KJ9JCk=; h=Date:From:To:Subject:From; b=xQMQHkQ7OANqR/eyF1cN0aGpFU+IPWxyabb10m1nKT9etT5/995knqdTi4qHaXHZY QL708+PjA8gEHvwPDKfmbP7iLD0a/x4YjCq8vWKAwpttLtY20Br/RZpdZvj99bF5jt 3CWQKdJnvyWuIgCFbHaDMxoHygnPf50mQZ3X/MTo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/b7c58f-3685b6@github.com>
Subject: [quicwg/base-drafts] 99ced9: Clarify ACK of ACKs and bundling a PING
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5Yqf9mwxpXuzkUAb1T9NhFqJkYk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:51:08 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 99ced9ef1199ad0efb5eb906171e994fda6826fd
      https://github.com/quicwg/base-drafts/commit/99ced9ef1199ad0efb5eb906171e994fda6826fd
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-14 (Fri, 14 Jun 2019)

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

  Log Message:
  -----------
  Clarify ACK of ACKs and bundling a PING

Fixes #2546 

If there's anything else discussed in London that I missed, please tell me.


  Commit: 8031f58dee2bd4aa29375d402bc64d9c6cb584ac
      https://github.com/quicwg/base-drafts/commit/8031f58dee2bd4aa29375d402bc64d9c6cb584ac
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-14 (Fri, 14 Jun 2019)

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

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


  Commit: c9da070a4f4301456ad88d591dc3c9d5e7a2589d
      https://github.com/quicwg/base-drafts/commit/c9da070a4f4301456ad88d591dc3c9d5e7a2589d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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

MUST NOT bundle a PING with all ACK-only packets


  Commit: e246745e8d3e4354a2b0cc6b3b3ee2bb489a85ff
      https://github.com/quicwg/base-drafts/commit/e246745e8d3e4354a2b0cc6b3b3ee2bb489a85ff
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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

Co-Authored-By: MikkelFJ <mikkelfj@gmail.com>


  Commit: 58e174a6c6afa7e8d24e615545b269faf0d50231
      https://github.com/quicwg/base-drafts/commit/58e174a6c6afa7e8d24e615545b269faf0d50231
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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


  Commit: 33aa341ce7a3f2966bb22c08971d91ed55bf9da0
      https://github.com/quicwg/base-drafts/commit/33aa341ce7a3f2966bb22c08971d91ed55bf9da0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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


  Commit: aa377d4eb35e0e6908ed21b18dce6608df8aead3
      https://github.com/quicwg/base-drafts/commit/aa377d4eb35e0e6908ed21b18dce6608df8aead3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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


  Commit: 77b46c30d60fb46e971d302c9324d377de1bdb8e
      https://github.com/quicwg/base-drafts/commit/77b46c30d60fb46e971d302c9324d377de1bdb8e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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


  Commit: 2b4486f2c49c84726bd0f8f082ff696d7b73ddbd
      https://github.com/quicwg/base-drafts/commit/2b4486f2c49c84726bd0f8f082ff696d7b73ddbd
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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


  Commit: 8a4593370beb26f67b4fa687fb9fe7fe38b0e56a
      https://github.com/quicwg/base-drafts/commit/8a4593370beb26f67b4fa687fb9fe7fe38b0e56a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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


  Commit: 2c3addf78ae448fd6593c3b384aa83959871bab5
      https://github.com/quicwg/base-drafts/commit/2c3addf78ae448fd6593c3b384aa83959871bab5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-17 (Mon, 17 Jun 2019)

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

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


  Commit: 045f99415dfce3e2b1607d16193d9186f68abc5f
      https://github.com/quicwg/base-drafts/commit/045f99415dfce3e2b1607d16193d9186f68abc5f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

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

Co-Authored-By: MikkelFJ <mikkelfj@gmail.com>


  Commit: f2b2ebb1f721907b233059b7caeca4ecae03f0a8
      https://github.com/quicwg/base-drafts/commit/f2b2ebb1f721907b233059b7caeca4ecae03f0a8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

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


  Commit: 5eaf4d9582c65c7d618e7b90cfce51243effaf02
      https://github.com/quicwg/base-drafts/commit/5eaf4d9582c65c7d618e7b90cfce51243effaf02
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

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


  Commit: bf9e38c8feb47740f2615c32e8000b81cafa53fb
      https://github.com/quicwg/base-drafts/commit/bf9e38c8feb47740f2615c32e8000b81cafa53fb
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

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


  Commit: 111407d94ec4cadafa75ebffd1a3a9f3b94b82d0
      https://github.com/quicwg/base-drafts/commit/111407d94ec4cadafa75ebffd1a3a9f3b94b82d0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

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


  Commit: 92716d077e40dd49870aa9c39bcaca9d80e5d7c8
      https://github.com/quicwg/base-drafts/commit/92716d077e40dd49870aa9c39bcaca9d80e5d7c8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

  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: 675a2ed31f8f3ef64f47f0aba973ce20c227e174
      https://github.com/quicwg/base-drafts/commit/675a2ed31f8f3ef64f47f0aba973ce20c227e174
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

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


  Commit: 7ed03b155612dbf05f75e415c8ac804887f5832a
      https://github.com/quicwg/base-drafts/commit/7ed03b155612dbf05f75e415c8ac804887f5832a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

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

One extra editorial fix


  Commit: 416583a40e672626baedc746e5a5e6f94fd4979c
      https://github.com/quicwg/base-drafts/commit/416583a40e672626baedc746e5a5e6f94fd4979c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-19 (Wed, 19 Jun 2019)

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

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

Kazuho's comment and one important fix.


  Commit: 9a2e34d2d6be4d7e04bf1175e50791cda6c8a26e
      https://github.com/quicwg/base-drafts/commit/9a2e34d2d6be4d7e04bf1175e50791cda6c8a26e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-21 (Fri, 21 Jun 2019)

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

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


  Commit: 36a2d9476358acf4c8b38dd9529b0429084638c7
      https://github.com/quicwg/base-drafts/commit/36a2d9476358acf4c8b38dd9529b0429084638c7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-24 (Mon, 24 Jun 2019)

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

  Log Message:
  -----------
  Add intro sentence about ACK only packets


  Commit: 4f2130e2c279efb01baa5789aca13ba364da00ee
      https://github.com/quicwg/base-drafts/commit/4f2130e2c279efb01baa5789aca13ba364da00ee
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-24 (Mon, 24 Jun 2019)

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

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

Co-Authored-By: Nick Banks <nibanks@microsoft.com>


  Commit: d8f77e8c64f79eb4f23beb95bd95bcc1f02e14a4
      https://github.com/quicwg/base-drafts/commit/d8f77e8c64f79eb4f23beb95bd95bcc1f02e14a4
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-25 (Tue, 25 Jun 2019)

  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: 233d0c522e16cedadfb4c89d7ccddcae576eda59
      https://github.com/quicwg/base-drafts/commit/233d0c522e16cedadfb4c89d7ccddcae576eda59
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-25 (Tue, 25 Jun 2019)

  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: 09ee3ebc938c58016d7c81eaec22dc2f1b8cb454
      https://github.com/quicwg/base-drafts/commit/09ee3ebc938c58016d7c81eaec22dc2f1b8cb454
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-06-25 (Tue, 25 Jun 2019)

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

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

Reflow some text to get CircleCI to run again.


  Commit: 81a9886a84216209e2f3a8b4db475a5428b0e58e
      https://github.com/quicwg/base-drafts/commit/81a9886a84216209e2f3a8b4db475a5428b0e58e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

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

Add an intro per Martin's suggestion as well as some of Martin's other suggestions.
Also added the Limiting ACK ranges sub-section


  Commit: b4f756770b96c402a2b90123c2d3a9378806ed9a
      https://github.com/quicwg/base-drafts/commit/b4f756770b96c402a2b90123c2d3a9378806ed9a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

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


  Commit: 5d90a56f7104a2377ea015a718752ef8700dce4a
      https://github.com/quicwg/base-drafts/commit/5d90a56f7104a2377ea015a718752ef8700dce4a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-01 (Mon, 01 Jul 2019)

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

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


  Commit: 9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1
      https://github.com/quicwg/base-drafts/commit/9f9ad4757f0d5247aa40b2250dfaa9e29c7d94b1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: e9c0357b7416ad5d14684731b05a3a02fc42e539
      https://github.com/quicwg/base-drafts/commit/e9c0357b7416ad5d14684731b05a3a02fc42e539
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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


  Commit: d6b8f0f1b276e409186910c9ca6c0a1f7c490af3
      https://github.com/quicwg/base-drafts/commit/d6b8f0f1b276e409186910c9ca6c0a1f7c490af3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec
      https://github.com/quicwg/base-drafts/commit/e02a4e8f026b786d1a6b900787a8ea2a4d5cd4ec
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 3525929ad18f4b68aa23a8d89b0dc00dc945ea91
      https://github.com/quicwg/base-drafts/commit/3525929ad18f4b68aa23a8d89b0dc00dc945ea91
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818
      https://github.com/quicwg/base-drafts/commit/e4296ef4b5dbe54de69fdbd477f9ccb7a01ff818
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: ec6a311f399ea4a1868d03066cf432872ff7e666
      https://github.com/quicwg/base-drafts/commit/ec6a311f399ea4a1868d03066cf432872ff7e666
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: e32333c304c4333bf3c986ae619e08532652a7d4
      https://github.com/quicwg/base-drafts/commit/e32333c304c4333bf3c986ae619e08532652a7d4
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 42540ef2946775787f457841486975bf5d4d8445
      https://github.com/quicwg/base-drafts/commit/42540ef2946775787f457841486975bf5d4d8445
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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


  Commit: 200841fa1a5175571e6a7c6c6ee01c8726bbb866
      https://github.com/quicwg/base-drafts/commit/200841fa1a5175571e6a7c6c6ee01c8726bbb866
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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


  Commit: 6c786bdf032d81c8bf8169d77e4c647b1c595b76
      https://github.com/quicwg/base-drafts/commit/6c786bdf032d81c8bf8169d77e4c647b1c595b76
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-02 (Tue, 02 Jul 2019)

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

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


  Commit: 5e43503dd4265966177e7f20e54cd576f845f33d
      https://github.com/quicwg/base-drafts/commit/5e43503dd4265966177e7f20e54cd576f845f33d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-03 (Wed, 03 Jul 2019)

  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: 3685b650c27fe0c83892079014f53bee7e3dff61
      https://github.com/quicwg/base-drafts/commit/3685b650c27fe0c83892079014f53bee7e3dff61
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Merge pull request #2794 from quicwg/ianswett-ack-ack

Clarify ACK of ACKs and bundling a PING


Compare: https://github.com/quicwg/base-drafts/compare/b7c58fd9f4ee...3685b650c27f


From nobody Sun Jul  7 18:51:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7D7A01200E3 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HzU87zcTFLhP for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:09 -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 E9EA41200D7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:51:08 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:51:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550668; bh=lVzesxzgJ2/atEiCBYyHZJkqciHzy5SCynWzM2/csaY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sE8AIf9Rl+B1THwrNK95TMsHtaOOkiNpoKLWH8NXtK6JTbsgEa5M8YDWifAttSnqe ftWUygxJXbFevsKVoqDymxobZwikPTt9AtcHbm+RCbeTD5ssCVGE5uNnCme9Wbr3qy C6ytJ2DOcHEHda3BeFZ1mVyYVWtiLXuhEefiIrME=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NAHAAZXMT4GNLCTV3F7KAZEVBNHHBSTLPJE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2546/issue_event/2464711910@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2546@github.com>
References: <quicwg/base-drafts/issues/2546@github.com>
Subject: Re: [quicwg/base-drafts] ACK of ACK are useful (#2546)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a18c3d7e9_3ca13fdb16acd95c785142"; 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/sTYb-i9wKadNBpQf_RoSF_ruDeY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:51:11 -0000

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

Closed #2546 via #2794.

-- 
You are receiving 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/2546#event-2464711910
----==_mimepart_5d22a18c3d7e9_3ca13fdb16acd95c785142
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="424505161" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2546" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2546/hovercard" href="https://github.com/quicwg/base-drafts/issues/2546">#2546</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="456489392" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2794" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2794/hovercard" href="https://github.com/quicwg/base-drafts/pull/2794">#2794</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/2546?email_source=notifications&amp;email_token=AFTOJKZM367S4RJ24UYGZI3P6KMQZA5CNFSM4HATX6LKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZQ#event-2464711910">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYMPKYWNPUX77RYBFDP6KMQZANCNFSM4HATX6LA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK36O23E5DUUK4XEL5TP6KMQZA5CNFSM4HATX6LKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZQ.gif" height="1" width="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/2546?email_source=notifications\u0026email_token=AFTOJKZM367S4RJ24UYGZI3P6KMQZA5CNFSM4HATX6LKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZQ#event-2464711910",
"url": "https://github.com/quicwg/base-drafts/issues/2546?email_source=notifications\u0026email_token=AFTOJKZM367S4RJ24UYGZI3P6KMQZA5CNFSM4HATX6LKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZQ#event-2464711910",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a18c3d7e9_3ca13fdb16acd95c785142--


From nobody Sun Jul  7 18:51:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6D6F41200D7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 OUHEDs-jVbJL for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51: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 A29001200B7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:51:09 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:51:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550668; bh=IhHBpgNT5bQkmmaqavN8RZ062WW6A0ZzY8Zn6e7cUEc=; h=Date:From:To:Subject:From; b=F61JVC+HcOXsSNdht2sI05a20CA1eaXlKakd53KEtq7TXddZCQvnfQbiFdvKOec4w BXyJeXKQSybVYrs30qp435VgYqcsA+xLeDy1weQ/4AnzE1K4Kp3evQQBcQhllWsAFd X5szoGb5RM/CwXUvXF4x29L7P0WcdKmj45CYhppg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-ack/5e4350-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/e2bME14U8X2WqVB35ti8LRS4fUk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:51:12 -0000

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


From nobody Sun Jul  7 18:51:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E9B371200D7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3jLD-BpPMosm for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51: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 7FDE61200F8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:51:10 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:51:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550669; bh=QTX4dXX+CSswjgvPy36E8Gp+JRLwjaSagU56wKomhw0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WRASnXrw3NaUBdxc4DGcR/m13+Z9ygyThNAfPAtT/AFikWZqDArt60kAnD6iSB8zd GyCADocQDHj5wbLLaMpqPktiEqwqO/ZU70GZphl4j+LAhH4Jw1/jBdXrQ7iM2dcEPi PwujnyORMqUZzmsIDbgcy3+rukYhPISxil1rWhvU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZYZ3HXLXIBW6JKMDF3F7KA3EVBNHHBWNLZWA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2794/issue_event/2464711909@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2794@github.com>
References: <quicwg/base-drafts/pull/2794@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK of ACKs and bundling a PING (#2794)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a18d24044_146b3fd9f64cd960434887"; 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/Vm5ognSYaVIfl08BVch4IbRiY-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: Mon, 08 Jul 2019 01:51:13 -0000

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

Merged #2794 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/2794#event-2464711909
----==_mimepart_5d22a18d24044_146b3fd9f64cd960434887
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="456489392" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2794" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2794/hovercard" href="https://github.com/quicwg/base-drafts/pull/2794">#2794</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/2794?email_source=notifications&amp;email_token=AFTOJK3ICKRKVDPGR7GJIA3P6KMQ3A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZI#event-2464711909">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7G35K2EQOETNZWZU3P6KMQ3ANCNFSM4HYOBHNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5B7GGAWA3TSWT72I3P6KMQ3A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK3ICKRKVDPGR7GJIA3P6KMQ3A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZI#event-2464711909",
"url": "https://github.com/quicwg/base-drafts/pull/2794?email_source=notifications\u0026email_token=AFTOJK3ICKRKVDPGR7GJIA3P6KMQ3A5CNFSM4HYOBHN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIJZI#event-2464711909",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a18d24044_146b3fd9f64cd960434887--


From nobody Sun Jul  7 18:51:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2306F1200DB for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 EhGxWCJkb_I7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51: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 839911200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:51:42 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:51:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550701; bh=+7O8DsrFRWs+U8DkIOAIblHCJ6VF16h0OIO7x5RMF9c=; h=Date:From:To:Subject:From; b=b7Ks4Qd5hw+vqPcfn8t6p8WTLuVxXE5NQXVJRCzQyMJ3uR7hEZNLAr0dOL8TKBSQW 2Z540HkZhmsSCzUGteYf9aO6AdwBrYobrO/20YZ9jKhnx+s/TYTppd0gFTh+VbJzek xpmDPNZF0wGqtIVT1afZDRSZ+M2krD1ssCb//Ml8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/3685b6-84eee5@github.com>
Subject: [quicwg/base-drafts] ef52e6: State requirement that clients must wait until ACK...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x01HqEC-B7nZSPyOhwL0GGQG_Uk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:51:45 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: ef52e69f22902e6c85a0b2a60cae09defd9a9d43
      https://github.com/quicwg/base-drafts/commit/ef52e69f22902e6c85a0b2a60cae09defd9a9d43
  Author: huitema <huitema@huitema.net>
  Date:   2019-01-26 (Sat, 26 Jan 2019)

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

  Log Message:
  -----------
  State requirement that clients must wait until ACK of 1-RTT
message before initiating connection migration.


  Commit: e449a442086ecaf478c7a2b002a3f43c1a4b17b7
      https://github.com/quicwg/base-drafts/commit/e449a442086ecaf478c7a2b002a3f43c1a4b17b7
  Author: huitema <huitema@huitema.net>
  Date:   2019-01-27 (Sun, 27 Jan 2019)

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

  Log Message:
  -----------
  Update the proposed migration text based on comments.


  Commit: cdaf4ff621a0a6f2ed841c758828ec3610f0cb6c
      https://github.com/quicwg/base-drafts/commit/cdaf4ff621a0a6f2ed841c758828ec3610f0cb6c
  Author: huitema <huitema@huitema.net>
  Date:   2019-01-27 (Sun, 27 Jan 2019)

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

  Log Message:
  -----------
  Add handshake completion section so we can have a single reference.
Refer to that when specifying whento initiate migration.


  Commit: 4b096a19558f17aa9539868cd4767f6dbb0b0203
      https://github.com/quicwg/base-drafts/commit/4b096a19558f17aa9539868cd4767f6dbb0b0203
  Author: huitema <huitema@huitema.net>
  Date:   2019-01-31 (Thu, 31 Jan 2019)

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

  Log Message:
  -----------
  Per Tokyo interop: editors will complete the section "handshake completion", and the migration conditions will then be explained.


  Commit: 3a11ef01f6736ca7e3a4ec58c2a43614c5444e08
      https://github.com/quicwg/base-drafts/commit/3a11ef01f6736ca7e3a4ec58c2a43614c5444e08
  Author: Christian Huitema <huitema@huitema.net>
  Date:   2019-06-04 (Tue, 04 Jun 2019)

  Changed paths:
    M CONTRIBUTING.md
    M README.md
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    R draft-ietf-quic-spin-exp.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md
    M initial-protection.js
    M tag.sh
    A workflow.png
    A workflow.xml

  Log Message:
  -----------
  Merge pull request #12 from quicwg/master

Align with master 2019/06/04


  Commit: 7312d63a4ee85cd125b97d3868a9572f129e0120
      https://github.com/quicwg/base-drafts/commit/7312d63a4ee85cd125b97d3868a9572f129e0120
  Author: Christian Huitema <huitema@huitema.net>
  Date:   2019-06-04 (Tue, 04 Jun 2019)

  Changed paths:
    M CONTRIBUTING.md
    M README.md
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    R draft-ietf-quic-spin-exp.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md
    M initial-protection.js
    M tag.sh
    A workflow.png
    A workflow.xml

  Log Message:
  -----------
  Merge pull request #13 from huitema/master

align with master


  Commit: 23bacec76b1a30d8cb2119f7cb8c085c02524973
      https://github.com/quicwg/base-drafts/commit/23bacec76b1a30d8cb2119f7cb8c085c02524973
  Author: huitema <huitema@huitema.net>
  Date:   2019-06-04 (Tue, 04 Jun 2019)

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

  Log Message:
  -----------
  Reference "handshake confrmed" for connection migration.


  Commit: 0cefaa1ddf7680bc5d04133fd93e8216c57ceae7
      https://github.com/quicwg/base-drafts/commit/0cefaa1ddf7680bc5d04133fd93e8216c57ceae7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-06-11 (Tue, 11 Jun 2019)

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

  Log Message:
  -----------
  Whitespace edits


  Commit: 84eee53493ff81dbec79e13a70196c4fb8ea3c58
      https://github.com/quicwg/base-drafts/commit/84eee53493ff81dbec79e13a70196c4fb8ea3c58
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Merge pull request #2370 from huitema/stronger-migration-handshake

Stronger migration handshake


Compare: https://github.com/quicwg/base-drafts/compare/3685b650c27f...84eee53493ff


From nobody Sun Jul  7 18:51:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 32EC21200F5 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6lOazXb6dcpC for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51: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 593251200D7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:51:49 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:51:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550708; bh=jL0Uii0x/9DsyDjFgcV1QBBLAeLJ0pNNJPBUVyexXU4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Z6fIb+BXvuM4SjIFq8U7/acKdpNrajjBWEsRo33sDak9iESJ4E6tEBvq806ozTbrd FOfQiEmdFnWFTQ6XMMH6Q9ntH0S53B+I1Z0MUycj1blZFOXZ4CpDbwRWmyvJRbJGoM viU0bEZJa6cAY/FSh+zf/3MQ2VncTB3PgjZ6DxRE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32ILHVITT4TQI473V3F7KDJEVBNHHBPH6JBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2309/issue_event/2464712478@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2309@github.com>
References: <quicwg/base-drafts/issues/2309@github.com>
Subject: Re: [quicwg/base-drafts] Migration before handshake completed is very messy (#2309)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a1b42a6e4_106a3fb5df4cd96438000"; 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/4WVw1-1Ebsz4VMVOuTgwmNqBZtQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:51:51 -0000

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

Closed #2309 via #2370.

-- 
You are receiving 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/2309#event-2464712478
----==_mimepart_5d22a1b42a6e4_106a3fb5df4cd96438000
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="396347659" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2309" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2309/hovercard" href="https://github.com/quicwg/base-drafts/issues/2309">#2309</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="403509345" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2370" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2370/hovercard" href="https://github.com/quicwg/base-drafts/pull/2370">#2370</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/2309?email_source=notifications&amp;email_token=AFTOJK7UUQWIY4XZBMWTZIDP6KMTJA5CNFSM4GOLOKCKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHQ#event-2464712478">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72PDKHT2E7MPBLBBTP6KMTJANCNFSM4GOLOKCA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZEEZMKFBOVHQQLYMDP6KMTJA5CNFSM4GOLOKCKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHQ.gif" height="1" width="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/2309?email_source=notifications\u0026email_token=AFTOJK7UUQWIY4XZBMWTZIDP6KMTJA5CNFSM4GOLOKCKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHQ#event-2464712478",
"url": "https://github.com/quicwg/base-drafts/issues/2309?email_source=notifications\u0026email_token=AFTOJK7UUQWIY4XZBMWTZIDP6KMTJA5CNFSM4GOLOKCKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHQ#event-2464712478",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a1b42a6e4_106a3fb5df4cd96438000--


From nobody Sun Jul  7 18:52:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 52F481200E3 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VDI0P7bsgQ5l for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:51: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 44B831200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:51:50 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:51:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550709; bh=walsITwLZmF+K92ZyDELq6dG3eTh8zJgcDeLQbOCGZ8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ylB1QLcMh/hwGiEzM+K6fptdQkTlk0zJtGoIvAd9pQyUtmvCzRUcOJZWV7s0yWR9g zaOU31tooya0YiFhyVCsfcZwVfiPMS8rTzxGQOC2VRU7JrTlpqZG6Xl9a/1N94rjKp x/V58mB0T7SuZv04b5oqp7RYH3JzbDDvQGUfhXSM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CTMUAR7BB7NWYQZN3F7KDLEVBNHHBQDIQME@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2370/issue_event/2464712476@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2370@github.com>
References: <quicwg/base-drafts/pull/2370@github.com>
Subject: Re: [quicwg/base-drafts] Stronger migration handshake (#2370)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a1b561e5_74c33fadb8ccd968492987"; 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/uiDVEWaTpcwILHmb97zvNJxzGiw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:51:52 -0000

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

Merged #2370 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/2370#event-2464712476
----==_mimepart_5d22a1b561e5_74c33fadb8ccd968492987
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="403509345" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2370" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2370/hovercard" href="https://github.com/quicwg/base-drafts/pull/2370">#2370</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/2370?email_source=notifications&amp;email_token=AFTOJKYZGEYKXUHRZJ2PZGLP6KMTLA5CNFSM4GSSCBF2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHA#event-2464712476">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK66OMD3F5IRRRFFNWDP6KMTLANCNFSM4GSSCBFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZISVZJH2HHRMF3E2LP6KMTLA5CNFSM4GSSCBF2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2370?email_source=notifications\u0026email_token=AFTOJKYZGEYKXUHRZJ2PZGLP6KMTLA5CNFSM4GSSCBF2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHA#event-2464712476",
"url": "https://github.com/quicwg/base-drafts/pull/2370?email_source=notifications\u0026email_token=AFTOJKYZGEYKXUHRZJ2PZGLP6KMTLA5CNFSM4GSSCBF2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSLUIOHA#event-2464712476",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a1b561e5_74c33fadb8ccd968492987--


From nobody Sun Jul  7 18:52:16 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4516E1200D8 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k7MrvTYnYpJZ for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52: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 540501200D7 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:52:02 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:52:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550722; bh=XxqIcKm5vdwYTGnkJuiP3Nql62xWs7Vm3wMQQ+QkjXg=; h=Date:From:To:Subject:From; b=guUkpi5/IbqCw/iiYD+oG2hJOJthUmTG5htMTyLw2FAlobuTtqCffdJiPGAbXCpkK xwwuAuwJn/ao7aIHF6QoteB2qc/M+BoJLY6ylqRjLxHj3BVFrBWNUw43Dt5ewWIwQW g12g/6OFQbeXdtiGXcRkDdWXgBzIauOaQguuQMvU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/350226-d5b4e6@github.com>
Subject: [quicwg/base-drafts] d5b4e6: Script updating issues at 2019-07-08T01:51:55Z. [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/DEe4gAH781ySj4KlVBiheTuq-Rs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:52:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d5b4e6c917ab5fdafd6ab73e446d1da2485b153f
      https://github.com/quicwg/base-drafts/commit/d5b4e6c917ab5fdafd6ab73e446d1da2485b153f
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-08T01:51:55Z. [ci skip]



From nobody Sun Jul  7 18:52:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 985B31200E5 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GDgf0btwmHyR for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52: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 F41481200DB for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:52:15 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:52:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550734; bh=PUA6ycIEvkYVfC7DykesCgY0PipnQSK7YwgSgutXzuk=; h=Date:From:To:Subject:From; b=dgb1egLOEjSog339OvfPWF5hTDqTCJB+lyshCaJht3gmv9+S+/k7xvRj5kSIib/aO Tnuzf3x/45e7r4wYgLqljyaVFVf9lbm6MCUoIPABa4MqNHQQ6VEPnEfdpGKUsDN7pP Y36tPukWXmP7GQmEGJxM7VWc943AlN0mwJNqoqok=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d5b4e6-ee252a@github.com>
Subject: [quicwg/base-drafts] ee252a: Script updating gh-pages from 3685b650. [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/9c7mbLwA3Q2H0B7Ja3OVIjcadUo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:52:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ee252adf5bb15acb7337bcd61f7cb79b250a12c2
      https://github.com/quicwg/base-drafts/commit/ee252adf5bb15acb7337bcd61f7cb79b250a12c2
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Sun Jul  7 18:52:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E87571200D7 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QS_cOzC-TpZf for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52:32 -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 6BCFD120121 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:52:31 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:52:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550749; bh=ajTW6U/O8L9jB+DNFKHtbUWpbynmxPLZVnLaSVC6GcY=; h=Date:From:To:Subject:From; b=Fx8Cl7hKYUeirXe1KynvZqmV2dmNopBESqhh+hqDjT7qAocVWzLKFhTF5hk5bNw8r oNkZATk6OixroSi8R8Ue4JuAldGUnyv5BSMrC/x4dh67Xalf9tJkcuPW++bNuqtyIe 6G7slTpLYgDIYgBvZLBaSx5+gALW/7bYxhXlomrQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ee252a-f6b570@github.com>
Subject: [quicwg/base-drafts] f6b570: Script updating issues at 2019-07-08T01:52:24Z. [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/xtXqeuZwmrOrB3e2vPFB6Gr5CvM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:52:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f6b57064183eedc5d9ff641f7fab708144989e94
      https://github.com/quicwg/base-drafts/commit/f6b57064183eedc5d9ff641f7fab708144989e94
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-08T01:52:24Z. [ci skip]



From nobody Sun Jul  7 18:52:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 367321200E3 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id awF5VWBnTU0j for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 18:52:51 -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 48A8E1200DB for <quic-issues@ietf.org>; Sun,  7 Jul 2019 18:52:51 -0700 (PDT)
Date: Sun, 07 Jul 2019 18:52:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562550770; bh=j53BceYagJBmVYAAejplULypnGPK/IHwh3VVbmQ3CrU=; h=Date:From:To:Subject:From; b=hhY0ddXESR+LCB0w2tb3N5ueT8gjFt32r1UM+BibhGqOUUuixk+dCAdZ3C4a6XFBF g/5zLXUpdtAjZfEGRItf7Fsm/Nac/b6XhsDB0AzrKq6FMuR6xqZVle1qareTa1tjjA 95o0sDZfUWCBypVsCU0Cr+HflW1dE/aB9JqhgRiY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f6b570-e542a1@github.com>
Subject: [quicwg/base-drafts] e542a1: Script updating gh-pages from 84eee534. [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/yM6N6FY5bcb-OBuITt-YJ29Awtg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 01:52:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e542a173c31816016af1ac0433944be9cfcb3ac7
      https://github.com/quicwg/base-drafts/commit/e542a173c31816016af1ac0433944be9cfcb3ac7
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Sun Jul  7 19:00:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 115631200E3 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:00:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZQtiyu0uKiOk for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:00:34 -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 079521200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:00:34 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:00:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562551232; bh=DgiLmiE1Th58wP8Rc8mW1dlWpeNm/qWMjZue4acQilk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tqTx2EjYUYIB6F41ewhWrc1nL2CdmBf5QIk+SdOklb00f+1PS58rWPfy5jNYfxRrX ZY/O7k7+a1Tuat/HRbXnibRnUEimSE1On6TQOYi8DWbEoNEGHkQSCSscu1K/5WS++e qrAgFsG+3jXaO03KW3L6hgfaBKMpi3BUH6YPrw5E=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3P2YT5OAJWOCDPSA53F7LEBEVBNHHBUAC2DE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2642/c509053041@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2642@github.com>
References: <quicwg/base-drafts/pull/2642@github.com>
Subject: Re: [quicwg/base-drafts] Don't send PING in Initial or Handshake (#2642)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a3c03e5a1_b3c3f8c83acd95c8135cc"; 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/efF9kvVSdrLE5efFYRpbhHTytB8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:00:36 -0000

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

Note that I didn't include this in the changelog for -21.  It seems entirely editorial to my reading.

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

<p>Note that I didn't include this in the changelog for -21.  It seems entirely editorial to my reading.</p>

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


From nobody Sun Jul  7 19:07:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3AD981200FB for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:07:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 4xWHAeM4cpEj for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:07: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 5D3731200FA for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:07:29 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:07:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562551647; bh=iOa7iIoCmwW6Lll4EPZ9uVKlLmZgwxiA5kcPHRTG7Og=; h=Date:From:To:Subject:From; b=T4ycfz1FkYVEpjhoAJoCezFckMp/yL/AS7mn1MA/e9DX7mX9lhw/WdU0AscEMf/XX E0e0Mrwv7sppNgeAjvir7JTMMyZCjupTSISL6bP9bQgDAtizH5dwaD592kUzVtCsZp CVNGEKXx0QaYFm4KP+jfRh6DprvusMGNU1QBhpfo=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/9168f5-aef7ba@github.com>
Subject: [quicwg/wg-materials] aef7ba: Rough in 105 agenda
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/j281h-bRdpBQOVRzfyTuwVCBL_0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:07:31 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: aef7ba550272ded93b6db53250a965844f1353c5
      https://github.com/quicwg/wg-materials/commit/aef7ba550272ded93b6db53250a965844f1353c5
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    A ietf105/agenda.md

  Log Message:
  -----------
  Rough in 105 agenda



From nobody Sun Jul  7 19:17:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AC9101200F1 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:17:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3rOYMiqkxT3v for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:17: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 DFFA61200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:17:03 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:17:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562552222; bh=rdLZL0PUFVvYUiWyQG7Mgne8qjT4eYLxnQ/6oVORdzQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mwZvCPwMgeDYHj2I0xXb7DdCIWq0NexfWCf9Bgz0HgpX23/Lcf3dVO2ONmCurkpu7 ZVZjgrwIF/2MyEwSZ26kklaGqYMCOkKOoF+wu5juxL7R50+1e6OnCYG40LpfBYI+ch giSasXjyBFcm9yXrXOFIz8Or3D9daBeBETh9+jTM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6BBFAA7BHW62U7VLN3F7NB5EVBNHHBWFQZ2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2780/c509055369@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2780@github.com>
References: <quicwg/base-drafts/pull/2780@github.com>
Subject: Re: [quicwg/base-drafts] use upper-case RECOMMENDED for text incorporated from RFC 7540 (#2780)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22a79e87d90_7bd83fa900ecd964109385"; 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/O_-t7QZuBIa-FqGlt8meahbolis>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:17:06 -0000

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

That was never an interoperability requirement, just a suggestion.  So I think that this should be reverted.

If it isn't, using the active voice might be 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/2780#issuecomment-509055369
----==_mimepart_5d22a79e87d90_7bd83fa900ecd964109385
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That was never an interoperability requirement, just a suggestion.  So I think that this should be reverted.</p>
<p>If it isn't, using the active voice might be 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/2780?email_source=notifications&amp;email_token=AFTOJK3EQ6RLDC4QGU7GPLLP6KPR5A5CNFSM4HWZVGB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLZDCI#issuecomment-509055369">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2S45JSQAXUGBEUNALP6KPR5ANCNFSM4HWZVGBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CIIGYUFK3KDFHDBLP6KPR5A5CNFSM4HWZVGB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLZDCI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2780?email_source=notifications\u0026email_token=AFTOJK3EQ6RLDC4QGU7GPLLP6KPR5A5CNFSM4HWZVGB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLZDCI#issuecomment-509055369",
"url": "https://github.com/quicwg/base-drafts/pull/2780?email_source=notifications\u0026email_token=AFTOJK3EQ6RLDC4QGU7GPLLP6KPR5A5CNFSM4HWZVGB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZLZDCI#issuecomment-509055369",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22a79e87d90_7bd83fa900ecd964109385--


From nobody Sun Jul  7 19:27:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B8CCC1200FF for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:27:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 hvjdmw-yB33u for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:27:31 -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 163DD1200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:27:31 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:27:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562552849; bh=vc7aCQJzsUVtWFL9fXXqm0Buewr8g+RaJcmardzUEjw=; h=Date:From:To:Subject:From; b=idP9FARCgj5OFBNRBm/UXGj90X3cv7LeyYSDiIElKK/79hXTcybxDVe5JqI4TPYRv kbfb7ZyuUBQYxOiYp8pC2GyVu2vsMYckb0xIp2VKqA6w3EOHLfJhO/K7y9es6dZp4p fI+JyhjRGYebzgsLsBwSinM9ME1UrcNZExgGBdvg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-21/000000-d7ed46@github.com>
Subject: [quicwg/base-drafts] d7ed46: Change log for -21
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6cYX2UyHSoi-hJNPwO6chA8M6UM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:27:33 -0000

  Branch: refs/heads/changelog-21
  Home:   https://github.com/quicwg/base-drafts
  Commit: d7ed46a84cd78a601e1fa1581d59b3c21cec3947
      https://github.com/quicwg/base-drafts/commit/d7ed46a84cd78a601e1fa1581d59b3c21cec3947
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  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:
  -----------
  Change log for -21



From nobody Sun Jul  7 19:28:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 722991200FF for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:28:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 Z2_iIWWSl2YP for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:28:22 -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 50F611200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:28:22 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:28:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562552900; bh=+XFbBadF2uclzLtWxSXygAbeYGIR3RAnr3Z1SeKV96A=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=tahxs0fSlcY1ePO9qyz4EnGCkDIxAF4om6ZXCjwePBTXOKv0wVsJahTXs0z/RRw2J 9zRJ0iRhty0MH1FdnujhZ86JWZ2rlUVb9uuytYe+/pvywje0GUsyay1smrID91kNaa rdnlZfUJ3YNGrqyFxSR5jkh7FuBueXkC70dThoV8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7GVROWJPR2FKKWOWV3F7OMJEVBNHHBXN56RE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2875@github.com>
Subject: [quicwg/base-drafts] Change log for -21 (#2875)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22aa445f174_73263fd9f64cd96010365d5"; 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/_2hqqi5S1PEGtlUEgxhjcaSb6no>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:28:24 -0000

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

Enjoy, but don't savour it for too long because I plan to merge this before the draft deadline hits.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Change log for -21

-- File Changes --

    M draft-ietf-quic-http.md (24)
    M draft-ietf-quic-qpack.md (6)
    M draft-ietf-quic-recovery.md (7)
    M draft-ietf-quic-tls.md (6)
    M draft-ietf-quic-transport.md (29)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2875.patch
https://github.com/quicwg/base-drafts/pull/2875.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/2875

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

<p>Enjoy, but don't savour it for too long because I plan to merge this before the draft deadline hits.</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/2875'>https://github.com/quicwg/base-drafts/pull/2875</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Change log for -21</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2875/files#diff-0">draft-ietf-quic-http.md</a>
    (24)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2875/files#diff-1">draft-ietf-quic-qpack.md</a>
    (6)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2875/files#diff-2">draft-ietf-quic-recovery.md</a>
    (7)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2875/files#diff-3">draft-ietf-quic-tls.md</a>
    (6)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2875/files#diff-4">draft-ietf-quic-transport.md</a>
    (29)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2875.patch'>https://github.com/quicwg/base-drafts/pull/2875.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2875.diff'>https://github.com/quicwg/base-drafts/pull/2875.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/2875?email_source=notifications&amp;email_token=AFTOJK35RZU3SRZNEDY4FODP6KQ4JA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5XX2EQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZOXNOJM5YWQETCZXLP6KQ4JANCNFSM4H6XJPMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BYB5GI5KMJ5XKYA3P6KQ4JA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5XX2EQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2875?email_source=notifications\u0026email_token=AFTOJK35RZU3SRZNEDY4FODP6KQ4JA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5XX2EQ",
"url": "https://github.com/quicwg/base-drafts/pull/2875?email_source=notifications\u0026email_token=AFTOJK35RZU3SRZNEDY4FODP6KQ4JA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G5XX2EQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d22aa445f174_73263fd9f64cd96010365d5--


From nobody Sun Jul  7 19:29:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 447EF1200FF for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:29:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ut8-lYym_1xU for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 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 BD5851200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:29:05 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:29:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562552944; bh=Ai7Cre1e6a4moQnuNS3A8T2TMYwXrsK7HxZJXUsmKfA=; h=Date:From:To:Subject:From; b=UEmT0fS3uacSKbndZEUlvxjKHXoc8hDYFoGEGI6MK/p+AWkVkU4yHtKmL+fonctXF BZ442VSbqILNmq7N2nzJg/1DjiElzZvIKPWvWghCAfhmomwdpqyHTSOk7x0DDXq/0/ f0jMHy2segHVAry5agIbLax7Et8jghUctsr5co1o=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e542a1-35ee4d@github.com>
Subject: [quicwg/base-drafts] 35ee4d: Script updating gh-pages from d7ed46a8. [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/mhSK52Sf3EYqetndqUhlfaz78xY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:29:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 35ee4dd1d2e0eb8f988188004595dcef8415d71e
      https://github.com/quicwg/base-drafts/commit/35ee4dd1d2e0eb8f988188004595dcef8415d71e
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Sun Jul  7 19:46:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A05151200FA for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:46:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bhfp2eVtQbcA for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19: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 E8C2A1200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:46:10 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:46:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562553969; bh=CymvzAoOGbvx8tBQEd/o7i3L4ytQOA9eEjFQ2nsAv/c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i1X4J2nt2EAhhiN9FodoOJvK1sT86IQaKKLHhkGDs/7v38Kzg93ERTLX8iY7thH79 O0Lt5usNlXb/ZJ9diWBGa+r7mEe5qzmcrYnjgDc74PkXIaPWY52xhRz1XfsqhKWxNA +TA3MC6XbH4/6iKTrxYUCIBnISVJGnjay4Q4UrRI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ICWOYCYMAPLHNB5N3F7QPDEVBNHHBXN56RE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2875/review/258665671@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2875@github.com>
References: <quicwg/base-drafts/pull/2875@github.com>
Subject: Re: [quicwg/base-drafts] Change log for -21 (#2875)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22ae7187c7e_45263fe5d50cd9604959cc"; 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/-qallI-ayVX7nEd-krXDS8C9cpQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:46:13 -0000

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

ianswett approved this pull request.



> @@ -1532,6 +1532,13 @@ Invoked from DetectLostPackets when packets are deemed lost.
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-recovery-20
+
+- Path validation can be used to initial RTT value (#2644, #2687)

```suggestion
- Path validation can be used as initial RTT value (#2644, #2687)
```

> @@ -1532,6 +1532,13 @@ Invoked from DetectLostPackets when packets are deemed lost.
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-recovery-20
+
+- Path validation can be used to initial RTT value (#2644, #2687)
+- max_ack_delay transport parameter defaults to 0 (#2638, #2646)
+- Ack Delay only measures delays induced by the QUIC implementation (#2596,

```suggestion
- Ack Delay only measures intentional delays induced by the implementation (#2596,
```

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

<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/2875#discussi=
on_r300904642">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1532,6 +1532,13 @@ Invoked from Detect=
LostPackets when packets are deemed lost.=0D
 =0D
 Issue and pull request numbers are listed with a leading octothorp.=0D
 =0D
+## Since draft-ietf-quic-recovery-20=0D
+=0D
+- Path validation can be used to initial RTT value (#2644, #2687)=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-- Path validation can be used to initial RTT =
value (#2644, #2687)=0D
+- Path validation can be used as initial RTT value (#2644, #2687)=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2875#discussi=
on_r300905010">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1532,6 +1532,13 @@ Invoked from Detect=
LostPackets when packets are deemed lost.=0D
 =0D
 Issue and pull request numbers are listed with a leading octothorp.=0D
 =0D
+## Since draft-ietf-quic-recovery-20=0D
+=0D
+- Path validation can be used to initial RTT value (#2644, #2687)=0D
+- max_ack_delay transport parameter defaults to 0 (#2638, #2646)=0D
+- Ack Delay only measures delays induced by the QUIC implementation (#25=
96,=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-- Ack Delay only measures delays induced by t=
he QUIC implementation (#2596,=0D
+- Ack Delay only measures intentional delays induced by the implementati=
on (#2596,=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/2875?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK2PKKW3LL2UPC26IBTP6KS7DA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5VOZRY#pullrequestreview-258665671=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK4WVIOIIGU42NWLVFTP6KS7DANCNFSM4H6XJPMQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZTA4RY=
KTUB6SSJDQTP6KS7DA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB5VOZRY.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/2875?email_source=3D=
notifications\u0026email_token=3DAFTOJK2PKKW3LL2UPC26IBTP6KS7DA5CNFSM4H6X=
JPM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
5VOZRY#pullrequestreview-258665671",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2875?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2PKKW3LL2UPC26IBTP6KS7DA5CNFSM4H6XJP=
M2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5V=
OZRY#pullrequestreview-258665671",=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_5d22ae7187c7e_45263fe5d50cd9604959cc--


From nobody Sun Jul  7 19:59:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BD7331200FA for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:59:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 6XE0IBIsMJ_U for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:59: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 880661200F3 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:59:02 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:59:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562554740; bh=Q4v8BkFgTv3jhlhY8fQQw7ENibL34AsIBFfqhu9A+dk=; h=Date:From:To:Subject:From; b=B40pqaLhmgjwzqGm0ukJPs5PY892BCZAi3NR1hfM9L30vfN/S/6iNXL59cLVA6kdd 8jskySoUWXdFhrSSl0Pkwqd6t9HetXmpuMdlw538WXg/wVWJU1lI+R3ly8zdUVZO5U QIKOJKjKO7aA3zHPS+LPv5COShu8Zf04fpge6FiM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-21/d7ed46-2ffc0b@github.com>
Subject: [quicwg/base-drafts] 2ffc0b: Ian's tweaks to text=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/9FTPJBZM6YbKNTiBuE2cBrdkxTE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:59:04 -0000

  Branch: refs/heads/changelog-21
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2ffc0b72a3449819b8a28bc0abc3ecc8de65a329
      https://github.com/quicwg/base-drafts/commit/2ffc0b72a3449819b8a28bc0abc3ecc8de65a329
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Ian's tweaks to text

Which will likely fail to build...

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>



From nobody Sun Jul  7 19:59:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8E7101200FA for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:59:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id S9N0pgD1Esol for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:59: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 D68151200F3 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:59:09 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:59:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562554748; bh=sjGrhkgs8IcBOBTAoUFRzGKDaqVvgBcTtXupZeww614=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y6FvHvjXFBq4uejMWXCC9HHrt40ExVE46uN8F/NDv2wyeW2BRGZ1OWvM9K4OnOChf EMeyql8Ux/NJryf4TKII0qMEYzkTIrS6jL4CArXUwx/J69vnsWkiK+/6PeALfuHfVu F7TsxkNGoiJmwbZQ4xeuke1IZY3Jobwm2exmFp1k=
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/2875/push/3791465861@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2875@github.com>
References: <quicwg/base-drafts/pull/2875@github.com>
Subject: Re: [quicwg/base-drafts] Change log for -21 (#2875)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22b17c4fe5b_7a1d3ffa9accd95c69703"; 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/-HhcSIysYiuXe5JdQldhPaZr8VE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:59:11 -0000

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

@martinthomson pushed 1 commit.

2ffc0b72a3449819b8a28bc0abc3ecc8de65a329  Ian's tweaks to text


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2875/files/d7ed46a84cd78a601e1fa1581d59b3c21cec3947..2ffc0b72a3449819b8a28bc0abc3ecc8de65a329

----==_mimepart_5d22b17c4fe5b_7a1d3ffa9accd95c69703
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/2ffc0b72a3449819b8a28bc0abc3ecc8de65a329">2ffc0b7</a>  Ian&#39;s tweaks to text
</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/2875/files/d7ed46a84cd78a601e1fa1581d59b3c21cec3947..2ffc0b72a3449819b8a28bc0abc3ecc8de65a329?email_source=notifications&amp;email_token=AFTOJK5F6EZMVGRTOI7HST3P6KUPZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGU4DMMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52FEGESSTTYAOM3NDP6KUPZANCNFSM4H6XJPMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4K5XX5KODX7XLWSBDP6KUPZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGU4DMMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2875/files/d7ed46a84cd78a601e1fa1581d59b3c21cec3947..2ffc0b72a3449819b8a28bc0abc3ecc8de65a329?email_source=notifications\u0026email_token=AFTOJK5F6EZMVGRTOI7HST3P6KUPZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGU4DMMI",
"url": "https://github.com/quicwg/base-drafts/pull/2875/files/d7ed46a84cd78a601e1fa1581d59b3c21cec3947..2ffc0b72a3449819b8a28bc0abc3ecc8de65a329?email_source=notifications\u0026email_token=AFTOJK5F6EZMVGRTOI7HST3P6KUPZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGU4DMMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d22b17c4fe5b_7a1d3ffa9accd95c69703--


From nobody Sun Jul  7 19:59:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EC3781200F3 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:59:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 1WtA3CJXLB58 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19: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 991591200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:59:34 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:59:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562554773; bh=Tn8Xs0mMZCzJajr3J19RKvMen1ycfGa5OZwz95sdG3M=; h=Date:From:To:Subject:From; b=0ZFDCXeL0DxXAp6uCyj0sVLoyu8NbkjbC0PwMIn1wJmFeAX50AV0rR9K2rOYYN2yk ckewc5OwVANXk0ikAQoIo6XrNMJKnjW99z4a/zRmmlgDCwtcmSFY+ZFIXS8OOM0e6g mD9OZJDD6E4wiLMBR/kQv0kErWnbvzBhjBQIsi3o=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-21/2ffc0b-a0e7d7@github.com>
Subject: [quicwg/base-drafts] a0e7d7: 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/ym4AoZydHK3SM5Y75sShKZ2eoy8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:59:36 -0000

  Branch: refs/heads/changelog-21
  Home:   https://github.com/quicwg/base-drafts
  Commit: a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29
      https://github.com/quicwg/base-drafts/commit/a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Reflow



From nobody Sun Jul  7 19:59:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0584D1200F3 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:59:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X9c4Xlcige4T for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 19:59: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 3C1421200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 19:59:42 -0700 (PDT)
Date: Sun, 07 Jul 2019 19:59:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562554780; bh=76Wh9X1jrAtM+bDd33dESFNzLkUnssM7hzv5QkxVXhw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ADP18lUpjKmX9nUx+Va/szmkYT/vRPsG+ZOSughg8/2J+ZaMTuCS1pgGV5iv33tJb oBFkpnr4dkq1AB7MIU6YOwNRm/sSCBb8NHjf17Dm9SBUKEpy8yjeLsd9PSr2D95zDx bGX/e5u1V6niHSl+uCGn0/7d8YIpTvL81xp8+Ymk=
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/2875/push/3791466806@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2875@github.com>
References: <quicwg/base-drafts/pull/2875@github.com>
Subject: Re: [quicwg/base-drafts] Change log for -21 (#2875)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22b19ca3157_4f2f3fe84e6cd95c49274"; 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/d7SLU3QhiTn2mV2TB0e8K67XnUk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 02:59:44 -0000

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

@martinthomson pushed 1 commit.

a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29  Reflow


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2875/files/2ffc0b72a3449819b8a28bc0abc3ecc8de65a329..a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29

----==_mimepart_5d22b19ca3157_4f2f3fe84e6cd95c49274
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/a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29">a0e7d77</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/2875/files/2ffc0b72a3449819b8a28bc0abc3ecc8de65a329..a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29?email_source=notifications&amp;email_token=AFTOJK2O7IAAL3SJBXBFSTDP6KURZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGY4DANQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67KKP2NDTVIGQ5U53P6KURZANCNFSM4H6XJPMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSFD4R3Q2BXXE4YJTP6KURZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGY4DANQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2875/files/2ffc0b72a3449819b8a28bc0abc3ecc8de65a329..a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29?email_source=notifications\u0026email_token=AFTOJK2O7IAAL3SJBXBFSTDP6KURZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGY4DANQ",
"url": "https://github.com/quicwg/base-drafts/pull/2875/files/2ffc0b72a3449819b8a28bc0abc3ecc8de65a329..a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29?email_source=notifications\u0026email_token=AFTOJK2O7IAAL3SJBXBFSTDP6KURZA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKMJVGQZDSNSQOVZWQIZTG44TCNBWGY4DANQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d22b19ca3157_4f2f3fe84e6cd95c49274--


From nobody Sun Jul  7 20:00:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3CFEB1200FA for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 20:00:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Q3a87KoLjW28 for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 20:00: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 7CCC41200D8 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 20:00:47 -0700 (PDT)
Date: Sun, 07 Jul 2019 20:00:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562554846; bh=RBy+RHqy1mqGb3iAWHCWh5k8i+gtnwNf12kAsaC47tU=; h=Date:From:To:Subject:From; b=MYRQoNbCa8k5Adp2IFtX8Ki9Smdd4/rvQcmt/qmk2Coh3I3Y8/3i0ZzbZImpQbQSq plCfuB//uezQjjKkIPW/mfBfvbLU6CUFlflJw0BeTNgKMkpzTM9sGLk/PwVY1WhyBP 7ZCGPvydjOTRcr32YuHfr08l3jrPvy+WCFmjp+f8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/35ee4d-7794be@github.com>
Subject: [quicwg/base-drafts] 7794be: Script updating gh-pages from a0e7d777. [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/JwhvSnxGhcxZGZAm4xiFVVgoekE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 03:00:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7794be581b330757e6d799ecca761bfe28dd554d
      https://github.com/quicwg/base-drafts/commit/7794be581b330757e6d799ecca761bfe28dd554d
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Sun Jul  7 23:41:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7A6EA1200FB for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 23:41:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4QLWYs5EO7vZ for <quic-issues@ietfa.amsl.com>; Sun,  7 Jul 2019 23:41:13 -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 BB81B120099 for <quic-issues@ietf.org>; Sun,  7 Jul 2019 23:41:13 -0700 (PDT)
Date: Sun, 07 Jul 2019 23:41:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562568072; bh=vOLafOq/mmpDkJ5LCUN6jbtq7BSEPzFLasJhcmB1BRg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XdAzPE9O3SVAIXJM+Od+OTGpnDBxF/e2LGVQtDGvas/QNa80r7TkIACcpV9rvQ73y kTMRLox6ZqCp03MHA5cSbkFYmesMsrJeNaKdWLiv5lSZY9n4cHl05uTs1VPSB1ZzFW 2kvma1Grd9BJbKo4EUKNpszD1JV+3V1Xl0llEqtQ=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4TWE46E2S2CTMMPO53GAMAREVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/509099218@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d22e5888752a_10603fb5df4cd9641343030"; 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/9atxQur_0aqS9FVYUJPpINhafSk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 06:41:15 -0000

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

What about small ACK-only packets? Would they have to be padded - and what would the avg. cost be of 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/issues/2869#issuecomment-509099218
----==_mimepart_5d22e5888752a_10603fb5df4cd9641343030
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>What about small ACK-only packets? Would they have to be padded - and what would the avg. cost be of 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/issues/2869?email_source=notifications&amp;email_token=AFTOJKZE7GIVVYYE3ZWJOKTP6LOQRA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMDZUQ#issuecomment-509099218">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LMPAYIZFLOE2JAM3P6LOQRANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYHDC7QCVQSJZX3KHDP6LOQRA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMDZUQ.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJKZE7GIVVYYE3ZWJOKTP6LOQRA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMDZUQ#issuecomment-509099218",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJKZE7GIVVYYE3ZWJOKTP6LOQRA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMDZUQ#issuecomment-509099218",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d22e5888752a_10603fb5df4cd9641343030--


From nobody Mon Jul  8 03:27:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 152A8120167 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 03:26:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xcbegS1fFDrH for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 03:26: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 84F8A120158 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 03:26:48 -0700 (PDT)
Date: Mon, 08 Jul 2019 03:26:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562581607; bh=dfbr78Rhm0UKP77YSnmfmeLt/qVHtPGqKwdaJdPkCyk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EzknKS/AJzM0ZX2RLB32fOc+2IUy0egy8G3NX/w4a1PgL+xDegwnPExTNWxiwyQdC hJbPnZtDivtvw4VwQuvzZTILJMttrDPbwIJlMLwT4Z31tcexQaYS1QWOQd/o0dvjxe mEEYJl4K8wsRPOIbp/CZEnrxIBIPYsU7K/foXoQw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEZVXIIGVKFSY3QIF3GBGOPEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/509170795@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d231a6753ef2_6e253fa9888cd9642428087"; 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/jUsowC8_PWyBYMSg2oSs43UvuWM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 10:27:00 -0000

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

I also agree that not recognizing resets is the goal, but I don't think we're currently achieving that for reasons stated above.  And as David pointed out, I think there are allowed behaviors that would not elicit a stateless reset when you'd really like to have one sent.

Why maxcid length, not mincid length if we're trying to establish the lower bound on the packet size that could have been sent previously in the connection?  Either way, mincid+19 works for me, since I'm mostly concerned about cases with 0, or small fixed CID lengths.




-- 
You are receiving 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/2869#issuecomment-509170795
----==_mimepart_5d231a6753ef2_6e253fa9888cd9642428087
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I also agree that not recognizing resets is the goal, but I don't think we're currently achieving that for reasons stated above.  And as David pointed out, I think there are allowed behaviors that would not elicit a stateless reset when you'd really like to have one sent.</p>
<p>Why maxcid length, not mincid length if we're trying to establish the lower bound on the packet size that could have been sent previously in the connection?  Either way, mincid+19 works for me, since I'm mostly concerned about cases with 0, or small fixed CID lengths.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK3DJDVGAGUGT3W3LU3P6MI6PA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMVI2Y#issuecomment-509170795">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6VSLLUSSTW7CBOMVLP6MI6PANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6RMZFTMPWJ26A3DG3P6MI6PA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMVI2Y.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK3DJDVGAGUGT3W3LU3P6MI6PA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMVI2Y#issuecomment-509170795",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK3DJDVGAGUGT3W3LU3P6MI6PA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZMVI2Y#issuecomment-509170795",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d231a6753ef2_6e253fa9888cd9642428087--


From nobody Mon Jul  8 04:45:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E9C7B12016A for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 04:45:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ETjC550eizwi for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 04:45: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 AB034120159 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 04:45:28 -0700 (PDT)
Date: Mon, 08 Jul 2019 04:45:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562586327; bh=3zfQXwoW+LJJr+Rr2h6Pu9dhBV9indruxnr1NEb6xh8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uM8SgKjyLSvs57c6L0HBNnTZvo2mK0abdbAIaWgvSICfMMmBt1qIy7qODJr2glqdN WlSHsMMnRXUjBGWo9Rw/uECPadwJ1Y8G5y7d41nLmDAcUNAq7ZI5rM8hIgF5mospn0 J+BCfGWQFYHapsZekJLULEXTtqkFCydkFjr7kn1U=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3IVYCDKEGU4MGQPT53GBPVPEVBNHHBXHYKMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2869/509192281@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2869@github.com>
References: <quicwg/base-drafts/issues/2869@github.com>
Subject: Re: [quicwg/base-drafts] Stateless Reset packet sizes should not depend on the maximum connection ID length (#2869)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d232cd75ea33_a683fa891ecd96011636f0"; 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/d1I3-g9tAoVGH7_ceyaza_YwxxE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 11:45:31 -0000

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

You are right, it's the minimum length.  For 0, that means 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/2869#issuecomment-509192281
----==_mimepart_5d232cd75ea33_a683fa891ecd96011636f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>You are right, it's the minimum length.  For 0, that means 0.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2869?email_source=notifications&amp;email_token=AFTOJK6GVS5UKXOIWG3VA2LP6MSFPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZM2QWI#issuecomment-509192281">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4KGU6IP4O6LURHKA3P6MSFPANCNFSM4H47IXMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KKQRDYRYBNU74CLDP6MSFPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZM2QWI.gif" height="1" width="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/2869?email_source=notifications\u0026email_token=AFTOJK6GVS5UKXOIWG3VA2LP6MSFPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZM2QWI#issuecomment-509192281",
"url": "https://github.com/quicwg/base-drafts/issues/2869?email_source=notifications\u0026email_token=AFTOJK6GVS5UKXOIWG3VA2LP6MSFPA5CNFSM4H47IXMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZM2QWI#issuecomment-509192281",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d232cd75ea33_a683fa891ecd96011636f0--


From nobody Mon Jul  8 04:56:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 49210120168 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 04:56:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ES7-NMkJ38fD for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 04:56: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 28305120159 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 04:56:13 -0700 (PDT)
Date: Mon, 08 Jul 2019 04:56:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562586971; bh=6SZ5w1OhQZfqmgeNTL1kadCxwFGji7ddfMhMMKZM8e0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pGjjILQXI/TAl9DVRLcuk1g5hkN16V00lW1A+gwwQTHL+OKOuiUzFvPrjiiEWoxRn LXW5qWIeT3U0qpzOHfiStYxqD90O9rikW1mANyn4b2Gnova9jFCgu9ifzeBe98MLM6 VkPG0QAl2f2xQFN5rfrbtwVbvsgnAUk6u1HcGN6Q=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5SDU76B42QHNHHMLF3GBQ5XEVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873/review/258853116@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d232f5bcfece_20a93fe84e6cd95c398512"; 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/cPzfbIQQY9qyc-mYWdWkmdcEYlk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 11:56:17 -0000

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

ianswett approved this pull request.

Thanks for writing this 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/2873#pullrequestreview-258853116
----==_mimepart_5d232f5bcfece_20a93fe84e6cd95c398512
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<p>Thanks for writing this 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/2873?email_source=notifications&amp;email_token=AFTOJK72O63GZDSAMUIYHGDP6MTNXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5W4R7A#pullrequestreview-258853116">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4FQRVFXVGNEFCBUK3P6MTNXANCNFSM4H6KZHXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2IQV7LS2YAIJ3BZQTP6MTNXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5W4R7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJK72O63GZDSAMUIYHGDP6MTNXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5W4R7A#pullrequestreview-258853116",
"url": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJK72O63GZDSAMUIYHGDP6MTNXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5W4R7A#pullrequestreview-258853116",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d232f5bcfece_20a93fe84e6cd95c398512--


From nobody Mon Jul  8 09:58:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9DFF8120325 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 09:57:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 eO5wIpjO69m4 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 09:57: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 80A3E12032C for <quic-issues@ietf.org>; Mon,  8 Jul 2019 09:56:48 -0700 (PDT)
Date: Mon, 08 Jul 2019 09:56:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562605007; bh=tpMnwXn0ujc4Guwpn3WohDK7Q8nCC9I/9qyNEv5aEUM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=saBGjgQJtLibcSeKiPROuJoWC/FRuYsXkzGG+/GPckWshF37nrVzp484tpx0cnJ+g bq7XxPqP7X0MDzxkSPup9mMF4cPDJkr2gGWgCp8dvjvbT9y1wvACvudO7nzZhgBINF rcO0PivZj93E1d1I4EkkRciOzu3vA7WGwgwsnVmA=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYPP7IG5S26CM4CGEN3GCUE7EVBNHHBWWQD7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2823/509306831@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2823@github.com>
References: <quicwg/base-drafts/issues/2823@github.com>
Subject: Re: [quicwg/base-drafts] Do Initial secrets change after Retry packet? (#2823)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2375cf45831_47663fc6056cd968743da"; 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/QR2HQtMMEVTNEXS5o05N4QTvLSA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 16:58:02 -0000

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

Documenting "why" some choices were made is not required, but it helps readers better understand the properties of the protocol, and helps spec contributors not have the same conversations every few months.

The retry token already needs to carry the original destination connection ID because the server MUST include it in the `original_connection_id` transport 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/issues/2823#issuecomment-509306831
----==_mimepart_5d2375cf45831_47663fc6056cd968743da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Documenting "why" some choices were made is not required, but it helps readers better understand the properties of the protocol, and helps spec contributors not have the same conversations every few months.</p>
<p>The retry token already needs to carry the original destination connection ID because the server MUST include it in the <code>original_connection_id</code> transport 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/issues/2823?email_source=notifications&amp;email_token=AFTOJK3GGW72GRWZH6FCVDDP6NWU7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZNWPTY#issuecomment-509306831">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK247XRMR76AQ3QPMX3P6NWU7ANCNFSM4HZ6U5CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4VZPAAINE6GQRSP43P6NWU7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZNWPTY.gif" height="1" width="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/2823?email_source=notifications\u0026email_token=AFTOJK3GGW72GRWZH6FCVDDP6NWU7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZNWPTY#issuecomment-509306831",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=notifications\u0026email_token=AFTOJK3GGW72GRWZH6FCVDDP6NWU7A5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZNWPTY#issuecomment-509306831",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2375cf45831_47663fc6056cd968743da--


From nobody Mon Jul  8 09:59:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 166B21202CB for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 09:59:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lFRfuskCh8Vx for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 09:59: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 21F2C120290 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 09:58:57 -0700 (PDT)
Date: Mon, 08 Jul 2019 09:58:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562605136; bh=34goyuypVLNkQMrcjCNnu7lEGyepAJAB/w67LD49zSU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xvYM5AJNgGOVOo2FZq6/sWQX3HhgsUbP1xwCXJCYZfFsT8z35Y50m/211yxKcjs7z csPvnCRY/9qEyQB7iuwhgfNPlJK5ANr4D/SqDjNaVuX8YkGSYJrZK/zXUenx8ZQTjV jtoJhLSlqwHhJ7vc0KI3oEFCSMdCi5i/NOIwnpeQ=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZATXXCO7CVHRJN2P53GCUM7EVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873/review/259034947@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23764ff122e_6d163fc4d62cd960114049"; 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/mRgsAqzbIZU65uMalBtk54sOwLI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 16:59:38 -0000

----==_mimepart_5d23764ff122e_6d163fc4d62cd960114049
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/2873#pullrequestreview-259034947
----==_mimepart_5d23764ff122e_6d163fc4d62cd960114049
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2873?email_source=notifications&amp;email_token=AFTOJKZM2Z4S5NQ7EPGOKG3P6NW47A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5YI6QY#pullrequestreview-259034947">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK542WP7L6YBLNURTG3P6NW47ANCNFSM4H6KZHXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYKNVDBYMPF5JQTU2LP6NW47A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5YI6QY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJKZM2Z4S5NQ7EPGOKG3P6NW47A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5YI6QY#pullrequestreview-259034947",
"url": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJKZM2Z4S5NQ7EPGOKG3P6NW47A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5YI6QY#pullrequestreview-259034947",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23764ff122e_6d163fc4d62cd960114049--


From nobody Mon Jul  8 10:54:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5693412049B for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 10:54:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W5XWMQYzmAkP for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 10:54: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 2747E12048E for <quic-issues@ietf.org>; Mon,  8 Jul 2019 10:54:15 -0700 (PDT)
Date: Mon, 08 Jul 2019 10:54:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562608453; bh=tjwpu8SktkEdgBtKWoB1eZHG7v3PABAOwmgRA/MKFF4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=yotr4I6FsKPXSAJbO4OXVw+DYDGGNNBiMFyb064bhBI2gvjCXL/lU/a+r0ZId+L5P ZzGpxJeQ2HIHWmOZXIyP3upVgwN4DmXHpzGGc1chPwaE0pW4YcUOzMpVKIUqp+dHty F9PogaAH5YIaKT7y9gKguXvjPomt4eCuDAS+ZnAg=
From: =?UTF-8?B?UnllZ8O2bmcgQ3JhbmU=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6COHIHGA336UEUWN53GC24LEVBNHHBXPJ2HA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2876@github.com>
Subject: [quicwg/base-drafts] Section 10.4 Stateless Reset grammatical error (#2876)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d238345bf150_6c1a3f93d8ecd960628273"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gjnance
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sDMvF6QGIEoKBmveo3gqa10btGg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 17:54:26 -0000

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

Section 10.4 contains a minor grammatical error:

> Because the stateless reset token is not available until connection establishment is complete or near completion, ignoring an unknown packet with a long header might be as effective than sending a stateless reset.

It is unclear whether the author intended "as effective as" or "more effective than"

-- 
You are receiving 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/2876
----==_mimepart_5d238345bf150_6c1a3f93d8ecd960628273
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Section 10.4 contains a minor grammatical error:</p>
<blockquote>
<p>Because the stateless reset token is not available until connection establishment is complete or near completion, ignoring an unknown packet with a long header might be as effective than sending a stateless reset.</p>
</blockquote>
<p>It is unclear whether the author intended "as effective as" or "more effective than"</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2876?email_source=notifications&amp;email_token=AFTOJKZXGTA7EHCBR6TCPXLP6N5MLA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G55HI4A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWHUS46PZWG6B6AN3P6N5MLANCNFSM4H66CYPA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6PY7WMV3EYW4C2YTP6N5MLA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G55HI4A.gif" height="1" width="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/2876?email_source=notifications\u0026email_token=AFTOJKZXGTA7EHCBR6TCPXLP6N5MLA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G55HI4A",
"url": "https://github.com/quicwg/base-drafts/issues/2876?email_source=notifications\u0026email_token=AFTOJKZXGTA7EHCBR6TCPXLP6N5MLA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G55HI4A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d238345bf150_6c1a3f93d8ecd960628273--


From nobody Mon Jul  8 13:42:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9E2971202ED for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:42:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 GXFZXpsLEQMu for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:42: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 0956C1202F5 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 13:42:21 -0700 (PDT)
Date: Mon, 08 Jul 2019 13:42:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562618538; bh=3rfNczBkR9V+CnrNJfKtKjjcUIV+Fi1Yz2M9oSohkYw=; h=Date:From:To:Subject:From; b=AmJBDW2Kg9CmPxaTXsNXlj2k5q7M1Lviu53revRa7DyfZU/JChITB+0XaLPeYZQAJ btp4w7mU+fDKzA1lYbG0YOadQn2hFzPUqpiV+T+4KctemdDcKgnVvwxUoiav/o76vS HpvyRKEBndS7w8TO0AsL7yWy8zFB1dVoh+Joq5YU=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/342c79-48c1a4@github.com>
Subject: [quicwg/base-drafts] 48c1a4: 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/JltkGRyFIFcCFBYJTiYz6iRiOWk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 20:42:30 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 48c1a469f88908ae3359fa3cd547e9deba761564
      https://github.com/quicwg/base-drafts/commit/48c1a469f88908ae3359fa3cd547e9deba761564
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  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 Jul  8 13:42:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A9F0C1202F1 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:42:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 FCjS0ptqApi0 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:42: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 61A951202FE for <quic-issues@ietf.org>; Mon,  8 Jul 2019 13:42:28 -0700 (PDT)
Date: Mon, 08 Jul 2019 13:42:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562618546; bh=lYaZ6oDjKw9WwtFpByYFxaXjX1BMEXSvnNe6OKeJpNc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AUHhVLi1WUcil+Lxpl9pZDEHAgz3N2PsJcEJ6xYoKbVI291I/axbQIiHny5nQ0do5 /rrhiJjNPJbXpo4jeMm7/1r887AvU879RPCTzY9urCxUe7EArk18Klc6NsAj7Qytp3 wWjYOzb/TLKW6IK2VVeUN/SzW39dhH8+sdrvg75Y=
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/2806/push/3794835554@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23aab282fa7_79243ff8fa8cd95c25057d1"; 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/e5huDHK0no9hGGcUm-nELdJ2bwI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 20:42:39 -0000

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

@ianswett pushed 1 commit.

48c1a469f88908ae3359fa3cd547e9deba761564  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/2806/files/342c7930d83eacd6fdfcd2dc392e4011ae9f410d..48c1a469f88908ae3359fa3cd547e9deba761564

----==_mimepart_5d23aab282fa7_79243ff8fa8cd95c25057d1
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/48c1a469f88908ae3359fa3cd547e9deba761564">48c1a46</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/2806/files/342c7930d83eacd6fdfcd2dc392e4011ae9f410d..48c1a469f88908ae3359fa3cd547e9deba761564?email_source=notifications&amp;email_token=AFTOJK3I7QXOPZQRG7BWHK3P6ORDFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBTGU2TKNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZCPTVLS3GUT7DX2D3P6ORDFANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4DILSDK42DAYMJGPLP6ORDFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBTGU2TKNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/342c7930d83eacd6fdfcd2dc392e4011ae9f410d..48c1a469f88908ae3359fa3cd547e9deba761564?email_source=notifications\u0026email_token=AFTOJK3I7QXOPZQRG7BWHK3P6ORDFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBTGU2TKNA",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/342c7930d83eacd6fdfcd2dc392e4011ae9f410d..48c1a469f88908ae3359fa3cd547e9deba761564?email_source=notifications\u0026email_token=AFTOJK3I7QXOPZQRG7BWHK3P6ORDFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBTGU2TKNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23aab282fa7_79243ff8fa8cd95c25057d1--


From nobody Mon Jul  8 13:44:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EF497120086 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:44:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 w4YD7vkavo8z for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:44: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 14BC31202C5 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 13:44:42 -0700 (PDT)
Date: Mon, 08 Jul 2019 13:44:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562618680; bh=8yZrFM6HJWt0FRTvkZLCqClL6Kg3PiBmhK/amNle2yg=; h=Date:From:To:Subject:From; b=VuFF/lkudpy6s35Pg+u6LIIqH5h47yn0gZSQvWDn6GWBwZxgkmoo4h+7vPOeR05DG WHx3HW7jsMvTaRekQIY7Xegmz8JyUKgIZj9ZDzQx+QA7zugaMB+Z+UPp9kbK349jYp 8q/+YILzaIs8iD51IYOpigtfG+8yhvJ10mQuy+F0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/48c1a4-b46c10@github.com>
Subject: [quicwg/base-drafts] b46c10: 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/vO_2wcBlJKeIhyzYtcpwaJqYfhE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 20:44:50 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: b46c1078656491e07042b177c89c02af548a4150
      https://github.com/quicwg/base-drafts/commit/b46c1078656491e07042b177c89c02af548a4150
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Fix pseudocode indent



From nobody Mon Jul  8 13:45:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E99311202C5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:44:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 FpzddpMeNahI for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:44: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 CE06E120156 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 13:44:49 -0700 (PDT)
Date: Mon, 08 Jul 2019 13:44:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562618688; bh=XpeyFhBTc/uznTqYQ3SDwJxrEpcIuWIvhTdOvUNOH3o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iyS3zcuHXSGXfm3lIEz/SJlygdAMr8qmcLa27M79eNBES0+BQQ6cvAsfHoriiz74D yGcJ+CLm1H4B+Dpvg/qFmf030koTQrDbWlzZifNVeWXdLJcOWiNHBpXeJ+bl9GjgzS unxVjaYxowCf+YHA5O9pZlvGEbHZmfXbFLOEChmE=
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/2806/push/3794843042@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23ab40659e0_2e573f81820cd968257201b"; 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/Vd6u1_DkilTYsxscHwR-LoSArrM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 20:45:01 -0000

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

@ianswett pushed 1 commit.

b46c1078656491e07042b177c89c02af548a4150  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/2806/files/48c1a469f88908ae3359fa3cd547e9deba761564..b46c1078656491e07042b177c89c02af548a4150

----==_mimepart_5d23ab40659e0_2e573f81820cd968257201b
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/b46c1078656491e07042b177c89c02af548a4150">b46c107</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/2806/files/48c1a469f88908ae3359fa3cd547e9deba761564..b46c1078656491e07042b177c89c02af548a4150?email_source=notifications&amp;email_token=AFTOJK24JOQINY6Z2DVVEE3P6ORMBA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBUGMYDIMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VA3ARMTXVMRYNBCTP6ORMBANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OE2HAQPMTVOWVBFLP6ORMBA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBUGMYDIMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/48c1a469f88908ae3359fa3cd547e9deba761564..b46c1078656491e07042b177c89c02af548a4150?email_source=notifications\u0026email_token=AFTOJK24JOQINY6Z2DVVEE3P6ORMBA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBUGMYDIMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/48c1a469f88908ae3359fa3cd547e9deba761564..b46c1078656491e07042b177c89c02af548a4150?email_source=notifications\u0026email_token=AFTOJK24JOQINY6Z2DVVEE3P6ORMBA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBUGMYDIMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23ab40659e0_2e573f81820cd968257201b--


From nobody Mon Jul  8 13:45:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 887141202AE for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:45:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vb58bee5DoK4 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:44: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 2CFAF12014B for <quic-issues@ietf.org>; Mon,  8 Jul 2019 13:44:58 -0700 (PDT)
Date: Mon, 08 Jul 2019 13:44:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562618696; bh=CcOOnNZxjRQYRMpwRsRb6ZHpxP/OjSgr6J/lB/MnEpc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FjTWMbj46t+Hm6PEgKp4wbisvnAIPuTHTDewGPP7Sc4WZUZC48aGCfmSsbY+H4cYV 7WTryaTtqmD8j0OQxzrzVGbTPz3tlDQ3K6DdLegLs0UZo7TukXCBjoCh/TOYPjjlMU hWXCRJRHaS1L9x/ord2joOX1hNeLpFW6yX21j3G8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ALLXIVJDPRJA44IN3GDO4REVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/259145207@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23ab48c6859_118c3ff919ecd9641738897"; 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/fizXkQ1ulN5ZExTJIwxgQlOz-Xk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 20:45:09 -0000

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

ianswett commented on this pull request.



> @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender's rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender's rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 

TCP clamps to a value(typically 30 seconds), but I think it's better to recommend a dead path timeout, such as a limit on the number of successive PTOs(I think some TCP impls default to 7?).

> @@ -1283,7 +1237,7 @@ OnLossDetectionTimeout():
        SendOneHandshakePacket()
      else:
        SendOnePaddedInitialPacket()
-    crypto_count++
+    pto_count++

You're correct, the else is off.

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

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r301290467">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender&#39;s rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender&#39;s rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 
</pre>
<p>TCP clamps to a value(typically 30 seconds), but I think it's better to recommend a dead path timeout, such as a limit on the number of successive PTOs(I think some TCP impls default to 7?).</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r301291063">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1283,7 +1237,7 @@ OnLossDetectionTimeout():
        SendOneHandshakePacket()
      else:
        SendOnePaddedInitialPacket()
-    crypto_count++
+    pto_count++
</pre>
<p>You're correct, the else is off.</p>

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


From nobody Mon Jul  8 13:59:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EEED612006A for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:59:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 qKBy4jr9T4OO for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:59:31 -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 4B4FF120033 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 13:59:31 -0700 (PDT)
Date: Mon, 08 Jul 2019 13:59:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562619569; bh=2EUb3QXJz7q1AmRFYP663sMaBktkycOl9gdyFC3hzOA=; h=Date:From:To:Subject:From; b=Brar3acOhy6Q398a6sPzZU7KyccYcsj+Rz57SkwKFuoIh/XcM2jza1bWbXIIOm4AA DZCrzULWbKsJ6/L4TCNLbq7p1M7Rb4m8U2127e6pecL0Kszasb03Hpbg12Q3uEffYg OGichh4lfDaUipnc/nRmo4ekxyXjqzJd2Soz88eM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/b46c10-69fdaa@github.com>
Subject: [quicwg/base-drafts] 69fdaa: 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/YdkAlXAXjh6HKhykdXViSBa6dGk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 20:59:34 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 69fdaa408c50a44e48a55972360ed35d813daa2b
      https://github.com/quicwg/base-drafts/commit/69fdaa408c50a44e48a55972360ed35d813daa2b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Mon Jul  8 13:59:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5F38E120033 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:59:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 5T7VGxFF3_vp for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 13:59:39 -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 6C40512006A for <quic-issues@ietf.org>; Mon,  8 Jul 2019 13:59:39 -0700 (PDT)
Date: Mon, 08 Jul 2019 13:59:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562619577; bh=4YbZrJ/Yjt9YRp0wOL6TfI/Jo2DqKc1NnTasAvkakjo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=g6PCIbqFFwHCF9GGLohKzbY30NMNxdQcR4Tlmn3x7+EVe8HEBTRVXzvcxW9Bqzvkj bPQK78nQt0BpgVhWKRgF/ukRD+tXiB6MFjdFfDiiVd03ZY7dG2inywoW32Tut249AX rUjpyNh0JUpwDKSX7xLbLT9FhGTVzo2ecSEjY8cs=
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/2806/push/3794889700@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23aeb96bb8d_5a793ff358acd95c111125f"; 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/V3RYEi-bCanv3DgG_PTgLIBoUP4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 20:59:42 -0000

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

@ianswett pushed 1 commit.

69fdaa408c50a44e48a55972360ed35d813daa2b  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/2806/files/b46c1078656491e07042b177c89c02af548a4150..69fdaa408c50a44e48a55972360ed35d813daa2b

----==_mimepart_5d23aeb96bb8d_5a793ff358acd95c111125f
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/69fdaa408c50a44e48a55972360ed35d813daa2b">69fdaa4</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/2806/files/b46c1078656491e07042b177c89c02af548a4150..69fdaa408c50a44e48a55972360ed35d813daa2b?email_source=notifications&amp;email_token=AFTOJK2RG6HLL7F47R6AOPLP6OTDTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBYHE3TAMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4G56IUPHHWBQRS3TDP6OTDTANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6K3ILXVVVLOBUGKYTP6OTDTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBYHE3TAMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/b46c1078656491e07042b177c89c02af548a4150..69fdaa408c50a44e48a55972360ed35d813daa2b?email_source=notifications\u0026email_token=AFTOJK2RG6HLL7F47R6AOPLP6OTDTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBYHE3TAMA",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/b46c1078656491e07042b177c89c02af548a4150..69fdaa408c50a44e48a55972360ed35d813daa2b?email_source=notifications\u0026email_token=AFTOJK2RG6HLL7F47R6AOPLP6OTDTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TIOBYHE3TAMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23aeb96bb8d_5a793ff358acd95c111125f--


From nobody Mon Jul  8 14:01:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B8FEF1202D9 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:00:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qPdFTWPQ9TxH for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:00: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 79201120281 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 14:00:50 -0700 (PDT)
Date: Mon, 08 Jul 2019 14:00:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562619648; bh=WBJDDnvYMBPZsDSlHPrN4idf6a3Y4uAjhAXZPiqyVJs=; h=Date:From:To:Subject:From; b=zCajT+LiWS5MQBj5naf6MYr6yCDYCmG4fbz4GJhVm5nORQU6wynItRH9BoxHf3BBO n2k5y2c9WgPt9KOUX2wgPQtd+N5Bu7bs5Q2UNEg8MpTOHn/OU0AAjRf5f7MGPw91RN Ni6Kk9Jb36JtdWRINaBxiHmtTt2z2I/l7q5cuzKA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7794be-f87002@github.com>
Subject: [quicwg/base-drafts] f87002: Script updating gh-pages from 69fdaa40. [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/aZYPkCJUAQ1OpRuDZDFuPe8RIgQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 21:01:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f870029fe5cc63576ad08eba29f6a5566caf31ca
      https://github.com/quicwg/base-drafts/commit/f870029fe5cc63576ad08eba29f6a5566caf31ca
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Mon Jul  8 14:03:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3279D1202BD for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:02:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Km2sT2PVE79o for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:02: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 D59BA120308 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 14:02:51 -0700 (PDT)
Date: Mon, 08 Jul 2019 14:02:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562619770; bh=YYPW1gw7/krhS8t55qXTAiieJwPNf1X/G0X0OtU5E+s=; h=Date:From:To:Subject:From; b=XqbKRfGbGJFp+xHCxFKPP6X3RCVxSHT3CJXZdgoKgdrLUN6R38S7Pxx80AbZuHOjW FguaCsNRPO+JvXTgUUGB1p/u/izpxbTLQShwAUGJFcA9LPjHw4qbonmXAtafeAbTdZ ObkvMwvM557u4OYjt0haA7MbC8c3q9o80Uuzw/FE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f87002-411ecf@github.com>
Subject: [quicwg/base-drafts] 411ecf: Script updating issues at 2019-07-08T21:02:44Z. [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/6GAPuHwmh6i94CDjDqZ9zV48Fss>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 21:03:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 411ecf4d3ae1db792f67cdc4bc33ce4a7a852a68
      https://github.com/quicwg/base-drafts/commit/411ecf4d3ae1db792f67cdc4bc33ce4a7a852a68
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-08T21:02:44Z. [ci skip]



From nobody Mon Jul  8 14:11:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2AE081200F6 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:11:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hA44UNHlUWTF for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:11: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 0CB51120073 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 14:11:56 -0700 (PDT)
Date: Mon, 08 Jul 2019 14:11:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562620314; bh=4wYRgTXDDG2S9knTAXzWOX7rYmLkUqoCU4e/ic3+GB4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=A+qSLEZpkaeVPChcAdLVMwGwMJ2B+VTrMFk9nMbyGxRR8Rdklk1/bVp0MmWzxfW3U XqkoUsGWx0+PWeREh2pbER5YigzKVM3FkDHnQAW2axMm6neam58AAunfPW+OJSL3bv uQzRQkLhU1fTzWxJY6G13h2pMtOHPuE1OIXyJgCc=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FOVGB3UWJHN3QTT53GDSBVEVBNHHBWWQD7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2823/509393487@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2823@github.com>
References: <quicwg/base-drafts/issues/2823@github.com>
Subject: Re: [quicwg/base-drafts] Do Initial secrets change after Retry packet? (#2823)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23b19aaac07_770b3f7efa0cd95c218074e"; 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/VqTW6GAYsKcW7SxRHfpaeQ5FDTs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 21:11:58 -0000

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

This is marked as editorial, but 3 seems like the most non-obvious design choice, and it's not clear we intended to make that choice.

If extracting the original CID is potentially too difficult for some, why not 2, which only uses local state to process Initial 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/issues/2823#issuecomment-509393487
----==_mimepart_5d23b19aaac07_770b3f7efa0cd95c218074e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is marked as editorial, but 3 seems like the most non-obvious design choice, and it's not clear we intended to make that choice.</p>
<p>If extracting the original CID is potentially too difficult for some, why not 2, which only uses local state to process Initial 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/issues/2823?email_source=notifications&amp;email_token=AFTOJK4DL7Z2RH3YJSCFTLDP6OURVA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOLUTY#issuecomment-509393487">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5OZANBNZKY6XTWBWDP6OURVANCNFSM4HZ6U5CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CDUCNKY3GIA2QTI3P6OURVA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOLUTY.gif" height="1" width="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/2823?email_source=notifications\u0026email_token=AFTOJK4DL7Z2RH3YJSCFTLDP6OURVA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOLUTY#issuecomment-509393487",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=notifications\u0026email_token=AFTOJK4DL7Z2RH3YJSCFTLDP6OURVA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOLUTY#issuecomment-509393487",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23b19aaac07_770b3f7efa0cd95c218074e--


From nobody Mon Jul  8 14:53:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C31F61202F5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:53:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BX-O4MKQM9iH for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:53:10 -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 27E7E12030D for <quic-issues@ietf.org>; Mon,  8 Jul 2019 14:53:10 -0700 (PDT)
Date: Mon, 08 Jul 2019 14:53:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562622788; bh=VXymTpKxQUfgYPNpMOKejuS15i0qPJE4MfK3bJgTyiI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PfMAj0Xngz8U4PcJmMsJAJ/ZGwV4n7NTH8pAOzUbh/li7HZckBmSDi/cGBHlKD7ux tVj9rREhtaa7NjYCKArfoVfl8GWJbcsrbC1AvnUSH08sEGztrdpSvFBNqdIES8LHE5 v6Xo6tjrlb4j6THsxwLjCye7uHm/g1ohVwWHVxBM=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PLLRFAB7BW7FPKFF3GDW4JEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/509406216@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23bb4496169_59233fad760cd95c1065558"; 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/MCD2lLUJWqEXBZB-Ii8syFyKoYQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 21:53:20 -0000

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

Would it make sense to solve this by placing restrictions on QUIC configuration at the application protocol level? E.g. forbid HTTP/3 servers from using zero-length CIDs. That avoids forcing increased header size on other application protocols which may have no need for the type of proxy described 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/2844#issuecomment-509406216
----==_mimepart_5d23bb4496169_59233fad760cd95c1065558
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Would it make sense to solve this by placing restrictions on QUIC configuration at the application protocol level? E.g. forbid HTTP/3 servers from using zero-length CIDs. That avoids forcing increased header size on other application protocols which may have no need for the type of proxy described 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/2844?email_source=notifications&amp;email_token=AFTOJK43G4IRIAAZ2G6RRYDP6OZMJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOOYCA#issuecomment-509406216">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZIPCZHXDKCTGRG2ZLP6OZMJANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY2K475QA5BXAA46JLP6OZMJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOOYCA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK43G4IRIAAZ2G6RRYDP6OZMJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOOYCA#issuecomment-509406216",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK43G4IRIAAZ2G6RRYDP6OZMJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOOYCA#issuecomment-509406216",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23bb4496169_59233fad760cd95c1065558--


From nobody Mon Jul  8 14:56:03 2019
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 11FB512036C for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:55:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.159
X-Spam-Level: 
X-Spam-Status: No, score=-0.159 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, PDS_NO_HELO_DNS=1.295, RCVD_IN_DNSWL_NONE=-0.0001, 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 0qB8QuAhz21d for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 14:55:52 -0700 (PDT)
Received: from o7.sgmail.github.com (o7.sgmail.github.com [167.89.101.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EADBD1202E4 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 14:55:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha1; 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=12kaGZxsD4I0FsbweamPvRnXhzM=; b=fnhqhvh69BgzePTl 3QtBsfOZW7LS+vl4B4i1ye3KACLyZgODJHGviSIVIRj5xksHAW5DkTjxTxxzx+mv hI6kAXupoYMVeiT7FKwJ/vWfMHVosLyLFA3hQrjjbRxbRAIvtIpflabXz5NMLMg4 EPp8T56DTh09vpNkroqZKh/qR50=
Received: by filter1798p1mdw1.sendgrid.net with SMTP id filter1798p1mdw1-30472-5D23BBCF-18 2019-07-08 21:55:27.436512475 +0000 UTC m=+956929.746483093
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) by ismtpd0010p1sjc2.sendgrid.net (SG) with ESMTP id uDKDSVgBQw-aWalJCCX6SA for <quic-issues@ietf.org>; Mon, 08 Jul 2019 21:55:27.212 +0000 (UTC)
Date: Mon, 08 Jul 2019 21:55:27 +0000 (UTC)
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2HM3XCYO4CUDUIB3N3GDXETEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/509406818@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23bbc97b61a_20ee3fec54ecd96819458fe"; 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
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak3YwjzxT4tZoilOJDPqKA1Qh9pplG14AL4lDn 3A8vc0ygzlJW4eSUjp5a7/+8nQBSiZk3TmBr2hoR07OCh9g2ANQz1L4wWDwwxRHXwzRd/3AO5x0gZH /eV8YbYyiKy3M1p1bjKy3YQg2Axs902qXiR9IxpXt8nn/bozbeClhSt7OJMBAWe1rQ86DxHZPVYWIP M=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1b6wEJIcH6XPIQfXq790zi3ZaPo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 21:56:01 -0000

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

Connection IDs are a property of the transport layer, and the proxy use-case described above uses HTTP/3. I don't think we should vary any of this by 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/issues/2844#issuecomment-509406818
----==_mimepart_5d23bbc97b61a_20ee3fec54ecd96819458fe
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Connection IDs are a property of the transport layer, and the proxy use-case described above uses HTTP/3. I don't think we should vary any of this by 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/issues/2844?email_source=notifications&amp;email_token=AFTOJK6UEC5KCOID45WCEYDP6OZUTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOO4YQ#issuecomment-509406818">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XXAF5EOS64YGOF7LP6OZUTANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6QFYKZ6LXNOWWCNMTP6OZUTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOO4YQ.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK6UEC5KCOID45WCEYDP6OZUTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOO4YQ#issuecomment-509406818",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK6UEC5KCOID45WCEYDP6OZUTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZOO4YQ#issuecomment-509406818",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23bbc97b61a_20ee3fec54ecd96819458fe--


From nobody Mon Jul  8 16:19:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E2720120384 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:19:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 sceTxY_jxT29 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:18: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 7C94612035C for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:18:59 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:18:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562627938; bh=NILHGG7Pb+8Vy/qcuHsQlRBuQ4OZ+FhH48OyhDopL+o=; h=Date:From:To:Subject:From; b=A8vNtlkXAlg0kVnRu6/6eTkal3qpFeZtXprbAYziQJu/bn4s34EuzYMkahNJSl3D2 0eiKC8lmHokQLg478PgNmsAP7UZ1YExDWcbFJgmMtT9DzjP9A+yBkZfL/UNxjAWBya NX3TS1sLyi7FJycQSdzy0zMb9orq2KfL86t6MnRI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/84eee5-abd26d@github.com>
Subject: [quicwg/base-drafts] d7ed46: Change log for -21
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2Ag3squJp-mF9gooztjQGt9BeDc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:19:14 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d7ed46a84cd78a601e1fa1581d59b3c21cec3947
      https://github.com/quicwg/base-drafts/commit/d7ed46a84cd78a601e1fa1581d59b3c21cec3947
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  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:
  -----------
  Change log for -21


  Commit: 2ffc0b72a3449819b8a28bc0abc3ecc8de65a329
      https://github.com/quicwg/base-drafts/commit/2ffc0b72a3449819b8a28bc0abc3ecc8de65a329
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Ian's tweaks to text

Which will likely fail to build...

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29
      https://github.com/quicwg/base-drafts/commit/a0e7d777e1a3220cd4a17c5e4ccac506bd4b1a29
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Reflow


  Commit: abd26dee7c4360e673314fa59465e0191d96c417
      https://github.com/quicwg/base-drafts/commit/abd26dee7c4360e673314fa59465e0191d96c417
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  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 #2875 from quicwg/changelog-21

Change log for -21


Compare: https://github.com/quicwg/base-drafts/compare/84eee53493ff...abd26dee7c43


From nobody Mon Jul  8 16:19:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E6EC6120385 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:19:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 D9qAYQ8co1KE for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:19: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 41B67120381 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:19:04 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:19:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562627943; bh=2ngYMN4hTx5xk3XrZunnuZ/SFAJsj9v1PrizIwGxNEE=; h=Date:From:To:Subject:From; b=kivZQ3ybPyHaJzYYzqNLHoiJGbuD2ZtWUFn79xM1tFWx5m/PNxYECuHEoPtFx8pFr lkG9Layi4pqeoFjFNDx09+VxvVcAhaiaRHK280IQL7JGtAlbH3ncm+gigrGZsZdPmi NVv3lFVMXHme5nKZgLREqlv6Fi0VnvEbQmYsO4V4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-21/a0e7d7-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/ra9d83uAlgSs3xz5sK2Y9lsxYg8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:19:18 -0000

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


From nobody Mon Jul  8 16:19:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 985E3120311 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:19:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dCKTzkHZTXis for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:19:07 -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 34255120364 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:19:07 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:19:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562627946; bh=PHg4b0bpJsKyGL0JkNdOTnZOd56Jy4sxOKqHG6UPcs8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=x8eN3DMoLUc3sn8gMlfpPNPG+Wn9OVwh1ErfIsVXeNIaqhvKfPcR8tQ1Y8n8FkSRj GPRn6D3Hfk7lcKz09wdsLXtZYhlX8VYs6+nfxndK1HIynHI6dAv/5BiINal1enfclr 5P1Ebrf7sPQ0sg4TjzXf+llZgfUkvdtoin1Xu9KI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5K4OM2WVWKUSTFPM53GEA6TEVBNHHBXN56RE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2875/issue_event/2467689169@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2875@github.com>
References: <quicwg/base-drafts/pull/2875@github.com>
Subject: Re: [quicwg/base-drafts] Change log for -21 (#2875)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23cf69f1a2c_63353fe7e00cd96c7495f"; 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/jSBxba1TTvfU3qGVXvXLg66OzqA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:19:25 -0000

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

Merged #2875 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/2875#event-2467689169
----==_mimepart_5d23cf69f1a2c_63353fe7e00cd96c7495f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465026697" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2875" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2875/hovercard" href="https://github.com/quicwg/base-drafts/pull/2875">#2875</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/2875?email_source=notifications&amp;email_token=AFTOJKYYP5CALQWPWU23SNTP6PDOTA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMK7FUI#event-2467689169">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3WJ5ZVTTSU6PTZ5VDP6PDOTANCNFSM4H6XJPMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPCDU575MTWUF2ZHLP6PDOTA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMK7FUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2875?email_source=notifications\u0026email_token=AFTOJKYYP5CALQWPWU23SNTP6PDOTA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMK7FUI#event-2467689169",
"url": "https://github.com/quicwg/base-drafts/pull/2875?email_source=notifications\u0026email_token=AFTOJKYYP5CALQWPWU23SNTP6PDOTA5CNFSM4H6XJPM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMK7FUI#event-2467689169",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23cf69f1a2c_63353fe7e00cd96c7495f--


From nobody Mon Jul  8 16:20:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B648E120096 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:20:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TqfVwsRf1qXV for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:20: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 A8804120342 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:20:31 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:20:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628030; bh=eXZLC61tqEAl2M5xKvqKxXUgLC8PvULUg9q0ggWGKnk=; h=Date:From:To:Subject:From; b=GDgNpdFy5msWzZKw5kLisoxjiK5crzXYQ7TDdAoDIuro4WTRcZuZ1PFBvO2ISvDuQ RUQLFiRMzWzsKjrD9D4S+Is9S2ytrfc/DikzorD23MDPfzgb1FlulufwFFBH8DFJFY bm/jujvHwRexUWY2E5Lx4qEcSEDIOCwA2PMSkpDU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/411ecf-6c0a52@github.com>
Subject: [quicwg/base-drafts] 6c0a52: Script updating gh-pages from abd26dee. [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/npliGMxfTQgiC9s-SVzOhN-3UM4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:20:44 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6c0a528a293d9f273611e054faf95b4afcaddab5
      https://github.com/quicwg/base-drafts/commit/6c0a528a293d9f273611e054faf95b4afcaddab5
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  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 abd26dee. [ci skip]



From nobody Mon Jul  8 16:25:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6AFF4120398 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:25:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 OytgLVYJ3tgt for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:25: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 CFBF8120372 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:25:13 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:25:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628312; bh=qVNGSn+J+asQdO0HCYolBWHOwRw2k8TbWNcpYmudZP4=; h=Date:From:To:Subject:From; b=H7n1+v4InWyUEUvyeE3MtnzYmEp/gnIiwKoOJNVoUfStswM/ptB2FatauFduxmUK8 ZTpGMC1+0h3p+FaR/+JzZcCiHxvQm2pqyVVHFUb91IMPwankhVuT0S7IWanVm3V70A QqjMzRLgAc2e1sRgTzpZLH3PfJ01Rva6vLrdEPHU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/abd26d-bfbe82@github.com>
Subject: [quicwg/base-drafts] bfbe82: Fix recovery references
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nMpp5syhx7ularsZtJYHo-v8Kd8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:25:24 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: bfbe8237bab2752ef1de1c17db67f8561f1ee2a9
      https://github.com/quicwg/base-drafts/commit/bfbe8237bab2752ef1de1c17db67f8561f1ee2a9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Fix recovery references

Closes #2874.



From nobody Mon Jul  8 16:25:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4650612016E for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:25:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6Kt7kbDMaURu for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:25: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 7651F120385 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:25:25 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:25:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628324; bh=hn+tEqDXqOwaAzYv6rfatUfQILCQVN9doVLSQVWODlk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NoYDpV/LjKYAOveBVaR/IJVA+1f2gzljrV0qOhlTfNer/RszArH9ZlNup8WWLb7LC obcCAZLodzlQxyx6JZm/yGcdwDjVOHhWDWrQsIuqa2Q3A4dA+Pm6zsJ6c6eExIL7mL IVMmGPxEDk735DNEGRO8ZIdlZUP4EsMBSq8YiANE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4Q332FKPZIZORR7YF3GEBWJEVBNHHBXNFFXE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2874/issue_event/2467698083@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2874@github.com>
References: <quicwg/base-drafts/issues/2874@github.com>
Subject: Re: [quicwg/base-drafts] transport: dangling references (#2874)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23d0e472a37_58e73fa602acd964974d7"; 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/l-22ISER763squAj8ez6RAGkuI8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:25:36 -0000

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

Closed #2874 via bfbe8237bab2752ef1de1c17db67f8561f1ee2a9.

-- 
You are receiving 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/2874#event-2467698083
----==_mimepart_5d23d0e472a37_58e73fa602acd964974d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="464823737" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2874" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2874/hovercard" href="https://github.com/quicwg/base-drafts/issues/2874">#2874</a> via <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/bfbe8237bab2752ef1de1c17db67f8561f1ee2a9/hovercard" href="https://github.com/quicwg/base-drafts/commit/bfbe8237bab2752ef1de1c17db67f8561f1ee2a9"><tt>bfbe823</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/2874?email_source=notifications&amp;email_token=AFTOJK7YKJYVLVAXEZIHISDP6PEGJA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLBLIY#event-2467698083">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZLHWES7RE27EAPG3P6PEGJANCNFSM4H6SWONQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYRUGNWWFDD5GXENI3P6PEGJA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLBLIY.gif" height="1" width="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/2874?email_source=notifications\u0026email_token=AFTOJK7YKJYVLVAXEZIHISDP6PEGJA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLBLIY#event-2467698083",
"url": "https://github.com/quicwg/base-drafts/issues/2874?email_source=notifications\u0026email_token=AFTOJK7YKJYVLVAXEZIHISDP6PEGJA5CNFSM4H6SWON2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLBLIY#event-2467698083",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23d0e472a37_58e73fa602acd964974d7--


From nobody Mon Jul  8 16:26:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A1D7912024F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:26:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Wg0LrSG64JWB for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:26: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 0078A12036F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:26:28 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:26:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628387; bh=YSuVNhrD+KCcwIveDEEbOOIKkW9pwrGtlCMQKRMa4Pg=; h=Date:From:To:Subject:From; b=hjqTGovwjFH3p2gIyaWXRqk+Ib96wrQ7hvZM7wK4QRmPCwYM43UHY5pzIJMshUypn eImdEkuP5iCgDuOyt+LaAo06+f51IIyZBDlVFrv2VnlTrqIo7NjGAij71TvD+VeqPk l135j8//F5H/fTf6psd2VfFvOQB2tOTtyX8ibkoQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6c0a52-70a142@github.com>
Subject: [quicwg/base-drafts] 70a142: Script updating gh-pages from bfbe8237. [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/7SXAY42cRHYT3VXqXesnQNMS8gY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:26:42 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 70a142ac2d7aab98503d24bed7179a6af90013ac
      https://github.com/quicwg/base-drafts/commit/70a142ac2d7aab98503d24bed7179a6af90013ac
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Mon Jul  8 16:26:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D858C120351 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:26:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 GKiEnPJPGDUo for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:26: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 DFB41120342 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:26:34 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:26:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628393; bh=2eqov4yzPDbP5/3qYYKtEFpzQwToPKOWKQfa+uirM78=; h=Date:From:To:Subject:From; b=v0hHgD9vc2fWskgjA7YPXnXbOZWqvrzVSETorfZxCNIut/Kp0DCg05wMLeSnrCANF yTdsTlaHjbaIMTkOmtd9+mag5QD9YoyipHhuMymZ/XyF9W0a7Oy+b25VTffU4uvMxa Eu1DjFgvoZMkQNRTZL9bvT/tpmMMhNd/ycmT5ACs=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/bfbe82-eba938@github.com>
Subject: [quicwg/base-drafts] eba938: Grammatical error
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k4ajDdaHzi_eE8iAS6WgADBja9I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:26:47 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: eba9381771002ac6145fd3e815fee7f97e3b30dc
      https://github.com/quicwg/base-drafts/commit/eba9381771002ac6145fd3e815fee7f97e3b30dc
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Grammatical error

Closes #2876.



From nobody Mon Jul  8 16:27:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A1263120322 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:26:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GuuwyEn1TXC9 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:26: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 A4CA412013B for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:26:48 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:26:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628407; bh=fsR/MPtEb+csnfGSPmN3B0ACT370E+k+oaqgdr8QIGY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=q2ZlOb6WqP5lYK8Zgf//wvLuzelYO/ocrflLxejGu/MAo3bnMlcrd+X9r/VtPnZjk iXhYclFvKWYxtbC8HroAG+2j5wkr/WheKEoKHneMNS84sWJgVZV7MRBhph1u85UJdS 3LKk6hiNRPdJ33CzwENRY1CLMl8UYgjYc1Iv7bbo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57GPDN53F2MTRCC253GEB3PEVBNHHBXPJ2HA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2876/issue_event/2467700145@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2876@github.com>
References: <quicwg/base-drafts/issues/2876@github.com>
Subject: Re: [quicwg/base-drafts] Section 10.4 Stateless Reset grammatical error (#2876)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23d1378a21b_1d443f8f2c2cd96811753f"; 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/bdOaEEztiUm2RKpnKZwL1wEO4RQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:26:59 -0000

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

Closed #2876 via eba9381771002ac6145fd3e815fee7f97e3b30dc.

-- 
You are receiving 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/2876#event-2467700145
----==_mimepart_5d23d1378a21b_1d443f8f2c2cd96811753f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465386040" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2876" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2876/hovercard" href="https://github.com/quicwg/base-drafts/issues/2876">#2876</a> via <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/eba9381771002ac6145fd3e815fee7f97e3b30dc/hovercard" href="https://github.com/quicwg/base-drafts/commit/eba9381771002ac6145fd3e815fee7f97e3b30dc"><tt>eba9381</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/2876?email_source=notifications&amp;email_token=AFTOJK55XZMMYYHQACLVGYDP6PELPA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLB3MI#event-2467700145">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HJZLCB23KR3Z3O7LP6PELPANCNFSM4H66CYPA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6I5WG4YGTLIVOLBZDP6PELPA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLB3MI.gif" height="1" width="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/2876?email_source=notifications\u0026email_token=AFTOJK55XZMMYYHQACLVGYDP6PELPA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLB3MI#event-2467700145",
"url": "https://github.com/quicwg/base-drafts/issues/2876?email_source=notifications\u0026email_token=AFTOJK55XZMMYYHQACLVGYDP6PELPA5CNFSM4H66CYPKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLB3MI#event-2467700145",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23d1378a21b_1d443f8f2c2cd96811753f--


From nobody Mon Jul  8 16:28:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 64AB4120382 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:27:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9zdvrzK7swQh for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:27:54 -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 9F14B12035F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:27:52 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:27:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628471; bh=QyHpg0kk8dXWSKcSabB8r/KJbCar6zGPNGjub6O028g=; h=Date:From:To:Subject:From; b=iS7akFVN+Q+OOwk5VJb02sZ/epBiSkArKJAFeOZqD5vbchpdQf2LbhA0BS1NCXGGm pnFSVUa8G8LByJNf7i5pivsQ/t2v04cKa6L07bz7JTI53pRONBTlTi8acGJEj1xsYw Y0fD5/kazyca053/0WlrnC1FR8aH1HJIMjMcQWco=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/70a142-241de2@github.com>
Subject: [quicwg/base-drafts] 241de2: Script updating gh-pages from eba93817. [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/BcstHcsmakGzoXG3gTSUM33AIOM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:28:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 241de2bea066600275241cf291d7013052f36865
      https://github.com/quicwg/base-drafts/commit/241de2bea066600275241cf291d7013052f36865
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Mon Jul  8 16:28:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ADEF812033B for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 X9aqQx5meIdu for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28: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 01601120352 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:28:45 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:28:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628525; bh=xUO2vVVH1Xs46nOpMY5rAwSZkUx0nmJalFyd5e29H+s=; h=Date:From:To:Subject:From; b=zTwe0azv051RR46nGwyVxu2J7hhCnpjjGvf8v4Nk2PmEUkL7ZL+8OXe/uPpiuUARn Cemq2S8bHWCO7ExzwUi47gGrDYodpWy9yVjS6IeNcNiM/WBHNgi/V2DcrkBoA8iNkJ bxE3wh7jBH45QrE0g+rhidLfdX6UAL0to8gdlrys=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-http-21/000000-d8f8d8@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/tp2bcdnNFGwEt_nt2IIjD4ms0mU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:28:56 -0000

  Branch: refs/tags/draft-ietf-quic-http-21
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 16:29:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B60B112035F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 00ejzD3wSzO3 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28: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 0BACB120364 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:28:50 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:28:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628528; bh=+mMl/NuregoWD1f5F99Fygq9KQ/reyu6YaCpjCv6/ag=; h=Date:From:To:Subject:From; b=Jd3wjKPpizf/ndLFM8A/YbROfBPEad4JoL1onHduGhuuNwDMHpZjFoF7Qp1H3UXAi SfWsYR4DbF0RVnPhu5bu5TG3O1k7TkfsWiCetMUVt8kK0kksojr1mX76P4ovKrUpOc FStpV7bPSc1SA+dV7erz0gN3/I6rzLYV3QUveKe0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-invariants-05/000000-89ff57@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/BduK3oMUgwNc-wLr2IcWRyDlwBw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:28:59 -0000

  Branch: refs/tags/draft-ietf-quic-invariants-05
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 16:29:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7BAD4120384 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 bV7KE6cX6eO8 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28:53 -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 CF6CA1202F5 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:28:53 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:28:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628533; bh=cNGcYX7+Ta5TUxegT9hKi2raILKFpqycBwY+aisau5c=; h=Date:From:To:Subject:From; b=c49l/jPE8d7/Wpheg4Ldk7HCz6qEXeWOGSy6jicv5l8HfQFVEQAlrGh+H2d0hkfYi anvKt2YquHeiAQtCupGhemCBWbBUXKvtUqUJHMBnww1NO3iR6R6Mm7xzH7MLFqOI9M +lpZRiluv5HX9iFZazWxuemFfGRk0YixGOEpKd8o=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-qpack-09/000000-93389e@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/5KqQ7nW3_ETQo8OngEKhxOGgMs8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:29:03 -0000

  Branch: refs/tags/draft-ietf-quic-qpack-09
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 16:29:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A2D0F120355 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 35hKKuNeO5gc for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:28: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 0070612039C for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:28:57 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:28:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628537; bh=yMNIHiUD7gpYREthcJePRKbpKzudUZer4IRm8IOMjFQ=; h=Date:From:To:Subject:From; b=xRq3Dd2UL68p5NgOEDawxP/BydT7fMFz4iHjCnLYT03jdVU8/YDjXX3SQWUbX5Aip u8Z9Mv+ITNOcQOvpWluIDPVVnLTwyLoCyPE/n73jYOIq9/wJuOF5j9WHBXlfM5QEAP n5Cp2LW7x+R40Sdrggq900t9KB+BmOfy8TnFc2ok=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-recovery-21/000000-3b7e9e@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/Xe-B3l157TEmUp40D-BG1vKJ-8o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:29:07 -0000

  Branch: refs/tags/draft-ietf-quic-recovery-21
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 16:29:24 2019
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 4713F120355 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:29:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.705
X-Spam-Level: 
X-Spam-Status: No, score=-0.705 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, PDS_NO_HELO_DNS=1.295, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 DSmO5zliMR5G for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:29:07 -0700 (PDT)
Received: from o10.sgmail.github.com (o10.sgmail.github.com [167.89.101.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8E2B512024F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:29:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:to:subject:mime-version:content-type:content-transfer-encoding;  s=s20150108; bh=FKkPI4IPAjanwqlhALtY8UVGrhk=; b=ZbnqneWwcgEGimB8 51+IqS6V+4zwyYycbY/PZBFUbntK3PtTBVI+oevM5kmoow0e6UQn8HgmyvZI+gec xSHAaILEmYdDqo6NHhnzF4M/1EtCl73O+lA1X7NTgPyc74Dxe6cJQI/CTzT5Jqve LjqynL5NRJjGN5ttPDXg6SRPfE8=
Received: by filter1232p1las1.sendgrid.net with SMTP id filter1232p1las1-2377-5D23D1BD-19 2019-07-08 23:29:01.532781648 +0000 UTC m=+598447.067549837
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) by ismtpd0030p1iad2.sendgrid.net (SG) with ESMTP id ToKyKO55Qw-rw6WiFRqAnA for <quic-issues@ietf.org>; Mon, 08 Jul 2019 23:29:01.438 +0000 (UTC)
Date: Mon, 08 Jul 2019 23:29:01 +0000 (UTC)
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-tls-21/000000-a23bf6@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: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak3XSFTKxSgUjoCF8cb8ihwRqYf6W16ptvGbCZ T8FEX5sgq04tN7aHhDqmwYJ9VsM4ScyDapFabPxML+IsPrXc2OvFJAK2kVeUOn8sFEi1BCjW81uB0p 5H6SnrY7FA4MFdOaZhxben5mJ3xXlCoTHatpAuAGF/3XdglBgUUeHhAF5Q==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VVAPcJFzr_-fxapY0YSKqlKbCyc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:29:16 -0000

  Branch: refs/tags/draft-ietf-quic-tls-21
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 16:29:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 623AB1203A6 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:29:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 Tv94k6ySedI6 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:29: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 08519120385 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:29:07 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:29:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562628545; bh=WJMXSKF9vhWx6laVmRgoDi7lgMZ/iQxiJiw4ylbBE+k=; h=Date:From:To:Subject:From; b=VHBvByWj/uu+0qGLTwz4NSgAike7rNBo6WeWdLiGmxFpKBg6TNHIN1PV51oel79lz JyALM2rcRP0aRNGLkZmxaCQ2wXU9z97h04qdvRq70JouIQmrTl0WAw2IrUTCaxOGvr enL6yxYcAczrTx9fZNX7J1ZXBaAGTPmH8ZR/EtS4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-transport-21/000000-c1970b@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/iKhgJXZ7OIUs3sV71xZCe4lr3gg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:29:22 -0000

  Branch: refs/tags/draft-ietf-quic-transport-21
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 16:59:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 18917120382 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:58:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 ICskxeDyOcS1 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:58: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 65E9C120391 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:58:50 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:58:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562630329; bh=+R+7iToyOHGQvdrhW+5T8Heyks2jGI7aeH1z7FbDXUs=; h=Date:From:To:Subject:From; b=JnNYq127ET7PBExfTOAsbby/yCNJWwMVKGnGvSH/5CoqrT8W33aSlF8Vl/8jsJkNK VjZxNYXoYfHGmPGqAuhM35XAzjJInieEWCmHEQFoOiye2w4GhF9NujLeMRaHT67XDk YrPoQt5u42VxeorcvWkbl0Dndtl303xPsU0wiPUo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/eba938-b25e6b@github.com>
Subject: [quicwg/base-drafts] 53d331: longer CIDs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NowmH-W5Pz1yzt0VqYeHX6MZCeI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:59:12 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 53d331e936a1a68c1c3f339573d12a6889ceed36
      https://github.com/quicwg/base-drafts/commit/53d331e936a1a68c1c3f339573d12a6889ceed36
  Author: root <root@ubuntu-client.pdsea.f5net.com>
  Date:   2019-05-22 (Wed, 22 May 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  longer CIDs


  Commit: 83e140dca3660fccb7c37e00cf5f692f93d8605d
      https://github.com/quicwg/base-drafts/commit/83e140dca3660fccb7c37e00cf5f692f93d8605d
  Author: root <root@ubuntu-client.pdsea.f5net.com>
  Date:   2019-05-22 (Wed, 22 May 2019)

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

  Log Message:
  -----------
  fix unintentional diffs


  Commit: d8d90dc29804a2a370044497f1885db30949ec18
      https://github.com/quicwg/base-drafts/commit/d8d90dc29804a2a370044497f1885db30949ec18
  Author: root <root@ubuntu-client.pdsea.f5net.com>
  Date:   2019-05-22 (Wed, 22 May 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  fix typos


  Commit: ae51a064536f4a40b5f13132e5a9531e3b95de84
      https://github.com/quicwg/base-drafts/commit/ae51a064536f4a40b5f13132e5a9531e3b95de84
  Author: root <root@ubuntu-client.pdsea.f5net.com>
  Date:   2019-05-22 (Wed, 22 May 2019)

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

  Log Message:
  -----------
  remove trailing whitespace


  Commit: 63e7dd65909b908c084d366a90c13804faa7e159
      https://github.com/quicwg/base-drafts/commit/63e7dd65909b908c084d366a90c13804faa7e159
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-05-31 (Fri, 31 May 2019)

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

  Log Message:
  -----------
  VN packets may have 255B CIDs


  Commit: f54a7f48c114bf7636d012bbbe326c1b87e87299
      https://github.com/quicwg/base-drafts/commit/f54a7f48c114bf7636d012bbbe326c1b87e87299
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-01 (Sat, 01 Jun 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 364f5a6e5b47ffac16bd0ee9f90a91e982541519
      https://github.com/quicwg/base-drafts/commit/364f5a6e5b47ffac16bd0ee9f90a91e982541519
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-01 (Sat, 01 Jun 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 9bbe79c075e910f1969706f1fcc0170d3c0ff23c
      https://github.com/quicwg/base-drafts/commit/9bbe79c075e910f1969706f1fcc0170d3c0ff23c
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-03 (Mon, 03 Jun 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 82cd0084816735ed3aaf243072b05ee1665d7be6
      https://github.com/quicwg/base-drafts/commit/82cd0084816735ed3aaf243072b05ee1665d7be6
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-03 (Mon, 03 Jun 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: ec6a2f13a2671a77b6f5aa4f04f941211ba1ff4f
      https://github.com/quicwg/base-drafts/commit/ec6a2f13a2671a77b6f5aa4f04f941211ba1ff4f
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-03 (Mon, 03 Jun 2019)

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

  Log Message:
  -----------
  Addressed David's comment


  Commit: 044f0de49809e96483a2efa6e0cdb789b91b7aad
      https://github.com/quicwg/base-drafts/commit/044f0de49809e96483a2efa6e0cdb789b91b7aad
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-03 (Mon, 03 Jun 2019)

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

  Log Message:
  -----------
  Merge branch 'master' of https://github.com/martinduke/base-drafts


  Commit: a5dd08a22bd8d74970e06b86ce1d0d83962175e3
      https://github.com/quicwg/base-drafts/commit/a5dd08a22bd8d74970e06b86ce1d0d83962175e3
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-03 (Mon, 03 Jun 2019)

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

  Log Message:
  -----------
  fixed jana's formatting issues


  Commit: d60188e312f34326720c5453f0f156ab2efaa291
      https://github.com/quicwg/base-drafts/commit/d60188e312f34326720c5453f0f156ab2efaa291
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-06 (Thu, 06 Jun 2019)

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

  Log Message:
  -----------
  Fixed nits from David, Ian, MT


  Commit: b21444e25156141077fe8ad246841ca64bb2202e
      https://github.com/quicwg/base-drafts/commit/b21444e25156141077fe8ad246841ca64bb2202e
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-06 (Thu, 06 Jun 2019)

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

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

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: ca74837d27795daaa195e7d48a24f5bcf4bc55bc
      https://github.com/quicwg/base-drafts/commit/ca74837d27795daaa195e7d48a24f5bcf4bc55bc
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-07 (Fri, 07 Jun 2019)

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

  Log Message:
  -----------
  Fixed formatting error


  Commit: cf619677cbbedd4e18d8171c03dca222c40b350a
      https://github.com/quicwg/base-drafts/commit/cf619677cbbedd4e18d8171c03dca222c40b350a
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-25 (Tue, 25 Jun 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  v1 CID limit of 20 Bytes + MT's nit


  Commit: f65c731f24d43e23e416de87103871c1f13a4806
      https://github.com/quicwg/base-drafts/commit/f65c731f24d43e23e416de87103871c1f13a4806
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-06-25 (Tue, 25 Jun 2019)

  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

  Log Message:
  -----------
  Merge branch 'master' into master


  Commit: 43ad86c009e578a857ec71d0563574282bc07625
      https://github.com/quicwg/base-drafts/commit/43ad86c009e578a857ec71d0563574282bc07625
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-06-25 (Tue, 25 Jun 2019)

  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: 67fede17d34ba2fadb124ca6cf19156a2bbc2174
      https://github.com/quicwg/base-drafts/commit/67fede17d34ba2fadb124ca6cf19156a2bbc2174
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  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 master


  Commit: b25e6b7b3e5fea9ce21ce9b6bf3f5955e196caab
      https://github.com/quicwg/base-drafts/commit/b25e6b7b3e5fea9ce21ce9b6bf3f5955e196caab
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2749 from martinduke/master

Allow longer CIDs


Compare: https://github.com/quicwg/base-drafts/compare/eba938177100...b25e6b7b3e5f


From nobody Mon Jul  8 16:59:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E71AD120384 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:59:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ahzTHylpDtJt for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:58: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 3433E120404 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:58:57 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:58:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562630336; bh=6xBOTzl6B9Yrh+K1UN5A9zvxo65BuXw0JkA8haAnaeA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nOs1+8AC77pPJ6jznkPqm0Fgbu4ikxMUKMAyIb1Q2tfb+6LohJPDxMFcLZakSpOw2 HOxBu+tgIsLPhkthp2ay8NDdmSsjx/JLJO03lke+S9Hj5EfXMVlpRzIB1IPSvNaZb/ YwUP9B7XGyNNZ3p0+c890pfAfFxSrRsej/dfYAqM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3L25YEZAC7YPGQOHF3GEFUBEVBNHHBVIAR2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2736/issue_event/2467742373@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2736@github.com>
References: <quicwg/base-drafts/issues/2736@github.com>
Subject: Re: [quicwg/base-drafts] More Connection ID Space (#2736)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23d8c01a6b9_48913fa06e6cd95c967f3"; 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/PDG-vKP7VynbSS8zp8Zaivu1YeU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:59:13 -0000

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

Closed #2736 via #2749.

-- 
You are receiving 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/2736#event-2467742373
----==_mimepart_5d23d8c01a6b9_48913fa06e6cd95c967f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="446697940" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2736" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2736/hovercard" href="https://github.com/quicwg/base-drafts/issues/2736">#2736</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="447172956" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2749" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2749/hovercard" href="https://github.com/quicwg/base-drafts/pull/2749">#2749</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/2736?email_source=notifications&amp;email_token=AFTOJK4TQX2U43YFDGXEGS3P6PIEBA5CNFSM4HOMN2NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFJI#event-2467742373">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76Y7C5KT7TL35XLNDP6PIEBANCNFSM4HOMN2NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6L7NYHXTADXT4SLTP6PIEBA5CNFSM4HOMN2NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFJI.gif" height="1" width="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/2736?email_source=notifications\u0026email_token=AFTOJK4TQX2U43YFDGXEGS3P6PIEBA5CNFSM4HOMN2NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFJI#event-2467742373",
"url": "https://github.com/quicwg/base-drafts/issues/2736?email_source=notifications\u0026email_token=AFTOJK4TQX2U43YFDGXEGS3P6PIEBA5CNFSM4HOMN2NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFJI#event-2467742373",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23d8c01a6b9_48913fa06e6cd95c967f3--


From nobody Mon Jul  8 17:00:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 24FEF1203E6 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:59:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WdCLx-iZqdKF for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 16:59: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 04635120366 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 16:58:58 -0700 (PDT)
Date: Mon, 08 Jul 2019 16:58:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562630336; bh=KMHuGUDWPVdI2kq9aTEN2FYEz43CnpFOADoHWtE3u7E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y3SEhkB9GFgwm1hrjzreLUWolUl92VES61m4d2r3u6iTbgYY2i5tXRyeieebDZKgm gIQGNj8z8VtB7G+lbmc34t/7nZxcGVaJFTXxt0HU3IQFeUgHU4g0u3tYoUIuQ0X/ND 2s/drh62+gapavJ4i0X6WkXfOFwApp69rCkojFp0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PZ7JYYI3T7HWSXCF3GEFUBEVBNHHBVJ2RLQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2749/issue_event/2467742369@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2749@github.com>
References: <quicwg/base-drafts/pull/2749@github.com>
Subject: Re: [quicwg/base-drafts] Allow longer CIDs (#2749)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23d8c0a5271_13923f81918cd960963d5"; 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/lI3TTVfwLoFHsphESGaa_yBGpmE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 08 Jul 2019 23:59:23 -0000

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

Merged #2749 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/2749#event-2467742369
----==_mimepart_5d23d8c0a5271_13923f81918cd960963d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="447172956" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2749" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2749/hovercard" href="https://github.com/quicwg/base-drafts/pull/2749">#2749</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/2749?email_source=notifications&amp;email_token=AFTOJK3HYH7HHCCHRTZELPTP6PIEBA5CNFSM4HOU6KE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFII#event-2467742369">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7RSY2QEXJGJWCZEE3P6PIEBANCNFSM4HOU6KEQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZAUUQLKDUKMSMTXLTP6PIEBA5CNFSM4HOU6KE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFII.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2749?email_source=notifications\u0026email_token=AFTOJK3HYH7HHCCHRTZELPTP6PIEBA5CNFSM4HOU6KE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFII#event-2467742369",
"url": "https://github.com/quicwg/base-drafts/pull/2749?email_source=notifications\u0026email_token=AFTOJK3HYH7HHCCHRTZELPTP6PIEBA5CNFSM4HOU6KE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSMLMFII#event-2467742369",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23d8c0a5271_13923f81918cd960963d5--


From nobody Mon Jul  8 17:00:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3F5211203B7 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:00:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fd2laNZxzM7X for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:00: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 5A85F1203F1 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:00:18 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:00:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562630417; bh=RIBYbeFrArbimAF1N0JWMFW7QAkr9FwrGTpeVrL/yK8=; h=Date:From:To:Subject:From; b=VizTPAVxFepA4aTUBBA9bRJ8ejysYeIAkFu5EYW6/1gl4G70cHiNGdwVljRd3gstY MA8Rjqs9sOYwu+LbzlCNRabLwR2xPk97nnBcpBS9I9TDuoJ/lCZo3PElOAPk7nkl7z 2Ba76CDl27KPI0zv8KM9uFaBI2lOuqJ+FjP1TUiU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/241de2-ed4cf4@github.com>
Subject: [quicwg/base-drafts] ed4cf4: Script updating gh-pages from b25e6b7b. [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/4LE0grBt0y1Fm8QKgvr8JXRr3ZA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:00:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ed4cf46e2bc6a07739618171e37a8f1d39095152
      https://github.com/quicwg/base-drafts/commit/ed4cf46e2bc6a07739618171e37a8f1d39095152
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  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 b25e6b7b. [ci skip]



From nobody Mon Jul  8 17:32:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6CC2612004C for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 33oqOLL_vFTW for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32: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 EC5AC12001E for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:32:09 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:32:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632328; bh=vbDejCp0UgomEj/mEnbXjNqCVGgtLJFBaJWWI5hJW/c=; h=Date:From:To:Subject:From; b=uqt/l838nQrfVpRkzsix0bY0PA3rdI7qScm2N+xJU9JTtk2wP1YOMUXsudWvnSwcr h2m8ts2VBVyo1Xf/y151D2HjniRqlF62KovhJCx4V4rhYMyPpCj22xSmJv8VrQQM6G kUV1mn877Zxh6bsEovsqN3am0uVArts6hrR7sWWU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-http-22/000000-99b019@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/2jcWQnLxkUJB9JanxMMfgGbeFK8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:32:11 -0000

  Branch: refs/tags/draft-ietf-quic-http-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 17:32:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7C46212023F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 M_H0gUYx1Hmy for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32:14 -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 0182812008F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:32:14 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:32:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632333; bh=3zzxMirMApIUPb8Q3z1FLghx5axDtZG0XVTMydtNRHc=; h=Date:From:To:Subject:From; b=UH3hhmlDFpky24R618kFm2X5wgqpghgcKu4gv8Gwd7C//wdqxXPIHCDKob7AmlHaU 9VkpD35vkm4Fxh8b+I04PBwD5s08NwVHAh8BooWC83bLx/czmAZKiIZwB3Vt7KGAC5 vod6BoWhMWq+K5LP3W79zgdFy5Mqy6PGqT7b+7yk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-recovery-22/000000-2fb7ed@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/2AngeZlzpIvVQvI6IzajifHMkgs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:32:15 -0000

  Branch: refs/tags/draft-ietf-quic-recovery-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 17:32:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D0FC412004C for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 piwnsFFCrZrV for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32: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 3DE7A12001E for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:32:18 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:32:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632337; bh=5H2JjcZe2ZXf/O/pOIh/6pllurN5rCo/T1okzdiVu5s=; h=Date:From:To:Subject:From; b=cCvytIaR8Q6YS4BTSMCpkRf+JedoCIK5bnxMcNMAqeMY7H2OEZHNEilr7d+VmYGui 3HZwRBy5o3TLZqtYZeUYzCUe1nLb15EKocXzesPTgaqxPE9h0ND9kAjMX8lbOmrUEo dRNlbhMzQnT84OcYeO8I8mxEjlqpOy8+jX6Qt9qI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-tls-22/000000-2451c0@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/ZdUOqEvj6-Rb0j1WvfyxyCFRSY8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:32:20 -0000

  Branch: refs/tags/draft-ietf-quic-tls-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 17:32:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DAAD612001E for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 BNZr5U9MwkUt for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:32: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 8574D12004C for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:32:22 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:32:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632341; bh=dBOA5z0DjZ2QwSJC6aFToMmfxkMLrGtUxNZ86WUKqlw=; h=Date:From:To:Subject:From; b=SZmZtlScsWBXDQC5vCpUfOwM8o5uIt4qa6xalTBUDGUamxZK09o4DO/5InYDJu7Gl 786sp/3dvLmo4eJcMEBF35lO1DK73+jS44XIm2y+o7DgwWhUpT7WM+BAeZIsQJA2bo N7jg3D31rk78tztzv/k1JrKZY4BB2qnRvv2xzlLw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-transport-22/000000-18c7b5@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/9BvDXVPhVk9uJ3u8ZPKVj4mulBQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:32:24 -0000

  Branch: refs/tags/draft-ietf-quic-transport-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 17:34:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6511712004C for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 AHfLbOZ96GFH for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34: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 3170C12001E for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:34:22 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:34:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632461; bh=dBOA5z0DjZ2QwSJC6aFToMmfxkMLrGtUxNZ86WUKqlw=; h=Date:From:To:Subject:From; b=JLxrPIKFWaKrWYSpfE5Q0OFpZim12dqqmhiOaX9I3zvu+Hj4ch3mx4L6CcP642qbW eQdfnrXNdFGQv/Jw4560P8pt/pB9ryvJdNNwM3y8XeZewHhLrRKWxn6ma38aVFptQ9 vN9ustF5zFEYSKKEJmGMLUDpnGL9tbI+IlxGBu7k=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-transport-22/18c7b5-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/J4yVAhQIZmumm70MDpBE12mN4e8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:34:23 -0000

  Branch: refs/tags/draft-ietf-quic-transport-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 17:34:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AB8BC12008F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 InPcqpvrhoZI for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34: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 1E71012004C for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:34:30 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:34:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632469; bh=5H2JjcZe2ZXf/O/pOIh/6pllurN5rCo/T1okzdiVu5s=; h=Date:From:To:Subject:From; b=rvLRxJG786ziY9dinsLps9/Xvw2XyTGqgpQaoa7v4Hbw6EVTrriqvqh+CBZCmcNWl 8funGumm/sjh0ytTJNqT1jhP48j+f4yFM1F7IcNhqq9lgENNWOCci/CQxRA1lpN6sm chn8M+EzMxdUGawnJGrAYsNvIkxMN3rlXM9U6LiA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-tls-22/2451c0-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_O-Qv87YWNLrfushwKCe9kxUAM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:34:32 -0000

  Branch: refs/tags/draft-ietf-quic-tls-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 17:34:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B303212004C for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 7pWA3dbRktYy for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34: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 7256512001E for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:34:37 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:34:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632476; bh=vbDejCp0UgomEj/mEnbXjNqCVGgtLJFBaJWWI5hJW/c=; h=Date:From:To:Subject:From; b=W81HcZJtf3Lmmcg3sENLnYG25CbX69I9HFWj9aoK6H0I28tGFnCclVTnEIXS5vE6/ sZIQJU/+1rmvdccVoXqiET/RBKzjqdCM3Ea/vmsOAqlI1K7B8QctGutHdx8lIpgxLT fNJHz2Ysb6XyhLebXDXpk+iYR7pQEqInmuWAdjwo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-http-22/99b019-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/07eb_cA8V3RWSspeRqex2iCOC9s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:34:39 -0000

  Branch: refs/tags/draft-ietf-quic-http-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 17:34:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D570C12008F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 rQXdM5-fxryx for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 17:34:44 -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 47A7C12001E for <quic-issues@ietf.org>; Mon,  8 Jul 2019 17:34:44 -0700 (PDT)
Date: Mon, 08 Jul 2019 17:34:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562632483; bh=3zzxMirMApIUPb8Q3z1FLghx5axDtZG0XVTMydtNRHc=; h=Date:From:To:Subject:From; b=H4WC/wCIZpkxz/TSmrSQbenL9V5RwpLS/kDdKl3IXxdQb2LD0XSJyREIJkoDe9Mb9 661CqOUBmXC3OCJDbgKoEtnb4K0VYWufdfKZ18wxoNapUQ8OAecImD2wiL32ZGBoyF f0i95PJbsMP2lmeYpBSybaWjTV5IVKS5nTRMya6Q=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-recovery-22/2fb7ed-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/Zrnk2gdzs8FBQJTLeQUZhAzgOEU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 00:34:46 -0000

  Branch: refs/tags/draft-ietf-quic-recovery-22
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul  8 18:01:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4E3E512024E for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 9dMuxfjYM0Di for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01: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 A2757120090 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:01:09 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:01:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562634068; bh=RgpXdRi7qdiOp6TQrHuljYmLz755oxMeUzI9tEOQjUw=; h=Date:From:To:Subject:From; b=t0Qi29vWqlLuNx5rW1Zm66WroNOL29wFQGSMnIBpSv9MdYziVEPn2Bjds9/yeTZXT xgcqsL4XyAdd2Cqlt0GbC0+oL8u+n7CqgPhdnxAq8tg+P596TVdSS3+VUPITK9xxsM aAyZac+wJdtlLBQyw2nWrpxiVC9ZpxSqgLP0exoY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-http-22/000000-63722d@github.com>
Subject: [quicwg/base-drafts] c3eef7: Fix changelogs for -22
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0e4Yg4M-apvOm9Shg839oVVqxSk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:01:11 -0000

  Branch: refs/tags/draft-ietf-quic-http-22
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3eef712c72ebb5a11a7d2432bb46365bef9f502
      https://github.com/quicwg/base-drafts/commit/c3eef712c72ebb5a11a7d2432bb46365bef9f502
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Fix changelogs for -22



From nobody Mon Jul  8 18:01:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9B2DF1202AD for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 14SnicW7XWBY for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01: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 C6A721202F4 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:01:13 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:01:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562634072; bh=o3ngzIk3C79okfqfDZZHmkNpWXb8hYBXYSPd8//tAr8=; h=Date:From:To:Subject:From; b=bf7UXaiuNXzlRqo9e8Mr1pZUS7G7WIIbkoKvcPcEub5J74ixB3q2t20M/BnLCWTZF RVBY/9igHUlwaG+LaoXWWq2MJtybIrEfYjPXRzP/BOyIbI6X2VgcXVLAGZofCBh6kL eE94Bsz/qnL1+K05shsq1n8uTGLLT3BgBSzipFk0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-recovery-22/000000-8fd6a3@github.com>
Subject: [quicwg/base-drafts] c3eef7: Fix changelogs for -22
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kk4Iu2H8kINkHt5HqEL5KvpbYKg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:01:16 -0000

  Branch: refs/tags/draft-ietf-quic-recovery-22
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3eef712c72ebb5a11a7d2432bb46365bef9f502
      https://github.com/quicwg/base-drafts/commit/c3eef712c72ebb5a11a7d2432bb46365bef9f502
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Fix changelogs for -22



From nobody Mon Jul  8 18:01:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5D4C9120385 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 qSPnJlr30Yu6 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01:17 -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 C7D7412024E for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:01:17 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:01:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562634077; bh=zwb7sRj7Hj/PGgeKM0dp5j03DsVW0ce5jiVKvv+Immg=; h=Date:From:To:Subject:From; b=vSMobXkOisr70on/hQKKi9rz5Wnzp5lDeYGFeQCNcKLj6k5fx7cHc7huX9pXPAaqW Qtf5LO55kjOsdhbajqcP3GZ+LE4CtVnsNx2Ag+ixkfR9uFLqBsw0BZ3gHDO3XL60IB UMm6d9sUG738PYmRgWBtVrjzcZZE030lzne7tD24=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-tls-22/000000-240b5c@github.com>
Subject: [quicwg/base-drafts] c3eef7: Fix changelogs for -22
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2gTAINyUvwpEKyTbwZAtnOJWIOY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:01:23 -0000

  Branch: refs/tags/draft-ietf-quic-tls-22
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3eef712c72ebb5a11a7d2432bb46365bef9f502
      https://github.com/quicwg/base-drafts/commit/c3eef712c72ebb5a11a7d2432bb46365bef9f502
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Fix changelogs for -22



From nobody Mon Jul  8 18:01:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1676F1203CE for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 kIO-uxxW73qE for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01: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 1F498120369 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:01:22 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:01:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562634080; bh=9z4I/2jiiB57pvK+aSOaIHjdVDm5XaqMC7T3IRqGfPg=; h=Date:From:To:Subject:From; b=QmAAyf6YxznuvV+av6WUyyyjDVOllj5LrOSzHVztMgvoL8XvlXubrw2vKU1pzg9jm eYbLkTyPJYZB35p84yZBBc6yeY0mMYbXQ7lDzY05ZYXlOexUoavEqOhxUOC6qe+PDZ d17CfpRpF/VeuPtQkRdviwIxkTGdR19bCQnNS5nw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-transport-22/000000-06e3c0@github.com>
Subject: [quicwg/base-drafts] c3eef7: Fix changelogs for -22
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Yx5jHDegMQQbmikKnqmwzism9Ak>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:01:30 -0000

  Branch: refs/tags/draft-ietf-quic-transport-22
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3eef712c72ebb5a11a7d2432bb46365bef9f502
      https://github.com/quicwg/base-drafts/commit/c3eef712c72ebb5a11a7d2432bb46365bef9f502
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Fix changelogs for -22



From nobody Mon Jul  8 18:01:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AD660120398 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 MUccDI2rRGjY for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:01:26 -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 C48281203B7 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:01:26 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:01:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562634085; bh=UOYEXsV7Qi0K8bU1qjehRlzLh51vEXW75tD94BHDLYE=; h=Date:From:To:Subject:From; b=ToOVQiLP7rFyyeUtomyc9lzmy9Mxxi0n0yVR0mD4umRYXOSifMVunTFJB3rQMcXDF Av0W3pSiSikBozpGgYCSPji/54wqedDSVOIQF8gjVcHTY7UmKpS0VZhY62c0lWYPB1 AC6NtiKJLjg2ULg0XMIXZyST4Hvyz5btz7vewoFo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/b25e6b-c3eef7@github.com>
Subject: [quicwg/base-drafts] c3eef7: Fix changelogs for -22
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ao5FF_RXlb7uEmzAoddOPPw5CQ0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:01:35 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3eef712c72ebb5a11a7d2432bb46365bef9f502
      https://github.com/quicwg/base-drafts/commit/c3eef712c72ebb5a11a7d2432bb46365bef9f502
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Fix changelogs for -22



From nobody Mon Jul  8 18:03:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 626A9120192 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:03:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xLB-FuGQtlzo for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:03: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 72BD3120090 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:03:38 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:03:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562634217; bh=N6aWQv7z7dRAlMA+W9leodAjNKf8Db0D6z1xnNQOaAY=; h=Date:From:To:Subject:From; b=0GHoUDMduNZhbEGhgtVq9AV5MlgrewXQqa6AHf9CXoG998TXCAOMecMntKAgg4sx6 03+/a9i2Q0OoHCBTu7nKOZSWhpkXHSuYN7zjD6KTQcbm+sdIsRQg/kXev2pm4bPwi2 fDlYPpZ2gie+Tv7mRnpNUFXGsFCiIrGiKrX/q69c=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ed4cf4-c8c99b@github.com>
Subject: [quicwg/base-drafts] c8c99b: Script updating gh-pages from c3eef712. [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/G0mX8KQProVLqFmWB3rJboANC38>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:03:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c8c99b15d443246589cb107dceb2bfbd24ba18f1
      https://github.com/quicwg/base-drafts/commit/c8c99b15d443246589cb107dceb2bfbd24ba18f1
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  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 c3eef712. [ci skip]



From nobody Mon Jul  8 18:37:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 13D301200DF for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:37:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iavoKQHmUbhz for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:37: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 EFB95120091 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:37:21 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:37:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562636240; bh=w79PaQxz25kaAnth4sQPJPsAxBSIRZ6HitZWJFGeO/8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w4EBjFEnSxzrif007djxO6/30y2waVvoSFnjlu7cs5cbs4HKusb5KqmyhNCrPh9Oj v6PxZugqHjEx6meBPMRTIB0wv4w8rf/l6bwFXBL4jL8To+C+LxuUi4GbliZ8f0B9lF lRK2Uj06BEBWXyRalN3d1fGnhpmIrYZNmK3JGnDA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4GADT3JJRTNUCHTMF3GERFBEVBNHHBWWQD7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2823/509452429@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2823@github.com>
References: <quicwg/base-drafts/issues/2823@github.com>
Subject: Re: [quicwg/base-drafts] Do Initial secrets change after Retry packet? (#2823)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23efd0d6634_2a673fed2aacd968698881"; 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/og4WRme16LpAoOOjTv2KKP2bg6s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:37:24 -0000

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

Of note, in section 2.6 of the new draft from @kazuho and @huitema on protection Initials it says:
"The Destination Connection ID of the Initial packet MUST be set to the value specified by the Retry packet, however the keys for encrypting and authenticating the packet MUST continue to be the original ones."

This aligns with the first option.  It seems like the first option also allows us to remove a transport param, which is a nice property.

Given that, is anyone actively opposed to the first option assuming someone else(ie: myself or Nick) writes 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/2823#issuecomment-509452429
----==_mimepart_5d23efd0d6634_2a673fed2aacd968698881
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Of note, in section 2.6 of the new draft from <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" 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="/hovercards?user_id=7464128" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/huitema">@huitema</a> on protection Initials it says:<br>
"The Destination Connection ID of the Initial packet MUST be set to the value specified by the Retry packet, however the keys for encrypting and authenticating the packet MUST continue to be the original ones."</p>
<p>This aligns with the first option.  It seems like the first option also allows us to remove a transport param, which is a nice property.</p>
<p>Given that, is anyone actively opposed to the first option assuming someone else(ie: myself or Nick) writes 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/2823?email_source=notifications&amp;email_token=AFTOJKYB2O7QUTK22LV3WHTP6PTVBA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2BDI#issuecomment-509452429">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72INUW5MPBLQONUXTP6PTVBANCNFSM4HZ6U5CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2D4KOE75YGXFLDQ33P6PTVBA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2BDI.gif" height="1" width="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/2823?email_source=notifications\u0026email_token=AFTOJKYB2O7QUTK22LV3WHTP6PTVBA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2BDI#issuecomment-509452429",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=notifications\u0026email_token=AFTOJKYB2O7QUTK22LV3WHTP6PTVBA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2BDI#issuecomment-509452429",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23efd0d6634_2a673fed2aacd968698881--


From nobody Mon Jul  8 18:49:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2E37312006E for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:49:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VrDDknY3XRdv for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:49: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 53561120047 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:49:01 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:49:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562636940; bh=y8sU/JaTalAgsZQRR8seC4ng4OVY/BVyyK3WCVVglhA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dOPkYzVeUBj8qJCmrcuu+xeSzlYtEhb+81VIRJX02C+EuEMt0E9yo0n+5NB6PeC0J JM9o/e614IGkz4hBd025ozdg4NuzHenh/sLiN+9zEvGNk8zjCTDRBMbexGh3NTn2IL 9TZ9VabBmuZdClv7tf1ELRU0XLNwQdIrgS8eqmHQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TUBS2URCZMMPC3UN3GESQZEVBNHHBXIMFLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2870/review/259234707@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2870@github.com>
References: <quicwg/base-drafts/pull/2870@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets change after Retry (#2870)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f28c184ab_60553f8f2c2cd968560441"; 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/MV9d2mDVtX0nLOAjbhmZwciYUg4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:49:03 -0000

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

ianswett requested changes on this pull request.

This is a good PR in terms of clarifying the current interop/implied behavior, but I'd like to consider making this a non-editorial issue, since I think we could do this more cleanly.



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

<p><b>@ianswett</b> requested changes on this pull request.</p>

<p>This is a good PR in terms of clarifying the current interop/implied behavior, but I'd like to consider making this a non-editorial issue, since I think we could do this more cleanly.</p>

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


From nobody Mon Jul  8 18:52:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BBBEF120091 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:52:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2UXwsbp0O83m for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:52: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 CF60B120047 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:52:44 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:52:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562637163; bh=WrlLnllL9m7RrnqdpGjewDxrC/tfEQNW4grcwWY2caM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Oa+X7HkXdXfbuXdWKVoJUvUZXkN7PrMyNlDn/7xBqzLzUXUQncVEAn4No7n12RH1S B1Hyzwo9dQ/ziSG7ZJUO3e7c2Oh2lXnL2uLTFSnsxyJVrZbvxoEib86IkuiaZSvVrD wxae5AcrvpS4Q1+3yuhK/hi64L6b5sMgB7LQfznc=
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJOJZAL2GCGU7JULF3GES6XEVBNHHBSVHB6Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2550/509455087@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2550@github.com>
References: <quicwg/base-drafts/issues/2550@github.com>
Subject: Re: [quicwg/base-drafts] Apply GREASE to transport parameters (#2550)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f36bc215b_6fb33fd988acd964733268"; 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/CkH_nqxuvLLi12Pej69q1zRg02c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:52:47 -0000

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

@mnot sorry I totally dropped the ball here! I had text ages ago and was circling back today finally.  Thanks @marten-seemann for seeing to 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/2550#issuecomment-509455087
----==_mimepart_5d23f36bc215b_6fb33fd988acd964733268
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=74384" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mnot">@mnot</a> sorry I totally dropped the ball here! I had text ages ago and was circling back today finally.  Thanks <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a> for seeing to 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/2550?email_source=notifications&amp;email_token=AFTOJK37N556IIUZGQXVUXLP6PVOXA5CNFSM4HA5GFKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2V3Y#issuecomment-509455087">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4RHJDX7YLKY2FL5PTP6PVOXANCNFSM4HA5GFKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK65CIHMAV454ZI4Z6LP6PVOXA5CNFSM4HA5GFKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2V3Y.gif" height="1" width="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/2550?email_source=notifications\u0026email_token=AFTOJK37N556IIUZGQXVUXLP6PVOXA5CNFSM4HA5GFKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2V3Y#issuecomment-509455087",
"url": "https://github.com/quicwg/base-drafts/issues/2550?email_source=notifications\u0026email_token=AFTOJK37N556IIUZGQXVUXLP6PVOXA5CNFSM4HA5GFKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZO2V3Y#issuecomment-509455087",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d23f36bc215b_6fb33fd988acd964733268--


From nobody Mon Jul  8 18:57:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D811D12008A for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:57:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 g9xEwpCD_p2E for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:57: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 2873A120047 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:57:25 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:57:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562637443; bh=UjBZH6Jlyroyh8ZRh0BllYH0Wgj0AxSb6bVWvRHVXek=; h=Date:From:To:Subject:From; b=fdK8KGenaTcmN020pBs/DWmDpgc+ZASDc7moOgnxJ4a4zko0+xaYeDXK7G1f2wjfB Q8SNZ/vhDbBC1kH8bmTjWvNfu6FR0fHZJMRhuHizb5MqWvWKj9cZRhUnBhgAzcsZfx TYcYz3uGk/wxtTiHuLVzLLFAn0PQ/0+RKE0PAc3k=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/000000-913370@github.com>
Subject: [quicwg/base-drafts] 913370: Editorial fix for #2479
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/c6QsmMP-6IIuL8GslupmOy0YUTQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:57:27 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: 913370291aa863a847126f7df9f9ab3df7024196
      https://github.com/quicwg/base-drafts/commit/913370291aa863a847126f7df9f9ab3df7024196
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Editorial fix for #2479



From nobody Mon Jul  8 18:58:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C2CAE120091 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:58:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 YplJga2kE2W3 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:58: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 DF9AB12008A for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:58:03 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:58:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562637482; bh=Tu+2JzTqPsveVRTw2nqUrnI2aO+pZLT3jrOYXylsh/E=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=inr6X2MEMeYDHqjSS1ocl82s2krlgS0ZHo2R0/IRhdA8DtdcaWnex7aUSa8u5t0US FgHan+SM6kCMaW2GEMW8vGfu/Eb4V55TLXR41SqJk+YymLK2zSSK8F4FJc9miqYu39 Zm9RKhBWPmbZPQqHykTSIXEHMRErJs/0Dpykps84=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ZNTLVZODSN4EE3NF3GETSVEVBNHHBXP3RNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2877@github.com>
Subject: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f4aa80956_60583f8f2c2cd9681307480"; 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/A1psnMQAPmjdtAf03-9cZKaaQdA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:58:06 -0000

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

I noticed this earlier today when trying to resolve conflicts.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Editorial fix for #2479

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2877.patch
https://github.com/quicwg/base-drafts/pull/2877.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/2877

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

<p>I noticed this earlier today when trying to resolve 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/2877'>https://github.com/quicwg/base-drafts/pull/2877</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Editorial fix for #2479</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2877.patch'>https://github.com/quicwg/base-drafts/pull/2877.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2877.diff'>https://github.com/quicwg/base-drafts/pull/2877.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/2877?email_source=notifications&amp;email_token=AFTOJKYNHKEMOPTGNF5TFZTP6PWCVA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57OFVA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK34K5SH5NHMIWVIH3TP6PWCVANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5MFPQRSRRS7WU4AXDP6PWCVA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57OFVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877?email_source=notifications\u0026email_token=AFTOJKYNHKEMOPTGNF5TFZTP6PWCVA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57OFVA",
"url": "https://github.com/quicwg/base-drafts/pull/2877?email_source=notifications\u0026email_token=AFTOJKYNHKEMOPTGNF5TFZTP6PWCVA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57OFVA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23f4aa80956_60583f8f2c2cd9681307480--


From nobody Mon Jul  8 18:58:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D2E24120091 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:58:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_xdhKJ4ZXKC for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 18:58:35 -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 EFC3712008A for <quic-issues@ietf.org>; Mon,  8 Jul 2019 18:58:34 -0700 (PDT)
Date: Mon, 08 Jul 2019 18:58:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562637513; bh=mj07t2sA3xtvsQwjqnW80CZOPIv8o803ch3CZ5QLBqI=; h=Date:From:To:Subject:From; b=x/K0Trc7NyIIoF4UlpQUdp5xiq9FHETKEqfB4Hyy2SkTihaqbYhm5+O53LzjbQ8Vv 4BeGKwgz16hgiFInOSb5WRRfQjOKRU6vgFWz22FfLyMLQQIt+6q9u72Jn1e9mLp542 /aErZEKWld03Mk09EaoMfPxqTqyKDfEUw455vaU0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c8c99b-928d3c@github.com>
Subject: [quicwg/base-drafts] 928d3c: Script updating gh-pages from 91337029. [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/vGkXKcjNvAAuKt9DpT2bXhhqgWE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 01:58:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 928d3c7850e81ee1c5ce10ba1b3e076cd3aae137
      https://github.com/quicwg/base-drafts/commit/928d3c7850e81ee1c5ce10ba1b3e076cd3aae137
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Mon Jul  8 19:08:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 80368120368 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:08:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 DTpjhNWyihMV for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:07:58 -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 0BB0C120307 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:07:57 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:07:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638076; bh=WXUVrw9o0n48m7a6IxE+mgPrOtguJfds0gZZb86Xo/k=; h=Date:From:To:Subject:From; b=wtbCkoFk4yyk/edlODHvirCa3qCFz3ujPrww2MgsYGFWgmOAzNdr9nbObX+Sds7rK pYXfQP7TzHcshH3l/bW/YNt3A1HNylEEbq659XKlBeFZKwbl7Ls89tM18aYx4gnv7q Yq244Z3iRGib0rGzdKMJHzOuVBp0sMODH+pyAJYY=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/913370-b9f642@github.com>
Subject: [quicwg/base-drafts] b9f642: Update draft-ietf-quic-invariants.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/GJAFoi6_RN8iyJYFhQ8PKx3vRyw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:08:13 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: b9f6425786a4a347ec926bac02c4b1631e15cdb9
      https://github.com/quicwg/base-drafts/commit/b9f6425786a4a347ec926bac02c4b1631e15cdb9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Fixing invariants as well



From nobody Mon Jul  8 19:08:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 77C5C120365 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:08:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 FWOBINxH7Sun for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:08: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 515D3120335 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:08:06 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:08:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638085; bh=CUGwmFfnJ/ChR6UkyK648SkSmfPExze2jxusx6NVjlM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=moEpbpfs0Asyu64qYIO1BwXYPuns3WjANkef5RDnmToRFTS2WKtWTFn5d4srs8cD0 mW+cCHuEX1T5Q9GPdI/njjzVir4QwR32OaDi/TfUwbBawT6R0Rcr0wY80rifRVC7im Sqww6SvL63QO4WK9hapsfLEVw8Vy3cjKUb39vB+I=
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/2877/push/3795555800@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f705224fb_5df13ffbdb0cd96c639434"; 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/WLpNHkyg8qRkR-cBIns7CCdZWHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:08:20 -0000

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

@ianswett pushed 1 commit.

b9f6425786a4a347ec926bac02c4b1631e15cdb9  Update draft-ietf-quic-invariants.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2877/files/913370291aa863a847126f7df9f9ab3df7024196..b9f6425786a4a347ec926bac02c4b1631e15cdb9

----==_mimepart_5d23f705224fb_5df13ffbdb0cd96c639434
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/b9f6425786a4a347ec926bac02c4b1631e15cdb9">b9f6425</a>  Update draft-ietf-quic-invariants.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/2877/files/913370291aa863a847126f7df9f9ab3df7024196..b9f6425786a4a347ec926bac02c4b1631e15cdb9?email_source=notifications&amp;email_token=AFTOJKZY3BX43LJ6B5OHYULP6PXILA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJVGU4DAMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GA54FD26JR56RZ5DP6PXILANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BFYVTNTLCZZFINM3P6PXILA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJVGU4DAMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877/files/913370291aa863a847126f7df9f9ab3df7024196..b9f6425786a4a347ec926bac02c4b1631e15cdb9?email_source=notifications\u0026email_token=AFTOJKZY3BX43LJ6B5OHYULP6PXILA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJVGU4DAMA",
"url": "https://github.com/quicwg/base-drafts/pull/2877/files/913370291aa863a847126f7df9f9ab3df7024196..b9f6425786a4a347ec926bac02c4b1631e15cdb9?email_source=notifications\u0026email_token=AFTOJKZY3BX43LJ6B5OHYULP6PXILA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJVGU4DAMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23f705224fb_5df13ffbdb0cd96c639434--


From nobody Mon Jul  8 19:14:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F361912008A for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:14:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lzuKqi2wqegb for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:14:40 -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 2F960120091 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:14:39 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:14:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638477; bh=UvIHEANZ4VtAETCQcAMkqn/eY2moT3G4hr3R+yI4qTg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Xj+Xx/SBduacPB46x0JTzwy2UmwQm1VwvGgA/y7NVPwFOQHfRuJSwNHzduozcTFfB I12bfSsOGKW4i6qB9m92JaRmhqcsku4yU//8fZhGnRlpupqQAas3tTPhKENi/ox+f9 oZExa8U5WqMbDxZOyBxETS1jX+nMFbBDm5TdVU+s=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RQUPGLT67IYA5EHN3GEVQ3EVBNHHBXP3RNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2877/review/259239188@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f88d7667d_192b3fa06e6cd95c868256"; 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/w54Tcc_YNIzc_dACk3WoML_wTwo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:14:42 -0000

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

martinthomson approved this pull request.

Suggestions, but this is definitely cleaner.

> -integer.  The length of the Destination Connection ID (DCIL) occupies the high
-bits of the byte and the length of the Source Connection ID (SCIL) occupies the
-low bits of the byte.  An encoded length of 0 indicates that the connection ID
-is also 0 bytes in length.  Non-zero encoded lengths are increased by 3 to get
-the full length of the connection ID; the final value is therefore either 0 or
-between 4 and 18 bytes in length (inclusive).  For example, a byte with the
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte Source
-Connection ID.
-
-The connection ID lengths are followed by two connection IDs.  The connection
-ID associated with the recipient of the packet (the Destination Connection ID)
-is followed by the connection ID associated with the sender of the packet (the
-Source Connection ID).
+The byte contains the length in bytes of the Destination Connection ID (see
+{{connection-id}}) field that follows it.  This length is encoded as an 8-bit
+unsigned integer.  The Destination Connection ID field follows the DCI Len

```suggestion
unsigned integer.  The Destination Connection ID field follows the DCID Len
```

> -bits of the byte and the length of the Source Connection ID (SCIL) occupies the
-low bits of the byte.  An encoded length of 0 indicates that the connection ID
-is also 0 bytes in length.  Non-zero encoded lengths are increased by 3 to get
-the full length of the connection ID; the final value is therefore either 0 or
-between 4 and 18 bytes in length (inclusive).  For example, a byte with the
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte Source
-Connection ID.
-
-The connection ID lengths are followed by two connection IDs.  The connection
-ID associated with the recipient of the packet (the Destination Connection ID)
-is followed by the connection ID associated with the sender of the packet (the
-Source Connection ID).
+The byte contains the length in bytes of the Destination Connection ID (see
+{{connection-id}}) field that follows it.  This length is encoded as an 8-bit
+unsigned integer.  The Destination Connection ID field follows the DCI Len
+and is between 0 and 255 bytes in length.

```suggestion
field and is between 0 and 255 bytes in length.
```

> -value 0xe0 describes a 17 byte Destination Connection ID and a zero byte Source
-Connection ID.
-
-The connection ID lengths are followed by two connection IDs.  The connection
-ID associated with the recipient of the packet (the Destination Connection ID)
-is followed by the connection ID associated with the sender of the packet (the
-Source Connection ID).
+The byte contains the length in bytes of the Destination Connection ID (see
+{{connection-id}}) field that follows it.  This length is encoded as an 8-bit
+unsigned integer.  The Destination Connection ID field follows the DCI Len
+and is between 0 and 255 bytes in length.
+
+The byte following the Source Connection ID contains the length in bytes
+of the Source Connection ID field that follows it.  This length is encoded as
+a 8-bit unsigned integer.  The Source Connection ID field follows the SCID Len
+and is between 0 and 255 bytes in length.

```suggestion
field and is between 0 and 255 bytes in length.
```

> @@ -3503,16 +3503,13 @@ Version:
 
 DCID Len:
 
-: The byte following the version contains the lengths of the two connection ID
-  fields that follow it.  These lengths are encoded as two 4-bit unsigned
-  integers. The Destination Connection ID Length (DCIL) field occupies the 4
-  high bits of the byte and the Source Connection ID Length (SCIL) field
-  occupies the 4 low bits of the byte.  An encoded length of 0 indicates that
-  the connection ID is also 0 bytes in length.  Non-zero encoded lengths are
-  increased by 3 to get the full length of the connection ID, producing a length
-  between 4 and 18 bytes inclusive.  For example, a byte with the value 0x50
-  describes an 8-byte Destination Connection ID and a zero-length Source
-  Connection ID.
+: The byte following the version contains the length in bytes of the Destination
+  Connection ID field that follows it.  This length is encoded as an 8-bit
+  unsigned integer.  In QUIC version 1, this value MUST NOT exceed 20 bytes.

```suggestion
  unsigned integer.  In QUIC version 1, this value MUST NOT exceed 20.
```

Using "bytes" here, while correct, implies that the length of this field is what is being limited.

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

<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>Suggestions, but this is definitely cleaner.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2877#discussi=
on_r301370471">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -integer.  The length of the Destination C=
onnection ID (DCIL) occupies the high=0D
-bits of the byte and the length of the Source Connection ID (SCIL) occup=
ies the=0D
-low bits of the byte.  An encoded length of 0 indicates that the connect=
ion ID=0D
-is also 0 bytes in length.  Non-zero encoded lengths are increased by 3 =
to get=0D
-the full length of the connection ID; the final value is therefore eithe=
r 0 or=0D
-between 4 and 18 bytes in length (inclusive).  For example, a byte with =
the=0D
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte=
 Source=0D
-Connection ID.=0D
-=0D
-The connection ID lengths are followed by two connection IDs.  The conne=
ction=0D
-ID associated with the recipient of the packet (the Destination Connecti=
on ID)=0D
-is followed by the connection ID associated with the sender of the packe=
t (the=0D
-Source Connection ID).=0D
+The byte contains the length in bytes of the Destination Connection ID (=
see=0D
+{{connection-id}}) field that follows it.  This length is encoded as an =
8-bit=0D
+unsigned integer.  The Destination Connection ID field follows the DCI L=
en=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-unsigned integer.  The Destination Connection=
 ID field follows the DCI Len=0D
+unsigned integer.  The Destination Connection ID field follows the DCID =
Len=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2877#discussi=
on_r301370487">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -bits of the byte and the length of the So=
urce Connection ID (SCIL) occupies the=0D
-low bits of the byte.  An encoded length of 0 indicates that the connect=
ion ID=0D
-is also 0 bytes in length.  Non-zero encoded lengths are increased by 3 =
to get=0D
-the full length of the connection ID; the final value is therefore eithe=
r 0 or=0D
-between 4 and 18 bytes in length (inclusive).  For example, a byte with =
the=0D
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte=
 Source=0D
-Connection ID.=0D
-=0D
-The connection ID lengths are followed by two connection IDs.  The conne=
ction=0D
-ID associated with the recipient of the packet (the Destination Connecti=
on ID)=0D
-is followed by the connection ID associated with the sender of the packe=
t (the=0D
-Source Connection ID).=0D
+The byte contains the length in bytes of the Destination Connection ID (=
see=0D
+{{connection-id}}) field that follows it.  This length is encoded as an =
8-bit=0D
+unsigned integer.  The Destination Connection ID field follows the DCI L=
en=0D
+and is between 0 and 255 bytes in length.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-and is between 0 and 255 bytes in length.=0D
+field and is between 0 and 255 bytes in length.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2877#discussi=
on_r301370508">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -value 0xe0 describes a 17 byte Destinatio=
n Connection ID and a zero byte Source=0D
-Connection ID.=0D
-=0D
-The connection ID lengths are followed by two connection IDs.  The conne=
ction=0D
-ID associated with the recipient of the packet (the Destination Connecti=
on ID)=0D
-is followed by the connection ID associated with the sender of the packe=
t (the=0D
-Source Connection ID).=0D
+The byte contains the length in bytes of the Destination Connection ID (=
see=0D
+{{connection-id}}) field that follows it.  This length is encoded as an =
8-bit=0D
+unsigned integer.  The Destination Connection ID field follows the DCI L=
en=0D
+and is between 0 and 255 bytes in length.=0D
+=0D
+The byte following the Source Connection ID contains the length in bytes=
=0D
+of the Source Connection ID field that follows it.  This length is encod=
ed as=0D
+a 8-bit unsigned integer.  The Source Connection ID field follows the SC=
ID Len=0D
+and is between 0 and 255 bytes in length.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-and is between 0 and 255 bytes in length.=0D
+field and is between 0 and 255 bytes in length.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2877#discussi=
on_r301370640">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3503,16 +3503,13 @@ Version:=0D
 =0D
 DCID Len:=0D
 =0D
-: The byte following the version contains the lengths of the two connect=
ion ID=0D
-  fields that follow it.  These lengths are encoded as two 4-bit unsigne=
d=0D
-  integers. The Destination Connection ID Length (DCIL) field occupies t=
he 4=0D
-  high bits of the byte and the Source Connection ID Length (SCIL) field=
=0D
-  occupies the 4 low bits of the byte.  An encoded length of 0 indicates=
 that=0D
-  the connection ID is also 0 bytes in length.  Non-zero encoded lengths=
 are=0D
-  increased by 3 to get the full length of the connection ID, producing =
a length=0D
-  between 4 and 18 bytes inclusive.  For example, a byte with the value =
0x50=0D
-  describes an 8-byte Destination Connection ID and a zero-length Source=
=0D
-  Connection ID.=0D
+: The byte following the version contains the length in bytes of the Des=
tination=0D
+  Connection ID field that follows it.  This length is encoded as an 8-b=
it=0D
+  unsigned integer.  In QUIC version 1, this value MUST NOT exceed 20 by=
tes.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  unsigned integer.  In QUIC version 1, this =
value MUST NOT exceed 20 bytes.=0D
+  unsigned integer.  In QUIC version 1, this value MUST NOT exceed 20.=0D=

</pre>=0D
=0D
<p>Using "bytes" here, while correct, implies that the length of this fie=
ld is what is being limited.</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/2877?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK2Z24FWTDU7JMTFIQLP6PYA3A5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5Z22FA#pullrequestreview-259239188=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKYZL5RI5NBKNOKCHTDP6PYA3ANCNFSM4H7A2NTQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK5JRK2T=
4OCV3YY53ELP6PYA3A5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB5Z22FA.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/2877?email_source=3D=
notifications\u0026email_token=3DAFTOJK2Z24FWTDU7JMTFIQLP6PYA3A5CNFSM4H7A=
2NT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
5Z22FA#pullrequestreview-259239188",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2877?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2Z24FWTDU7JMTFIQLP6PYA3A5CNFSM4H7A2N=
T2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5Z=
22FA#pullrequestreview-259239188",=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_5d23f88d7667d_192b3fa06e6cd95c868256--


From nobody Mon Jul  8 19:18:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3A12E120305 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 izsytTybXnDS for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18: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 B48D512008A for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:05 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:18:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638684; bh=2kAvXiml4A6h3dXWrOAIkMYXuGw3F3QlJmiCJpr3tWc=; h=Date:From:To:Subject:From; b=zd6jrbMA5wKWstbrKAXRARtfAa36ZqXKypR07wD++4k+xzUZIfjDj4xpGfO1qMwGh j0o+LNsYgftDto7cJ22LriEqzCsACAXQJBL3zLtxmBkIJytNzrIqVzIGc/jSDK9Lyk OApVXpNY4l/Lm6RmDXtwrT14tMKEjyRQRxOaTYS8=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/b9f642-5601eb@github.com>
Subject: [quicwg/base-drafts] 5601eb: Update draft-ietf-quic-invariants.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/_hSCq8G27C9Wj0EF0OwVfohLL7w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:08 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5601eb00ee1d8b88d10e1a5e9f75c9899d602abf
      https://github.com/quicwg/base-drafts/commit/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>



From nobody Mon Jul  8 19:18:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 42EEC1202F8 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 HMcuDuI7rNud for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18: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 364A712024F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:13 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:18:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638692; bh=bWMfGo3x0MWIOCwS9ynSUNO6ForDsNWbY79BUVtcShw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vrBwTezExaGlcAGXQietU1ufFHKvoN7xQY+e5e86rWFhje0DDmfogcfl+ywFjKoOe DPDp/zCIzcY6dcXMjWSCbjL1LVuo83ftVWFFKWsnJdNfRj7YG3Id4FrwvxAz0fWGmh s084wuIPC5t19ddfkGAV3ONApbL6vUtYJKVfhC9E=
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/2877/push/3795575806@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f964195f_571c3fed2aacd968100867f"; 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/5VTULaYq33XAmaP-Y_ERguO97QY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:16 -0000

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

@ianswett pushed 1 commit.

5601eb00ee1d8b88d10e1a5e9f75c9899d602abf  Update draft-ietf-quic-invariants.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2877/files/b9f6425786a4a347ec926bac02c4b1631e15cdb9..5601eb00ee1d8b88d10e1a5e9f75c9899d602abf

----==_mimepart_5d23f964195f_571c3fed2aacd968100867f
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/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf">5601eb0</a>  Update draft-ietf-quic-invariants.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/2877/files/b9f6425786a4a347ec926bac02c4b1631e15cdb9..5601eb00ee1d8b88d10e1a5e9f75c9899d602abf?email_source=notifications&amp;email_token=AFTOJK5ZZTQ7OD6IBHSVIJLP6PYOJA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGU4DANQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52YME6AWUKBBEYWALP6PYOJANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK66B5I5DRFVXAJ2NW3P6PYOJA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGU4DANQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877/files/b9f6425786a4a347ec926bac02c4b1631e15cdb9..5601eb00ee1d8b88d10e1a5e9f75c9899d602abf?email_source=notifications\u0026email_token=AFTOJK5ZZTQ7OD6IBHSVIJLP6PYOJA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGU4DANQ",
"url": "https://github.com/quicwg/base-drafts/pull/2877/files/b9f6425786a4a347ec926bac02c4b1631e15cdb9..5601eb00ee1d8b88d10e1a5e9f75c9899d602abf?email_source=notifications\u0026email_token=AFTOJK5ZZTQ7OD6IBHSVIJLP6PYOJA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGU4DANQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23f964195f_571c3fed2aacd968100867f--


From nobody Mon Jul  8 19:18:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B42DC12024F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 1LVv-zgnkgaI for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18: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 0DAEC12008A for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:14 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:18:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638692; bh=8RiDhUa0wevSshT82LM1BaGHUxnKNKn5VtzcArQbjXA=; h=Date:From:To:Subject:From; b=1Esbbtxn7nHVFx/VAhRN4fnJ4GRFlSsgbAZ0ox9HjM6W5EGmZvENpmKJMrLc11IEF KsTkTXckP6O3wsAl6awzBqgKRncH4TdzzE/jzJvODRX+MzdUjAGOcXfKOM/adQUmzf BmfARO4KLv04uFsIu0wrblHiHnwxnKJ/m0kNiEqs=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/5601eb-a8a705@github.com>
Subject: [quicwg/base-drafts] a8a705: Update draft-ietf-quic-invariants.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/hK_hpO909nmRPNZji-MfOSu-a7A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:16 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: a8a705e0da6e8009c4b9a902ad0228b0f7b3c181
      https://github.com/quicwg/base-drafts/commit/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>



From nobody Mon Jul  8 19:18:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B5D2612008A for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 FGFnFJEFlxv4 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:21 -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 F2D8A120326 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:20 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:18:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638699; bh=4AaLD1pANOTGdj/0L/LeXb9UzlMriVkD72GnfKmgeTk=; h=Date:From:To:Subject:From; b=Nc8po9Es4bdmazgU7vaB6DnwvuNWdXM2E3F89YalAxtxXYNLq8nxX/5fv0Uo6CACy xb+r6Jcpelrs0mkxAxZalkTbkWe0KjBIexzgLfVrpGzfc81ZVHTULO4JWKvhbH81IZ 3qlRgWP5gM302hBrtn8RMqhUCiAjJiKx4+3B+RYM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/a8a705-49e721@github.com>
Subject: [quicwg/base-drafts] 49e721: Update draft-ietf-quic-invariants.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/P9bjsBM5CmYoLpZRA7F-pg0pPVY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:23 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: 49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd
      https://github.com/quicwg/base-drafts/commit/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>



From nobody Mon Jul  8 19:18:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A502F120307 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 eI8N7DvZbbeO for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18: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 AF6841202F8 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:21 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:18:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638700; bh=oGZ8FxyerJ7OL0ECZyD6r6adw0sfUEVccY59mj7XwNY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FI/aHtJBbZInz5QYnEHO7WvYyXVSV9g0nopuT/TgyjkiuBZ2GnmuNRGq+zgsYrtk5 3pvXRuDIc6rdIVUqo72VDRjmkNCyXvsEUgGLYVZWD0JAIfiN6/2LsiJ462uftoI864 YHfvpZ3qFRE3qmobPixdZ10R+1iOkIY9lOFM3nNo=
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/2877/push/3795576120@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f96c876fe_2bed3fd988acd96447673e"; 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/RyQ2ANNaIOXBIqf25cgqyBkePeM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:24 -0000

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

@ianswett pushed 1 commit.

a8a705e0da6e8009c4b9a902ad0228b0f7b3c181  Update draft-ietf-quic-invariants.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2877/files/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf..a8a705e0da6e8009c4b9a902ad0228b0f7b3c181

----==_mimepart_5d23f96c876fe_2bed3fd988acd96447673e
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/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181">a8a705e</a>  Update draft-ietf-quic-invariants.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/2877/files/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf..a8a705e0da6e8009c4b9a902ad0228b0f7b3c181?email_source=notifications&amp;email_token=AFTOJK7E6UAEZ7GEV54AGRTP6PYOZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYYTEMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5N4H5SVLTBS2GN4RDP6PYOZANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KYP42R4SYCGY622LP6PYOZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYYTEMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877/files/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf..a8a705e0da6e8009c4b9a902ad0228b0f7b3c181?email_source=notifications\u0026email_token=AFTOJK7E6UAEZ7GEV54AGRTP6PYOZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYYTEMA",
"url": "https://github.com/quicwg/base-drafts/pull/2877/files/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf..a8a705e0da6e8009c4b9a902ad0228b0f7b3c181?email_source=notifications\u0026email_token=AFTOJK7E6UAEZ7GEV54AGRTP6PYOZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYYTEMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23f96c876fe_2bed3fd988acd96447673e--


From nobody Mon Jul  8 19:18:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5904912032B for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 4Ld3dLdmi5RL for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18: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 6A27012024F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:28 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:18:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638707; bh=AelCEwGbSVeROIChvH7j1CwWxTert6P7pPINy9rXTSQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ctou2zWRppayEnSQUW1P2PiWAlyhifpMztuP1cdvdWLuUjBp6v/aF8FDpHSkEmlO0 KcvlSZe6hQsjDYTw3uGAxsZi0/3PzGmg8mbTHdasE4kuTUiB7rQdzBxPc5tX6RWn9c Ud+PLjZeqx68hdcxlxLxr/xYiRyr0AroRnSdgTVk=
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/2877/push/3795576348@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f97324478_15743fef4e0cd9608928b"; 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/Px2jZ79FOit4BjTr73snXYNspUc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:33 -0000

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

@ianswett pushed 1 commit.

49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd  Update draft-ietf-quic-invariants.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2877/files/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181..49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd

----==_mimepart_5d23f97324478_15743fef4e0cd9608928b
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/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd">49e721a</a>  Update draft-ietf-quic-invariants.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/2877/files/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181..49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd?email_source=notifications&amp;email_token=AFTOJK2UX4ZTXHCELAFUPCTP6PYPHA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYZTIOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6TC7NW6ZRO74N6W2LP6PYPHANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LUBDXTOTML4IZRW3P6PYPHA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYZTIOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877/files/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181..49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd?email_source=notifications\u0026email_token=AFTOJK2UX4ZTXHCELAFUPCTP6PYPHA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYZTIOA",
"url": "https://github.com/quicwg/base-drafts/pull/2877/files/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181..49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd?email_source=notifications\u0026email_token=AFTOJK2UX4ZTXHCELAFUPCTP6PYPHA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGYZTIOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23f97324478_15743fef4e0cd9608928b--


From nobody Mon Jul  8 19:18:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 00CCE1202F8 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 ohdmI6UrMx5T for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18: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 6B11812024F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:34 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:18:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562638713; bh=EymgkOm4CuEqerusZaxgtZO50CL011j0zsKmEfZwiUA=; h=Date:From:To:Subject:From; b=Y73WZD7DHV7qRjHfOPNwzAagCaSuapZR0LHhGsVRdRNB8RCEbWVu/meh2AtriAxal nl+tmjLbClkxz3QqE+HBjCkWe6P7ZZ21VDTHB1pFylXKt1ZkHYe63Xf6INvQd3NcGf HsCa5ZGhUrdOMkqjSufTAiMBFwWL23b1xlQEvndM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/49e721-553106@github.com>
Subject: [quicwg/base-drafts] 553106: 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/dM54ItZzZ5G3cBjhx-tCPD7it1s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:37 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: 553106c6343f699ea9dabe23df5e1cb06b6795a8
      https://github.com/quicwg/base-drafts/commit/553106c6343f699ea9dabe23df5e1cb06b6795a8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>



From nobody Mon Jul  8 19:18:56 2019
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 E1F0212034E for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.086
X-Spam-Level: 
X-Spam-Status: No, score=-0.086 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, PDS_NO_HELO_DNS=1.295, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=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 zEnfGHeAfdaJ for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:18:42 -0700 (PDT)
Received: from o5.sgmail.github.com (o5.sgmail.github.com [192.254.113.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C3FF4120311 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:18:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha1; 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=tBwQLiLJV4oHjhsKhHfwcrj1xKs=; b=tvvua4iMa2mC08wO 1tTZ2lt2O5USNScUtXwZhbEhpQzX8Z7vsr5YNC5bPtd55mFvc15e5mFlojXdfQR4 8+gPoDhTtGCf8OM7WSvrSPvrCKX8tS3e4Q+7mzAM+qLis+/DhHv/RjQAr/fVLAVp WLf74UKNZJJut+lqoyecqgQtGjc=
Received: by filter1503p1mdw1.sendgrid.net with SMTP id filter1503p1mdw1-22204-5D23F981-F 2019-07-09 02:18:41.808292262 +0000 UTC m=+972463.547438275
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) by ismtpd0047p1mdw1.sendgrid.net (SG) with ESMTP id NtraM1ERTJargXlqFe4Jhg for <quic-issues@ietf.org>; Tue, 09 Jul 2019 02:18:41.773 +0000 (UTC)
Date: Tue, 09 Jul 2019 02:18:41 +0000 (UTC)
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/2877/push/3795576801@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f98138774_5dfb3ffbdb0cd96c733964"; 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
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0NyXRH7cFuFmjIUbstgeXh/aVNFtKDuNyvHT DKsReYVZH1EbgrJfHZkyYFB15NDsfIJQju/EbZnvCuqBaMajQmUETPEXoe4jU9AwLqGtW1Wb+2fzdj 4G/fAgb5NjMPyKWvy4RbNb0H7Ak+JZ0LzTUA1e3qJQo/2QKi8HFiKVpuNw==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ogHFcjKPGjvIsp7LU8sfdw3MWhs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:18:44 -0000

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

@ianswett pushed 1 commit.

553106c6343f699ea9dabe23df5e1cb06b6795a8  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/2877/files/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd..553106c6343f699ea9dabe23df5e1cb06b6795a8

----==_mimepart_5d23f98138774_5dfb3ffbdb0cd96c733964
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/553106c6343f699ea9dabe23df5e1cb06b6795a8">553106c</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/2877/files/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd..553106c6343f699ea9dabe23df5e1cb06b6795a8?email_source=notifications&amp;email_token=AFTOJK4QVFSDLBPYYPKZBRTP6PYQDA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGY4DAMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYFVASDKNRG73U7YLDP6PYQDANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6N5RH2U4PQEV5LDJLP6PYQDA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGY4DAMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877/files/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd..553106c6343f699ea9dabe23df5e1cb06b6795a8?email_source=notifications\u0026email_token=AFTOJK4QVFSDLBPYYPKZBRTP6PYQDA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGY4DAMI",
"url": "https://github.com/quicwg/base-drafts/pull/2877/files/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd..553106c6343f699ea9dabe23df5e1cb06b6795a8?email_source=notifications\u0026email_token=AFTOJK4QVFSDLBPYYPKZBRTP6PYQDA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNJXGY4DAMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23f98138774_5dfb3ffbdb0cd96c733964--


From nobody Mon Jul  8 19:19:11 2019
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 9934912024F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:19:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.159
X-Spam-Level: 
X-Spam-Status: No, score=-0.159 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, PDS_NO_HELO_DNS=1.295, RCVD_IN_DNSWL_NONE=-0.0001, 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 JF0ghAJySG44 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:19:07 -0700 (PDT)
Received: from o3.sgmail.github.com (o3.sgmail.github.com [192.254.112.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 40D6012008A for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:19:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha1; 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=t9UQzpr8lr+LcmEuDwzdCMuj0qM=; b=FHUoqeJmE66Iq9N/ ThOV1a/4IW6tukJoojrS9dg3MMp0ssSoa+iVbmX4nBnBv0VDNfJ91kc+iUoebxKR CYGTZgV/RwtRAeisOpwLhwLwb/wlMZb4PVxIJxNJVArizranxAYzHAl1la2UD31d SigFW/p8L5Z6Cdc96e8MuEPfw8Q=
Received: by filter1211p1las1.sendgrid.net with SMTP id filter1211p1las1-25881-5D23F999-A 2019-07-09 02:19:05.837666116 +0000 UTC m=+608444.407650277
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) by ismtpd0033p1iad2.sendgrid.net (SG) with ESMTP id Yh9btARiTqaoPqvEj3FDxA for <quic-issues@ietf.org>; Tue, 09 Jul 2019 02:19:05.694 +0000 (UTC)
Date: Tue, 09 Jul 2019 02:19:06 +0000 (UTC)
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7VRAHYYNQWIA6T2FV3GEWBTEVBNHHBXP3RNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2877/c509460345@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23f99988de_48743f84d00cd96c829939"; 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
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0qMQ/OLaNNDqutAg7kdLExbvUb/J3aFkn24w LfH4i3EF7uCx1Y6qakj61c+qB5H/VQmDrSwSBjphw5Ru6gA2LakW1tEIwtZBVRBmFgMwzuxf3xW4CI DZmx6N3W+YI3ohfalQWqNKSSacdKWEpBHkBbntINBAlbjqVsaRiIuRe06Q==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I-gdQScjQlX6ctKLdWJw-5Uy-wI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:19:10 -0000

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

Suggestions accepted.

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

<p>Suggestions accepted.</p>

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


From nobody Mon Jul  8 19:34:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1CE6B1200E5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:34:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gQzpJqzacIFf for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:34:55 -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 2B9271200DB for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:34:55 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:34:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562639693; bh=pe6goAXPlVc6Yol1DslJ6gSO9kyaBGWDXUaiZStgx4Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WMnKgIt8Whp9T1sISyog7s9Z9XiHu9HmdDqJUELPdMeP2vd3k4a1QLL92UzyI0wiv RNUgGJYPucmR0utPVePEWkalnAdN3eAOEUZSM8YIg4ToUSjyCkRvxCf/PrK9iyUBL8 PB76Er3Xd/jevDRzT+oChnVEcG0Z7KNAOrJHe5rM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYKMTJRMTVSMYLRDDN3GEX43EVBNHHBXP3RNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2877/review/259243190@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23fd4dd07c3_2c0c3fd988acd9649468b"; 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/-tuk11EwTrfrDA0BNW23WHk5l3Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:34:57 -0000

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

martinthomson commented on this pull request.



> -
-The connection ID lengths are followed by two connection IDs.  The connection
-ID associated with the recipient of the packet (the Destination Connection ID)
-is followed by the connection ID associated with the sender of the packet (the
-Source Connection ID).
+The byte contains the length in bytes of the Destination Connection ID (see
+{{connection-id}}) field that follows it.  This length is encoded as an 8-bit
+unsigned integer.  The Destination Connection ID field follows the DCID Len
+field and is between 0 and 255 bytes in length.
+
+The byte following the Source Connection ID contains the length in bytes
+of the Source Connection ID field that follows it.  This length is encoded as
+a 8-bit unsigned integer.  The Source Connection ID field follows the SCID Len
+field and is between 0 and 255 bytes in length.
+
+{{negotiating-connection-ids}} describes the use of the source and destination

This is what is causing CI to fail.  This anchor is in a different document.

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

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2877#discussion_r301374117">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt; -
-The connection ID lengths are followed by two connection IDs.  The connection
-ID associated with the recipient of the packet (the Destination Connection ID)
-is followed by the connection ID associated with the sender of the packet (the
-Source Connection ID).
+The byte contains the length in bytes of the Destination Connection ID (see
+{{connection-id}}) field that follows it.  This length is encoded as an 8-bit
+unsigned integer.  The Destination Connection ID field follows the DCID Len
+field and is between 0 and 255 bytes in length.
+
+The byte following the Source Connection ID contains the length in bytes
+of the Source Connection ID field that follows it.  This length is encoded as
+a 8-bit unsigned integer.  The Source Connection ID field follows the SCID Len
+field and is between 0 and 255 bytes in length.
+
+{{negotiating-connection-ids}} describes the use of the source and destination
</pre>
<p>This is what is causing CI to fail.  This anchor is in a different document.</p>

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


From nobody Mon Jul  8 19:38:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 102271200E5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:38:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 Yyn1QOE21PM0 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:38: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 3B21A12008B for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:38:46 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:38:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562639924; bh=xk+gfGWSus13BpJb1lF/xIRSD+vb2gBi5vjGJeAAId8=; h=Date:From:To:Subject:From; b=gMr+vUhtarhM8gB2V4j7tnvl1dYwIyDwkrSy/HZOSG8hEXx4xDrbzF0n17YQozaWR cT4zB6rPbiSJZvmu/CHG6RDYm13K250EgRgLdjlldlH3za9LuYkirkxl3qHhqazho4 dBQtUPBAjdPmuivjufYkb7S/6HndY3yPxIliWoSA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/553106-4f3e69@github.com>
Subject: [quicwg/base-drafts] 4f3e69: Update draft-ietf-quic-invariants.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/UNWopMr399leEySKKK4JZslCvys>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:38:48 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4f3e69d0f1a126e7c420a1d5d01efca60f498276
      https://github.com/quicwg/base-drafts/commit/4f3e69d0f1a126e7c420a1d5d01efca60f498276
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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



From nobody Mon Jul  8 19:38:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8E6281200E5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:38:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 ffwIaO1u3pHO for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:38: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 96C7712008B for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:38:53 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:38:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562639932; bh=r0PCF0f+5GzLMZHZMAnChOb0v8kJmVme9mMvAJRt844=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dY+/PciHzaqrB0eQPHKyeLQgj1jHjmvrBF2L0/4UZ34eZhcoWTgIxVwBc9cD88d5t iRbgittwhcedrjPnz3wDW6nBnC2r367UnJNvuXMpv7OlnaRKZpK2gbpmhP/yi01bSi /09aFk8l1We9v4wOQCs/YSlErzQNq9+5U0UtyIW0=
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/2877/push/3795617026@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d23fe3c492da_38b03fec4f4cd9687696b4"; 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/e_feKmaUM2N2WKtrjOiNCkFmTQ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:38:56 -0000

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

@ianswett pushed 1 commit.

4f3e69d0f1a126e7c420a1d5d01efca60f498276  Update draft-ietf-quic-invariants.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2877/files/553106c6343f699ea9dabe23df5e1cb06b6795a8..4f3e69d0f1a126e7c420a1d5d01efca60f498276

----==_mimepart_5d23fe3c492da_38b03fec4f4cd9687696b4
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/4f3e69d0f1a126e7c420a1d5d01efca60f498276">4f3e69d</a>  Update draft-ietf-quic-invariants.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/2877/files/553106c6343f699ea9dabe23df5e1cb06b6795a8..4f3e69d0f1a126e7c420a1d5d01efca60f498276?email_source=notifications&amp;email_token=AFTOJK4AHFVY2BIK642D2J3P6P23ZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNRRG4YDENQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VWK5ZEH2TSAWZLUDP6P23ZANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QZOJEFAUUEDCMIADP6P23ZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNRRG4YDENQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877/files/553106c6343f699ea9dabe23df5e1cb06b6795a8..4f3e69d0f1a126e7c420a1d5d01efca60f498276?email_source=notifications\u0026email_token=AFTOJK4AHFVY2BIK642D2J3P6P23ZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNRRG4YDENQ",
"url": "https://github.com/quicwg/base-drafts/pull/2877/files/553106c6343f699ea9dabe23df5e1cb06b6795a8..4f3e69d0f1a126e7c420a1d5d01efca60f498276?email_source=notifications\u0026email_token=AFTOJK4AHFVY2BIK642D2J3P6P23ZA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TKNRRG4YDENQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d23fe3c492da_38b03fec4f4cd9687696b4--


From nobody Mon Jul  8 19:40:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D79581200E5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:40:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Zxkb6VVJcoIh for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 19:40: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 D033A12008B for <quic-issues@ietf.org>; Mon,  8 Jul 2019 19:39:59 -0700 (PDT)
Date: Mon, 08 Jul 2019 19:39:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562639998; bh=TVyn+ZTFxwUHvw/1aW+Z/cZOBQwbt7LXt0Ai1SRTjoI=; h=Date:From:To:Subject:From; b=LJ+1HvZ5+Xbl0VlycXb0hDcxUpTZgd9PXy6/wS4yQQBh2aMVaGDeieLnpbxGzYvBx WYgM8MNbaIy6ti0Oo5HHi3deppJyfwcJHQ6JNqasPOthrQohFB3PzkJDOF2V8O2gtn 8FxJYs8L5SMkq5tvMr2QEyB77j+J0BduM8/D0rl4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/928d3c-db4b61@github.com>
Subject: [quicwg/base-drafts] db4b61: Script updating gh-pages from 4f3e69d0. [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/iV96FnDEMLtBd3XHSbBCkV7udVo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 02:40:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: db4b61b4cd2cfa4ecf41ec5867cdb0db89bce69b
      https://github.com/quicwg/base-drafts/commit/db4b61b4cd2cfa4ecf41ec5867cdb0db89bce69b
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-2479/draft-ietf-quic-invariants.html
    M ianswett-2479/draft-ietf-quic-invariants.txt
    M ianswett-2479/draft-ietf-quic-transport.html
    M ianswett-2479/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Mon Jul  8 20:36:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 847D21200EB for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:36:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 eMdLHcUratGc for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:36:35 -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 1D1E91200DB for <quic-issues@ietf.org>; Mon,  8 Jul 2019 20:36:35 -0700 (PDT)
Date: Mon, 08 Jul 2019 20:36:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562643393; bh=cgQehcijN0/dStjB0m/hHBonVkeBC5/FgCFVUc/PAe0=; h=Date:From:To:Subject:From; b=u6xKFHNTOpwrcJORoxlBjCsqjk8gwkYOyakHjxbbZ6QYy6fRnx2ENsIH987oNavce HiYFQYO2flPL+hUAIY2Tr8lC5eIt6wPv77ocJqVQVBJtX7gWCfNo2uHeCjHMT7MtZi V4KyHM9BstUWKuwUO7PhCvJvSPrIYp7OeNJMH/7g=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/000000-55e318@github.com>
Subject: [quicwg/base-drafts] 55e318: Update draft-ietf-quic-tls.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/qiDkNU4oEvrCY-Si-BjoZ0bSeso>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 03:36:37 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 55e3184c27aa2424924ab0f9548a15d6e42edb0e
      https://github.com/quicwg/base-drafts/commit/55e3184c27aa2424924ab0f9548a15d6e42edb0e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Alternate PR to #2870



From nobody Mon Jul  8 20:37:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F06F41200F1 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:37:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 7AAWZUOLbIt3 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:37: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 248701200EB for <quic-issues@ietf.org>; Mon,  8 Jul 2019 20:37:46 -0700 (PDT)
Date: Mon, 08 Jul 2019 20:37:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562643464; bh=BuYFhqhaQSlT0hFWXKw/Qs4gb0+ZhKox6vKXuKqcP5U=; h=Date:From:To:Subject:From; b=ymtTUR+3a3yqFliYs27QctcsYdexn76qZddqfsYEa6/dDNodzulCTRAXTyR0Q/rcx u0y9Dtgs27K0odmRzN1MWI+U6vCTv+aOxvzL8QOfbUAaBtOa4MdoeEWr/TFOTYx1Ws zTFrXsOaQGGogHrCKz0b8qN6b8YCtWL2KqYk0GY0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/db4b61-bcf60d@github.com>
Subject: [quicwg/base-drafts] bcf60d: Script updating gh-pages from 55e3184c. [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/xLv4elnDJsVmOZaQ53YpRj54xmk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 03:37:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bcf60dc1edd69f27711a768e5c62352e7aad6242
      https://github.com/quicwg/base-drafts/commit/bcf60dc1edd69f27711a768e5c62352e7aad6242
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    A ianswett-initial-secrets-constant/draft-ietf-quic-http.html
    A ianswett-initial-secrets-constant/draft-ietf-quic-http.txt
    A ianswett-initial-secrets-constant/draft-ietf-quic-invariants.html
    A ianswett-initial-secrets-constant/draft-ietf-quic-invariants.txt
    A ianswett-initial-secrets-constant/draft-ietf-quic-qpack.html
    A ianswett-initial-secrets-constant/draft-ietf-quic-qpack.txt
    A ianswett-initial-secrets-constant/draft-ietf-quic-recovery.html
    A ianswett-initial-secrets-constant/draft-ietf-quic-recovery.txt
    A ianswett-initial-secrets-constant/draft-ietf-quic-tls.html
    A ianswett-initial-secrets-constant/draft-ietf-quic-tls.txt
    A ianswett-initial-secrets-constant/draft-ietf-quic-transport.html
    A ianswett-initial-secrets-constant/draft-ietf-quic-transport.txt
    A ianswett-initial-secrets-constant/index.html
    M index.html

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



From nobody Mon Jul  8 20:38:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 27B171200EB for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:38:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 5y1AU8F8wxR6 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:38: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 F3B001200F5 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 20:38:19 -0700 (PDT)
Date: Mon, 08 Jul 2019 20:38:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562643498; bh=/npHXEZbyts9EyO0geOArfez7qkhR07Fu/XnG8yBr+8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=u/xRKhGAN4NLP8qgw1C4ec56weSdRjoHhxIgfGNN8+quFe9KIFK3noP6DRIh7KoO2 CDvUkyHKiwUOATmIV7NIb0ZA4SwBev9oniP3ee15hsxFbMP4l4oimqVB7K+FoWBpBt dz50bzWWZbTyYB4WGFfI5YGlPwrPUF3bdxm+9H2Y=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZM4WIJQCLMPBWVO6N3GE7KVEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878@github.com>
Subject: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d240c2a42000_576f3fc428ccd964781866"; 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/ENvnS9CPFQy3V8PDR9cnb2LLlxY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 03:38:22 -0000

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

Alternate PR to #2870 

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

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

-- Commit Summary --

  * Update draft-ietf-quic-tls.md

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2878.patch
https://github.com/quicwg/base-drafts/pull/2878.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/2878

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

<p>Alternate PR to <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="463570270" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2870" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2870/hovercard" href="https://github.com/quicwg/base-drafts/pull/2870">#2870</a></p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2823.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458884091" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2823" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2823/hovercard" href="https://github.com/quicwg/base-drafts/issues/2823">#2823</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/2878'>https://github.com/quicwg/base-drafts/pull/2878</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update draft-ietf-quic-tls.md</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2878.patch'>https://github.com/quicwg/base-drafts/pull/2878.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2878.diff'>https://github.com/quicwg/base-drafts/pull/2878.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/2878?email_source=notifications&amp;email_token=AFTOJK7L6GBS7VQUCS7LTSLP6QB2VA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57YQHA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4DZJ2PQDRFAFSRWHLP6QB2VANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2EGZYQZXDFJWNWP73P6QB2VA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57YQHA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK7L6GBS7VQUCS7LTSLP6QB2VA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57YQHA",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK7L6GBS7VQUCS7LTSLP6QB2VA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G57YQHA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d240c2a42000_576f3fc428ccd964781866--


From nobody Mon Jul  8 20:42:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 48FB21200EB for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:42:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yh5O7iQ2uE_r for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:41: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 804791200DB for <quic-issues@ietf.org>; Mon,  8 Jul 2019 20:41:59 -0700 (PDT)
Date: Mon, 08 Jul 2019 20:41:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562643717; bh=BmBJMuj4s+Hqdo0tApJdorwCuOkAttXjThKdWFOgTJs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EPQc1cXlIYKmIJaUOHvbNj3SZsie87p9sIo7g6nih28jBjS+gnSY294kwe3d/UpzZ T3RT9YTexn5KFazL+CEW1dMPjVowm2a607tTb8qs4iOQYAa+qjv2eC2NevqiTj/25G I/u2v2p7huNEE7mGTmQ8AlJVbOyTnmoHFiE+EPYc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZXF4TBXZ73LHBBXF3GE7YLEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/259255374@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d240d0596aa0_5df13ffbdb0cd96c86847f"; 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/rasJFsZyXC7DP0JmIjN_IgQF-zs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 03:42:01 -0000

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

martinthomson commented on this pull request.

I actually like this, but the intent of #2870 was to document the status quo.  If we do this (we should), then it probably also makes sense to describe the consequences for a stateless Retry.  That is not 100% obvious and probably needs a little bit of guidance.

> @@ -804,6 +803,9 @@ modifying the contents of packets from future versions.
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
 packets even where the TLS versions offered do not include TLS 1.3.
 
+The secrets used for protecting Initial packets do not change during the
+connection, even after receiving a Retry.
+
 {{test-vectors-initial}} contains test vectors for the initial packet
 encryption.
 

Just down here (vv) there is a note that needs to be removed also.

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

<p><b>@martinthomson</b> commented on this pull request.</p>

<p>I actually like this, but the intent of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="463570270" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2870" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2870/hovercard" href="https://github.com/quicwg/base-drafts/pull/2870">#2870</a> was to document the status quo.  If we do this (we should), then it probably also makes sense to describe the consequences for a stateless Retry.  That is not 100% obvious and probably needs a little bit of guidance.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2878#discussion_r301384833">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -804,6 +803,9 @@ modifying the contents of packets from future versions.
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
 packets even where the TLS versions offered do not include TLS 1.3.
 
+The secrets used for protecting Initial packets do not change during the
+connection, even after receiving a Retry.
+
 {{test-vectors-initial}} contains test vectors for the initial packet
 encryption.
 
</pre>
<p>Just down here (vv) there is a note that needs to be removed also.</p>

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


From nobody Mon Jul  8 20:47:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E248D1200EB for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:47:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 vQndI7nXVE5v for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:47: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 5D4B31200FD for <quic-issues@ietf.org>; Mon,  8 Jul 2019 20:47:43 -0700 (PDT)
Date: Mon, 08 Jul 2019 20:47:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562644062; bh=7rr2SxyD0n+qyKpBS8xyzPJI5U1cue42N6wLB78IfMA=; h=Date:From:To:Subject:From; b=g0Hlb1k4qMESD04lQcurK3atdeusum5fCjZMg7Jhhu+MJvlcZIL4AB9nAo12kWvYN y7boiwkAQhp08t/w4K0b3nZz0l8hD2obWFLztWiOLtGwIiNQHVNpfPJTC0q0F+eZ8W rPB6bzu1/1Hg3Nj+lMN4CLq3XJ32oqY4kwGFvSjA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/55e318-1ce0a2@github.com>
Subject: [quicwg/base-drafts] 1ce0a2: 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/dd9r2yrz9ZvSfNXH3MpzizLZNM0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 03:47:45 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7
      https://github.com/quicwg/base-drafts/commit/1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Remove original_connection_id from transport



From nobody Mon Jul  8 20:47:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0725A1200F5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:47:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 Q8dyvWjoBCuv for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:47: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 02BE31200EB for <quic-issues@ietf.org>; Mon,  8 Jul 2019 20:47:52 -0700 (PDT)
Date: Mon, 08 Jul 2019 20:47:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562644070; bh=zuxh/Px0HNWjnaquypc7BQucHMPapL8XOokCb/hxNHk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZavgUZj6vtP91VSp9X6Hzsv9T1/8cuRwvReZDnYXuaTRN+XtxuhvhzDD7WxI1H9zP ULeNHQ0nCNCMlhXAAjMqXr4IfOsTyltwodaMHPUby4wsgVar1SrBt/Oufc/bazkRHU 9AFHbF8DLiNzatdsbvpMzA3URSphruipU+vp1FeQ=
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/2878/push/3795753738@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d240e669e048_14813fe74f2cd9601853869"; 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/QJuIbEDIuAwkbc1RDoZ1Qgg6IV8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 03:47:54 -0000

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

@ianswett pushed 1 commit.

1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7  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/2878/files/55e3184c27aa2424924ab0f9548a15d6e42edb0e..1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7

----==_mimepart_5d240e669e048_14813fe74f2cd9601853869
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/1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7">1ce0a2e</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/2878/files/55e3184c27aa2424924ab0f9548a15d6e42edb0e..1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7?email_source=notifications&amp;email_token=AFTOJK3UCHSNHQTRB345TTLP6QC6NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TKNZVGM3TGOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZK2KM6MURYLNYDPGTP6QC6NANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZXLDYFLPD62RBHA53P6QC6NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TKNZVGM3TGOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878/files/55e3184c27aa2424924ab0f9548a15d6e42edb0e..1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7?email_source=notifications\u0026email_token=AFTOJK3UCHSNHQTRB345TTLP6QC6NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TKNZVGM3TGOA",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/55e3184c27aa2424924ab0f9548a15d6e42edb0e..1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7?email_source=notifications\u0026email_token=AFTOJK3UCHSNHQTRB345TTLP6QC6NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TKNZVGM3TGOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d240e669e048_14813fe74f2cd9601853869--


From nobody Mon Jul  8 20:49:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2AB101200F8 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:49:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4aaGzb7nf5fV for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 20:48:58 -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 8377F1200F5 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 20:48:58 -0700 (PDT)
Date: Mon, 08 Jul 2019 20:48:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562644137; bh=XLNznduMmSjB4uwkuJdiYbb2deNqIs+IM8RJLjgd7u0=; h=Date:From:To:Subject:From; b=jiX+UyMvSYqelGdbGUGm/ZexJ+HfRGYQO6gI6b9Q+SZmVr+puCjkbZ3KuxV1cHNcC lcMFbnUfQEqty6/w6ghhvXv1d/srKRhC29M+zUOw8gQa0ly+YB2Om3VZmV2doOV90g RAqos1HysKg4Sq/wtNo4+LUyOpgR0AjKAE2ytpoo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bcf60d-747da3@github.com>
Subject: [quicwg/base-drafts] 747da3: Script updating gh-pages from 1ce0a2e6. [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/A2VS4qdHHBdK21rkV4YhEAej2GM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 03:49:00 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 747da3d40a374b12e72c847c4e42664db794eebe
      https://github.com/quicwg/base-drafts/commit/747da3d40a374b12e72c847c4e42664db794eebe
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Mon Jul  8 21:08:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CBD201200FD for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:07:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iZvBcbIwQwEK for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:07:58 -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 DDFE31200F3 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 21:07:57 -0700 (PDT)
Date: Mon, 08 Jul 2019 21:07:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562645276; bh=elUFnj72555S1A0SNrqGLm0oMCwO68ZVI3FexDbiZMo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SEzcSIB4DP4+/ojR15KX2b3ZOq7mb377tDkN56wZ1RyFa6NSZ/gDLSUYtEaRdVTeV gwhLd3C+Sz2koV/Ouq9ec7DVnO7eKaScvFgTQDywL5mkMU6n1H2WGAccASHzSFXBCn V03rToKj7CDQygc1XAiU53/F4rzQWVoVhQJbZfTU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEYBTGI4EMT2BUFOV3GFCZZEVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873/review/259260155@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24131cc67d9_73253f980b4cd9607942ce"; 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/TC-alA-CW-iPuyANaO9YEYPyDPk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 04:08:00 -0000

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

martinthomson requested changes on this pull request.

This looks good to me, with one omission.

(BTW, thanks for fixing the xref, I would not have and even Julian's tools wouldn't have found that.)

Can you update the IANA considerations section 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/pull/2873#pullrequestreview-259260155
----==_mimepart_5d24131cc67d9_73253f980b4cd9607942ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> requested changes on this pull request.</p>

<p>This looks good to me, with one omission.</p>
<p>(BTW, thanks for fixing the xref, I would not have and even Julian's tools wouldn't have found that.)</p>
<p>Can you update the IANA considerations section 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/pull/2873?email_source=notifications&amp;email_token=AFTOJK6KDIWKFEK3EFHZIX3P6QFJZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5Z756Y#pullrequestreview-259260155">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2AATI5UIL67IFVRNTP6QFJZANCNFSM4H6KZHXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY7JR3YXOI2ZESAYALP6QFJZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5Z756Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJK6KDIWKFEK3EFHZIX3P6QFJZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5Z756Y#pullrequestreview-259260155",
"url": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJK6KDIWKFEK3EFHZIX3P6QFJZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB5Z756Y#pullrequestreview-259260155",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24131cc67d9_73253f980b4cd9607942ce--


From nobody Mon Jul  8 21:17:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A962912023F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:17:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 vmepI1RVJCcJ for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:17:37 -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 5841A1200FD for <quic-issues@ietf.org>; Mon,  8 Jul 2019 21:17:37 -0700 (PDT)
Date: Mon, 08 Jul 2019 21:17:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562645856; bh=WEanA5hGY7eQZyq/pqniaB5mUHbKjkiA6qaCIs8NUiE=; h=Date:From:To:Subject:From; b=BcBJ7jUXZkufZZGf4ApEIFwVN2/0M/rcPHs3DgdRLQeHsxlCCkW9H5tpYZg+YR6m7 8tSqVq8FUSiHQA4muGWsTB9g6dHTlR0hxisiAtehoUNTsc9VasSVAEWYP3GMcQGQGy vg4fgBtNAxwHXnDqsgkH2fx6dKXntYMg98xTQ5rw=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/close2205/000000-839f79@github.com>
Subject: [quicwg/base-drafts] 839f79: Add note about stale ACK frames breaking ECN
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dM77C6DVHlUAiSe7prAa8i9Uc8c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 04:17:48 -0000

  Branch: refs/heads/close2205
  Home:   https://github.com/quicwg/base-drafts
  Commit: 839f7910ed945c86d442d3fbdc9526f65935fb43
      https://github.com/quicwg/base-drafts/commit/839f7910ed945c86d442d3fbdc9526f65935fb43
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Add note about stale ACK frames breaking ECN



From nobody Mon Jul  8 21:18:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1D95C120112 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:18:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 iLeNIBqOgH0S for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:18: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 379D512023F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 21:18:11 -0700 (PDT)
Date: Mon, 08 Jul 2019 21:18:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562645890; bh=kPFOVvQ8L5k7s45nybDo7euaDpF1N5QnaK11zpFBo9s=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=g0UAqouBKlcxp0PIafvvFhoj+3tFv5fRBeW4cbv+S+dDYvD1iUc8wJdS8/UBHLQrU NftHjwf5HQ+54sVTVbC8PP00t4ed1sB+8bhD1GkCsbmYmmEOj5PTJrp9t3X/ccM2Vl MFY775qxxAp85ODMOr2Oh8srobVsq6LgzrkdO5/M=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZO27FTGGSPRTA2QFV3GFEAFEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879@github.com>
Subject: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24158212e3b_26773fc7c08cd96813217b0"; 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/6fVslFaGvLQ02Uv6bwxemTabbxk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 04:18:13 -0000

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

Closes #2205.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Add note about stale ACK frames breaking ECN

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2879.patch
https://github.com/quicwg/base-drafts/pull/2879.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/2879

----==_mimepart_5d24158212e3b_26773fc7c08cd96813217b0
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 #2205.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="392359315" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2205" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2205/hovercard" href="https://github.com/quicwg/base-drafts/issues/2205">#2205</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/2879'>https://github.com/quicwg/base-drafts/pull/2879</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add note about stale ACK frames breaking ECN</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2879.patch'>https://github.com/quicwg/base-drafts/pull/2879.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2879.diff'>https://github.com/quicwg/base-drafts/pull/2879.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/2879?email_source=notifications&amp;email_token=AFTOJK7HI7V4G4H23DM7JPLP6QGQFA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G574NZA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7BHT6TVTN2CKMLX53P6QGQFANCNFSM4H7BMUZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5IGZF26U33ZMP3ZRLP6QGQFA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G574NZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2879?email_source=notifications\u0026email_token=AFTOJK7HI7V4G4H23DM7JPLP6QGQFA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G574NZA",
"url": "https://github.com/quicwg/base-drafts/pull/2879?email_source=notifications\u0026email_token=AFTOJK7HI7V4G4H23DM7JPLP6QGQFA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G574NZA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d24158212e3b_26773fc7c08cd96813217b0--


From nobody Mon Jul  8 21:18:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B227B12023F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:18:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K5qfYmms_wuT for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:18:45 -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 7049B1200F3 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 21:18:45 -0700 (PDT)
Date: Mon, 08 Jul 2019 21:18:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562645924; bh=5oYlmqP9jQivaDmAvDCCuRefHNs+Y6NcjtqVPROSAyA=; h=Date:From:To:Subject:From; b=k3udwlQ7E65oHNg+IA/pJFjzIZMzp7u3+N2WvTwYW5r4k7A3XYaTX2J244eK9fnCw ULgffyOXOjcyENAhtC9cc3FD6r2ZD/80bp1KQ5EVVGuBzBQGW0TdCB0FODmnv8EStB fAXi5xebzhytrYfBsodnTEaUIs+dVCuGEZdlbFX8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/747da3-8dc955@github.com>
Subject: [quicwg/base-drafts] 8dc955: Script updating gh-pages from 839f7910. [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/3xte30ExtrPUmhmEFSTwohm8NpQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 04:18:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8dc955577c26380b5a0887062bdbd987972ca3a3
      https://github.com/quicwg/base-drafts/commit/8dc955577c26380b5a0887062bdbd987972ca3a3
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Mon Jul  8 21:22:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E6A8912024E for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:22:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lITInxKc20mo for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:22: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 5C0C712023F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 21:22:49 -0700 (PDT)
Date: Mon, 08 Jul 2019 21:22:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562646168; bh=/Gpr32fYkDoxSpF2Ltcjv6pBcMwazj/RdvPTzpJz+cA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o0RZixdfe9911q5MhDyuHV7qwPKR0Ik/6HZHt+HPEbNyPPn6srrq9SZETms4CwNuT KazZnhxu2BswoHZZER7e6QgQHtV3xG9K3zcnuPEEtp3x3fxbu3r8FCiEqCXjJccE0m nuzBUC3P5YP7RKxPOU3C6UP2Ki5SJz0q2QHKQYFg=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46NM6OPJGSZGBT2EF3GFERREVBNHHBOYXNSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2205/509481399@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2205@github.com>
References: <quicwg/base-drafts/issues/2205@github.com>
Subject: Re: [quicwg/base-drafts] Largest acked in ACK frame MUST NOT decrease (#2205)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2416981e02b_57733fc428ccd9641284896"; 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/geJuSKCvs-ZcT7_irDy8pB802nU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 04:22:51 -0000

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

I've added #2879, which I believe addresses what's left of this 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/2205#issuecomment-509481399
----==_mimepart_5d2416981e02b_57733fc428ccd9641284896
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I've added <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465560434" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2879" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2879/hovercard" href="https://github.com/quicwg/base-drafts/pull/2879">#2879</a>, which I believe addresses what's left of this 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/2205?email_source=notifications&amp;email_token=AFTOJKYCECNQPL557PYEVELP6QHBRA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPBDNY#issuecomment-509481399">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NNSDO2ZOTW3RPJ23P6QHBRANCNFSM4GLEXF3Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4YGYIUVREHMZPPQ3DP6QHBRA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPBDNY.gif" height="1" width="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/2205?email_source=notifications\u0026email_token=AFTOJKYCECNQPL557PYEVELP6QHBRA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPBDNY#issuecomment-509481399",
"url": "https://github.com/quicwg/base-drafts/issues/2205?email_source=notifications\u0026email_token=AFTOJKYCECNQPL557PYEVELP6QHBRA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPBDNY#issuecomment-509481399",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2416981e02b_57733fc428ccd9641284896--


From nobody Mon Jul  8 21:28:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3FB331200FD for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:28:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qcGndzUjSXl5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 21:28: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 AC00112023F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 21:28:13 -0700 (PDT)
Date: Mon, 08 Jul 2019 21:28:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562646492; bh=2HxrNiEpXBPUcXfRWibCiljGKnR5CcgADr9pZ3Z9F1A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aoC9oPvGxEJa1RzBMl4tuxkdD/lQ3dmXOfz/AXZffEy2MJDuK3HCZa2ageS4KRchS FTNoczDMQHREFBbXWgOognSAm8/LiFF2IQO7xU1ruKK58JlBgXM7t+Ov7YbFptuCyO M1kX/7YHjkoQcMqg3apTs2QfoSGBwOBr6LyEbBTI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CT3XDMIRYAHBHKF53GFFFZEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/259262482@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2417dc58350_32f3fd988acd964107321e"; 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/Y84SwxML2MwVt7Ez63ituuSIbro>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 04:28:17 -0000

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

martinthomson commented on this pull request.

I don't think that the conditions are quite right here.

> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

```suggestion
acknowledge any new packets. Validating ACK frames in those conditions can result in
```

> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

Question: is it possible to skip validation based on just one of these conditions?  I think that only the packet number condition is really necessary.

Rationale: Say I ACK 1-4 then later drop that range (for any reason) and ACK 5-9 in another packet.  If those packets get reordered, then when the first eventually arrives, it will have new acknowledgments, but it will still have bad ECN counts.  So you can't say that new acknowledgments is necessary.

The packet number is clearly the thing to use - and sufficient on its own - but would it be enough to look for increases in largest acknowledged?  ACK processors should not be expected to have access to packet numbers.  Allowing implementations to use largest acknowledged would depend on us not allowing that to regress, but that seems like it follows from existing advice.

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

<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>I don't think that the conditions are quite right here.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2879#discussi=
on_r301390721">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than=
 the number of packets acknowledged in an ACK frame.  When=0D
 this happens, and if verification succeeds, the local reference counts M=
UST be=0D
 increased to match the counts in the ACK frame.=0D
 =0D
-Processing counts out of order can result in verification failure.  An e=
ndpoint=0D
-SHOULD NOT perform this verification if the ACK frame is received in a p=
acket=0D
-with packet number lower than a previously received ACK frame.  Verifyin=
g based=0D
-on ACK frames that arrive out of order can result in disabling ECN=0D
-unnecessarily.=0D
+Processing counts out of order can result in verification failure.  This=
 can=0D
+happen when packets containing ACK frames are reordered in the network, =
or if a=0D
+sender retransmits an ACK frame with stale information.  An endpoint SHO=
ULD NOT=0D
+perform this verification if the ACK frame is received in a packet with =
packet=0D
+number lower than a previously received ACK frame or if the ACK frame do=
es not=0D
+acknowledge any new packets. ACK frames that arrive out of order can res=
ult in=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-acknowledge any new packets. ACK frames that =
arrive out of order can result in=0D
+acknowledge any new packets. Validating ACK frames in those conditions c=
an result in=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2879#discussi=
on_r301391558">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than=
 the number of packets acknowledged in an ACK frame.  When=0D
 this happens, and if verification succeeds, the local reference counts M=
UST be=0D
 increased to match the counts in the ACK frame.=0D
 =0D
-Processing counts out of order can result in verification failure.  An e=
ndpoint=0D
-SHOULD NOT perform this verification if the ACK frame is received in a p=
acket=0D
-with packet number lower than a previously received ACK frame.  Verifyin=
g based=0D
-on ACK frames that arrive out of order can result in disabling ECN=0D
-unnecessarily.=0D
+Processing counts out of order can result in verification failure.  This=
 can=0D
+happen when packets containing ACK frames are reordered in the network, =
or if a=0D
+sender retransmits an ACK frame with stale information.  An endpoint SHO=
ULD NOT=0D
+perform this verification if the ACK frame is received in a packet with =
packet=0D
+number lower than a previously received ACK frame or if the ACK frame do=
es not=0D
+acknowledge any new packets. ACK frames that arrive out of order can res=
ult in=0D
</pre>=0D
<p>Question: is it possible to skip validation based on just one of these=
 conditions?  I think that only the packet number condition is really nec=
essary.</p>=0D
<p>Rationale: Say I ACK 1-4 then later drop that range (for any reason) a=
nd ACK 5-9 in another packet.  If those packets get reordered, then when =
the first eventually arrives, it will have new acknowledgments, but it wi=
ll still have bad ECN counts.  So you can't say that new acknowledgments =
is necessary.</p>=0D
<p>The packet number is clearly the thing to use - and sufficient on its =
own - but would it be enough to look for increases in largest acknowledge=
d?  ACK processors should not be expected to have access to packet number=
s.  Allowing implementations to use largest acknowledged would depend on =
us not allowing that to regress, but that seems like it follows from exis=
ting advice.</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/2879?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKZHE27PA3GUX5FV6UTP6QHVZA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52AQEQ#pullrequestreview-259262482=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK3YE7TTT227TGCT7RDP6QHVZANCNFSM4H7BMUZQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZWV3YL=
DNHCCPHW6ADP6QHVZA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB52AQEQ.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/2879?email_source=3D=
notifications\u0026email_token=3DAFTOJKZHE27PA3GUX5FV6UTP6QHVZA5CNFSM4H7B=
MUZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
52AQEQ#pullrequestreview-259262482",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2879?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZHE27PA3GUX5FV6UTP6QHVZA5CNFSM4H7BMU=
Z2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52=
AQEQ#pullrequestreview-259262482",=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_5d2417dc58350_32f3fd988acd964107321e--


From nobody Mon Jul  8 22:05:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2922312023F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:05:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aKLW4p42JqNY for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:05:10 -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 2A372120100 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:05:10 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:05:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562648708; bh=KXh1b6e4IMddb2h5jIjgxPGEawQLJ0uVpgxnbRzPltA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VTQM5DWqisfgy6e2iGZQBQgfa676N2dG0Fh114xi0/QscDVF5b5yeXAojBRqhXNCB 1cZc+43QHzUTGnIcDnwGJzycC3vLPlc4JUV0n28O6hCTV7gd2BCIuXD4xqSg7dX+wC KhmCdn1diwi5vATX8j8KB0SiaOIAdVP5EO5RJgaw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CDTXAP7B6KEVWPZV3GFJQJEVBNHHBOYXNSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2205/509489534@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2205@github.com>
References: <quicwg/base-drafts/issues/2205@github.com>
Subject: Re: [quicwg/base-drafts] Largest acked in ACK frame MUST NOT decrease (#2205)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d242084c05e6_73493f980b4cd9601257635"; 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/p_HOUmA61LvDHdLGcw1Z1zPziEI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:05:12 -0000

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

Note that we agreed that proposal-ready would be used when there were approvals for PRs (or at least apparent agreement, as determined by editors).

-- 
You are receiving 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/2205#issuecomment-509489534
----==_mimepart_5d242084c05e6_73493f980b4cd9601257635
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Note that we agreed that proposal-ready would be used when there were approvals for PRs (or at least apparent agreement, as determined by editors).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2205?email_source=notifications&amp;email_token=AFTOJK224ZFUXW53H6ETCRDP6QMAJA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPDC7Q#issuecomment-509489534">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYEGW4N2M6HAFQ4MB3P6QMAJANCNFSM4GLEXF3Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK62EOPBITD7WJ53H4TP6QMAJA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPDC7Q.gif" height="1" width="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/2205?email_source=notifications\u0026email_token=AFTOJK224ZFUXW53H6ETCRDP6QMAJA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPDC7Q#issuecomment-509489534",
"url": "https://github.com/quicwg/base-drafts/issues/2205?email_source=notifications\u0026email_token=AFTOJK224ZFUXW53H6ETCRDP6QMAJA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPDC7Q#issuecomment-509489534",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d242084c05e6_73493f980b4cd9601257635--


From nobody Mon Jul  8 22:08:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D074D1201D0 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:08:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jbUwNcvGH-X0 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:08:14 -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 C0137120352 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:08:13 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:08:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562648892; bh=sUqSgdn20qgNq39lHJ5+ohC7Wxw6qd+HEO/2bb0+olc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SeKl8a5Hfkwi3r4HdIL/VTqRDGF2VxsmF57yteu62S37aiDHIXd8ZwRu4OMMpscTL CCHySpMT/3dqBwL82PL6UQUmBO7w6duitbbYB+YP4487CSpTBMu8Ic5go8Y6eeZ+Ru erzKenyQDaedqjEKgVZsg2wMFmn614LnU7h4rQ7c=
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/2873/push/3795904678@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24213caa4b6_5a303fc7c08cd9681916675"; 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/_1yvaQs4xzA2Bge4H5qJqkqQsdo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:08:16 -0000

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

@marten-seemann pushed 1 commit.

e418cedfff73b14a56ec8906b3f7c463cecafd99  add IANA considerations


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2873/files/065ba73a6e1ce530b60ebee732d151c14a226995..e418cedfff73b14a56ec8906b3f7c463cecafd99

----==_mimepart_5d24213caa4b6_5a303fc7c08cd9681916675
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/e418cedfff73b14a56ec8906b3f7c463cecafd99">e418ced</a>  add IANA considerations</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/2873/files/065ba73a6e1ce530b60ebee732d151c14a226995..e418cedfff73b14a56ec8906b3f7c463cecafd99?email_source=notifications&amp;email_token=AFTOJK42JTBTGWNCPZFM4VTP6QMLZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIOBVGQ2TSM2QOVZWQIZTG44TKOJQGQ3DOOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDJVRM6Q45ALWPQF3P6QMLZANCNFSM4H6KZHXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2G475N4YNS3KBZOXDP6QMLZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIOBVGQ2TSM2QOVZWQIZTG44TKOJQGQ3DOOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2873/files/065ba73a6e1ce530b60ebee732d151c14a226995..e418cedfff73b14a56ec8906b3f7c463cecafd99?email_source=notifications\u0026email_token=AFTOJK42JTBTGWNCPZFM4VTP6QMLZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIOBVGQ2TSM2QOVZWQIZTG44TKOJQGQ3DOOA",
"url": "https://github.com/quicwg/base-drafts/pull/2873/files/065ba73a6e1ce530b60ebee732d151c14a226995..e418cedfff73b14a56ec8906b3f7c463cecafd99?email_source=notifications\u0026email_token=AFTOJK42JTBTGWNCPZFM4VTP6QMLZA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TIOBVGQ2TSM2QOVZWQIZTG44TKOJQGQ3DOOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d24213caa4b6_5a303fc7c08cd9681916675--


From nobody Mon Jul  8 22:09:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1BDDE12023F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:09:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WR3Bykf9kto1 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:09: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 4C32A1201D0 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:09:41 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:09:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562648980; bh=iIsvivZLuQ2XOw2tqsMtEqUI6PON3HCPco7x5Kr4YdM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BTNuFLxkOPAczJDjiWtvOFI3ObpNbWEIsyRumXuVIemf/aaRCoECSW93sb1IlhjDs alh87XQ+9QQONi1tliRX7ySKZ3npnmt5duozVYYA6GtImh8VasaSsEH9M5bRHswtEh jJ6/3kUqj8pmFdPD3Dpoue4fyyutZOu+7gsZ8qG4=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZHPS52YFF3SSZNDF3GFKBJEVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873/c509490349@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2421942a930_38a33fec4f4cd96811418b3"; 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/a8O0egBsi6jbMkoVwSgl-rOBVeg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:09:43 -0000

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

@martinthomson I added IANA considerations, analogous to those in the HTTP doc for the stream type.

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

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> I added IANA considerations, analogous to those in the HTTP doc for the stream type.</p>

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


From nobody Mon Jul  8 22:12:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4CDCC120100 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:12:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ptbw8Xg3d1mG for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:11:59 -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 30B681200EC for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:11:59 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:11:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562649118; bh=+avyR43LBjk5bxqtzV3t1FHq0Q4NyEGhV8POnTqrtGw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fHA+Am/PUG2iIysrZV84xkPd3N/ESVmpYGqbvLAZ7P40CrlrXa/mYvSGusVgTSYvY 6ba+MOykfzVMkh99RqVTr1UtbAJZBwLm/7cNfYj8iZB0MmRHD210oc90sExmBOEjmj ArkxlH4dTujX52zSyGmkBYQur5ZbzotrMyyZvRdU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5NFCVJZ3LJ3IY7AIF3GFKJ5EVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/259270833@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24221e43709_d593ffc89acd968175448b"; 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/H3ZJ_5U-CcNbdKBm5Ttw6KAeZ0w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:12:01 -0000

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

martinthomson approved this pull request.

I like this.  It makes sense.  I've suggested a rewording of the text you proposed, but I think that this the right insight.  Namely, you can only use a zero-length connection ID if other information **that is under your control** is sufficient to identify a connection.

My only reservation is over the potential for an endpoint to be willing to use trial decryption here.  In theory, you could demux using trial decryption.  It seems crazy, but we've already got cases for ESNI where that turns out to be a useful concept.

> @@ -924,11 +924,14 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID MAY be used when the connection ID is not needed
+for routing and the destination address and port of incoming packets is
+sufficient to identify a connection (e.g., when there is a single connection
+on a given local port). Note that it is not possible to use the source address
+and port of incoming packets to demultiplex them across connections because a
+peer might multiplex multiple connections on a single address and port and rely
+on its connection IDs for demultiplexing, and the peer's connection IDs are not
+transmitted in the short header packets they send.

Suggestion: A zero-length connection ID can be used when a connection ID is not needed to correctly route to the correct endpoint.  An endpoint MUST NOT use a zero-length connection ID unless it can use only its IP address and port to identify a connection.  The IP address and port used by a peer cannot be used for routing as these values can change or be used for additional connections.

>  
-If the Destination Connection ID is zero length and the packet matches the
-address/port tuple of a connection where the host did not require connection
-IDs, QUIC processes the packet as part of that connection.  Endpoints SHOULD
-either reject connection attempts that use the same addresses as existing
-connections, or use a non-zero-length Destination Connection ID so that packets
-can be correctly attributed to connections.
+If the Destination Connection ID is zero-length and the packet matches the
+local address and port of a connection where the host used zero-length
+connection IDs, QUIC processes the packet as part of that connection.
+Endpoints that share a local address and port across multiple connections MUST

I think that we can drop this final sentence here.  The text above (L933-ish) will do.

> @@ -1793,9 +1796,7 @@ An endpoint also MUST NOT initiate connection migration if the peer sent the
 `disable_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 MAY treat this as a connection error of type
-INVALID_MIGRATION.  Similarly, an endpoint MUST NOT initiate migration if its
-peer supplies a zero-length connection ID as packets without a Destination
-Connection ID cannot be attributed to a connection based on address tuple.

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/2851#pullrequestreview-259270833
----==_mimepart_5d24221e43709_d593ffc89acd968175448b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<p>I like this.  It makes sense.  I've suggested a rewording of the text you proposed, but I think that this the right insight.  Namely, you can only use a zero-length connection ID if other information <strong>that is under your control</strong> is sufficient to identify a connection.</p>
<p>My only reservation is over the potential for an endpoint to be willing to use trial decryption here.  In theory, you could demux using trial decryption.  It seems crazy, but we've already got cases for ESNI where that turns out to be a useful concept.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r301397927">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -924,11 +924,14 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID MAY be used when the connection ID is not needed
+for routing and the destination address and port of incoming packets is
+sufficient to identify a connection (e.g., when there is a single connection
+on a given local port). Note that it is not possible to use the source address
+and port of incoming packets to demultiplex them across connections because a
+peer might multiplex multiple connections on a single address and port and rely
+on its connection IDs for demultiplexing, and the peer&#39;s connection IDs are not
+transmitted in the short header packets they send.
</pre>
<p>Suggestion: A zero-length connection ID can be used when a connection ID is not needed to correctly route to the correct endpoint.  An endpoint MUST NOT use a zero-length connection ID unless it can use only its IP address and port to identify a connection.  The IP address and port used by a peer cannot be used for routing as these values can change or be used for additional connections.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r301398043">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-If the Destination Connection ID is zero length and the packet matches the
-address/port tuple of a connection where the host did not require connection
-IDs, QUIC processes the packet as part of that connection.  Endpoints SHOULD
-either reject connection attempts that use the same addresses as existing
-connections, or use a non-zero-length Destination Connection ID so that packets
-can be correctly attributed to connections.
+If the Destination Connection ID is zero-length and the packet matches the
+local address and port of a connection where the host used zero-length
+connection IDs, QUIC processes the packet as part of that connection.
+Endpoints that share a local address and port across multiple connections MUST
</pre>
<p>I think that we can drop this final sentence here.  The text above (L933-ish) will do.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r301398169">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1793,9 +1796,7 @@ An endpoint also MUST NOT initiate connection migration if the peer sent the
 `disable_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 MAY treat this as a connection error of type
-INVALID_MIGRATION.  Similarly, an endpoint MUST NOT initiate migration if its
-peer supplies a zero-length connection ID as packets without a Destination
-Connection ID cannot be attributed to a connection based on address tuple.
</pre>
<p>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/2851?email_source=notifications&amp;email_token=AFTOJK5CIRJMAOEE6Y4MRCLP6QMZ5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52CRMI#pullrequestreview-259270833">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK566TSQJOMS5SUKXF3P6QMZ5ANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5YST5OGFU2CSQA4ODP6QMZ5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52CRMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK5CIRJMAOEE6Y4MRCLP6QMZ5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52CRMI#pullrequestreview-259270833",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK5CIRJMAOEE6Y4MRCLP6QMZ5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52CRMI#pullrequestreview-259270833",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24221e43709_d593ffc89acd968175448b--


From nobody Mon Jul  8 22:14:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6E84A120100 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:14:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4CN3iKuX-QEc for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:14: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 E08001200EC for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:14:03 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:14:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562649242; bh=vHFxhW5bCTxOzwOZ1VvyPMYN4Fksfvilc2/+NwqrBZg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=skz8Jyu2T3DC2lUp5KFJCOLzmUgjUy/xiu4DFWxnnqIUGgZM4XIeAmJgYuogSgFi1 5LRloSnsZpJ7/T4n8H+y740KwGq92lpTMNGD8qaqPeTqs0yg+mYnkNA5zbocwq9AiP DTrbYdXrizLh4pHa6H7s9Nrt+Bh8VEjgThj35rFk=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYRFTLUYGA7WOMD3253GFKRVEVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873/review/259272020@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24229adec42_79543fb5ceecd95c53332e"; 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/xSwA4Ni4htrI43eZ9mSOYfbnJ_k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:14:06 -0000

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

martinthomson approved this pull request.

Thanks Marten!



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

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

<p>Thanks Marten!</p>

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


From nobody Mon Jul  8 22:30:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 64092120307 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:30:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iakCpJsGLeS5 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:30: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 B9A32120305 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:30:02 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:30:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562650201; bh=mFJKhrExaOsKiwUHCc+/Apdw1fSDX1XiPCudpcE9spU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p4I6Pzi6sfWz1AzeDxqTvD47C3zhD9OqZIlEsseNC2NCZXsyi7l4wNKabSZD1AD7N 66wiDJC3FA8n7yq9AtGEnFh1GN2DqyiWlJTsqxsUpuCzSTH+5ua/iPBbeMEx3u7XWa EURNCsjxpG7UZmNQnd45JAdhorZ6whvT3ZG9W0Vc=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJNYC3DS7PDGEMZ653GFMNTEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/259275439@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2426598077d_156f3fef4e0cd9601457260"; 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/LVDV-B6sJM7P4l8c_acVuS1nw1E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:30:08 -0000

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

marten-seemann requested changes on this pull request.

At the NY interim, we agreed that a design goal of QUIC's Retry mechanism is that a MITM is not able to perform a Retry. 
By removing the original_connection_id transport parameter, this PR reintroduces that option. The attack works as follows:
1. The MITM captures the Initial packet, and sends a Retry packet. 
2. The client generates a second Initial as a response. This packet will us the DCID provided by the Retry (which is different from the DCID use for the first Initial).
3. The MITM strips out the token, and re-protects the packet with an Initial key derived from the DCID of the packet (it might even choose to change the DCID before forwarding the packet to the server).
4. Because the key used to protect the packet was derived from the DCID, the server is able to unprotect the packet. It replies with an Initial packet.
5. Since Initials are able to change the DCID, the client will accept the Initial packet and change the DCID again (if MITM or server changed the DCID, that 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/2878#pullrequestreview-259275439
----==_mimepart_5d2426598077d_156f3fef4e0cd9601457260
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@marten-seemann</b> requested changes on this pull request.</p>

<p>At the NY interim, we agreed that a design goal of QUIC's Retry mechanism is that a MITM is not able to perform a Retry.<br>
By removing the original_connection_id transport parameter, this PR reintroduces that option. The attack works as follows:</p>
<ol>
<li>The MITM captures the Initial packet, and sends a Retry packet.</li>
<li>The client generates a second Initial as a response. This packet will us the DCID provided by the Retry (which is different from the DCID use for the first Initial).</li>
<li>The MITM strips out the token, and re-protects the packet with an Initial key derived from the DCID of the packet (it might even choose to change the DCID before forwarding the packet to the server).</li>
<li>Because the key used to protect the packet was derived from the DCID, the server is able to unprotect the packet. It replies with an Initial packet.</li>
<li>Since Initials are able to change the DCID, the client will accept the Initial packet and change the DCID again (if MITM or server changed the DCID, that is).</li>
</ol>

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


From nobody Mon Jul  8 22:32:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5C1F6120307 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:32:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id inLFnXPQpuPo for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22: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 410671202F8 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:32:54 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:32:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562650373; bh=RYAE1ftllfZmLG3NQQ0nNo2aFcxrqSgTzc7uZUdo674=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d73En90vA1762amDorrsTX4EPYcY0QOWdCDGhwnBS0pdX9Q2PqHixNReFNS6dVa12 rsxE9Lpq2RJKSojPrA8rXt9wo+ZjdUQndrG1oZwZEWciJThhqsWKPO6gTw+CTiwt9Y q2Ix/fGb5EpTm4ibiybktwI+sMtnloZZs0cPvP98=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7SJDQEJ2AYCR4EUWN3GFMYLEVBNHHBXIMFLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2870/review/259275767@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2870@github.com>
References: <quicwg/base-drafts/pull/2870@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets change after Retry (#2870)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24270517682_14a93fe74f2cd9601372852"; 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/7FMIDRLOCm_dwO7D16GS6VIbyjs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:32:56 -0000

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

marten-seemann approved this pull request.



> @@ -800,8 +799,10 @@ modifying the contents of packets from future versions.
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
 packets even where the TLS versions offered do not include TLS 1.3.
 
-{{test-vectors-initial}} contains test vectors for the initial packet
-encryption.
+The secrets used for protecting Initial packets changes when a server sends a

singular vs plural

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

<p><b>@marten-seemann</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2870#discussion_r301401897">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -800,8 +799,10 @@ modifying the contents of packets from future versions.
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
 packets even where the TLS versions offered do not include TLS 1.3.
 
-{{test-vectors-initial}} contains test vectors for the initial packet
-encryption.
+The secrets used for protecting Initial packets changes when a server sends a
</pre>
<p>singular vs plural</p>

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


From nobody Mon Jul  8 22:34:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 72AA012030F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:34:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3sHe31jx_Vzw for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:34: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 55F971202F8 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:34:02 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:34:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562650441; bh=VmDQkoqkTZRw7JuCeegIeemEBy84cXGQyrTeaQCiaXY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=daGwznDZ7BaA6bBRZ7f0yVzUh1ln+20FZJIP5jgI3dissVO07o1+z99OlXgcl9AQ7 /3VNaGrX0K8uDVf6ZszkbQVpjpHCCl0KYgujLlXdwwvG2H34yU6ZGC0s6iPmZTabPc HbTHRTSON3yUyZdA4xhQD3xmUKWRpKpHepTT/VDo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57D3ZET52S5PHP4PN3GFM4TEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/c509495031@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24274930c54_11a13f980b4cd96017223b"; 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/vj8t3dlkL0hwCVtm96qRmuEraoM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:34:05 -0000

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

I don't think that's a concern, because the server is still required to echo the ODCID and the client should check it.  That change is entered into the handshake transcript, so it can't be spoofed.

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

<p>I don't think that's a concern, because the server is still required to echo the ODCID and the client should check it.  That change is entered into the handshake transcript, so it can't be spoofed.</p>

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


From nobody Mon Jul  8 22:35:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 67575120337 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:34:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uY3fK7yNgPA2 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:34: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 5A40E1203D1 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:34:53 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:34:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562650492; bh=uTN0Cb8zCFQV8F9VJVV9c0J4Rrs24FH1OmpQXwclisw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C7lixHbGQIVPf1Vxb9IOZXx3twMXsC1zncjJcmPkAMcV2bKd6340RGqISU8C0dI/Z sueDUc4j2V7RpDRQTNMV0MB8KggFvVQjYo7Lm8O5wZPKKTlDDg7zmlalbuhY5QIBA6 s/8bMOK6plpdzL8DD0m/27zCRJeP6OUe9xhCKA4g=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK444VPGBNES5ITWICN3GFM7ZEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/c509495225@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24277c2f5c2_20903fda450cd96064534a"; 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/LCQODjdEB9sHxOwZhu0TlgPkuQk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:35:02 -0000

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

@martinthomson This PR removes the transport parameter. Nothing is entered into the handshake transcript.

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

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> This PR removes the transport parameter. Nothing is entered into the handshake transcript.</p>

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


From nobody Mon Jul  8 22:39:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D01E11202F8 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:39:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1JM3IPYn0L2T for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:39: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 3D1D912023F for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:39:09 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:39:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562650747; bh=PBccDIRrRcweQsNvbVCFYGLUt/a23V71yPW5V1D1Bdg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lCLjjlrenHwqADq2p4wKY7+Dg5DJJ/mpjwYQhqekKJcieBu3bbkAZarugek1VD53N 5eKkgG2SXccDwnx/kpPePwi8ablnY84m8LdYrSQjMQve8Xm7NoDZr1+wgQTr40hea6 6d3vyQ5F5+JUUKrYyKu/fnz/7ukJgjgyMzgP+P14=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5QWFZIQ6VY22AO55V3GFNPXEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/259277409@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24287bd82eb_487d3f84d00cd96c201367a"; 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/Ay_uXV7ES5DYoqssmDL9gETG9Xk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:39:11 -0000

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

martinthomson requested changes on this pull request.

Oops. I completely missed that somehow. I agree with Marten. Keep the transport parameter and I am ok with this, but without, it is badly exposed.



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

<p><b>@martinthomson</b> requested changes on this pull request.</p>

<p>Oops. I completely missed that somehow. I agree with Marten. Keep the transport parameter and I am ok with this, but without, it is badly exposed.</p>

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


From nobody Mon Jul  8 22:40:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1CB461200F7 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:40:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X3nr8P9yf0ez for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:40: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 78C1D120045 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:40:12 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:40:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562650811; bh=U4M+KThiddTLwTDWSbkXbsqeiJWnAFiOsDhSNC3gexg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vK/CLvTocb5n+5QMVmhdl8dofEEX1LN55/IXaH2oOliH1EDoRS5djwus9/dHaCWg9 wOy2XgTKeg3B+zUXzupqSf3Pyx8FbuSQW54u10XLWIsC8hsAIwL4atbkMx2wahdk4+ IBwMXKvBCfPjc6ltP9jW3r13IJiZyAXk1IRTHG6A=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33GCYF3TBOIRCO6353GFNTXEVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873/review/259277645@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2428bb9549d_7a1d3fa06e6cd95c17262bd"; 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/OcajeCkXCaFSep3hHgmZ31kiASM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:40:14 -0000

----==_mimepart_5d2428bb9549d_7a1d3fa06e6cd95c17262bd
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/2873#pullrequestreview-259277645
----==_mimepart_5d2428bb9549d_7a1d3fa06e6cd95c17262bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2873?email_source=notifications&amp;email_token=AFTOJK5TG5COILABJAD5MPLP6QQDXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52EGTI#pullrequestreview-259277645">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYOU3E4F6APRIVBNLLP6QQDXANCNFSM4H6KZHXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6M3K6E5LAD3B4AK5LP6QQDXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52EGTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJK5TG5COILABJAD5MPLP6QQDXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52EGTI#pullrequestreview-259277645",
"url": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJK5TG5COILABJAD5MPLP6QQDXA5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52EGTI#pullrequestreview-259277645",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2428bb9549d_7a1d3fa06e6cd95c17262bd--


From nobody Mon Jul  8 22:40:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C124812023F for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:40:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, 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 6RG-O1_6fiQ0 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:40: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 458831200F7 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:40:53 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:40:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562650852; bh=TRjCQ9Z3En7Lw2KF7p6bhCaG70RHuOmYBGTQx8kAKJ8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SmMRyycnht9XlsP42T5u+ZHP+l7BO2bbLD6BvqWo+o0gB3E+9kAM68Q0ikWOAfMpQ u+mZpQRxBBI/0FucjEuQ5Tj/sf1relKygyKGA6/Zas7hB62Mz0Vp8xudJPc8HRHGmP 3eqjM3j6G8DzKIuZRpJEpMu02AQkWm6ANjUkwt7w=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHM5QZSJ4BH3QUMMV3GFNWJEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/c509496490@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2428e437a43_7d3e3fe74f2cd960665777"; 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/Dj22HiDIkLz4IpYrxCGMGsdZ7rA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:40:55 -0000

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

Oh now I see why. Ian removed the transport parameter after I reviewed it. In an update labelled 
"Update draft-ietf-quic-transport.md".

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

<p>Oh now I see why. Ian removed the transport parameter after I reviewed it. In an update labelled<br>
"Update draft-ietf-quic-transport.md".</p>

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


From nobody Mon Jul  8 22:50:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 107CF1202F8 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:50:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HZ3Zl_Ogivjw for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 22:50:51 -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 E2134120176 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 22:50:50 -0700 (PDT)
Date: Mon, 08 Jul 2019 22:50:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562651450; bh=KO8FSvpw6bJMYxwSuE46gfAO6ZBKiAwGn7wrzR5C3dk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=znC9UoOYOrZVJSUFu8ZZJ5hM9uKMwvjQKK2jcXNtAj2NR4Qqb542jmZ4OiEtm23Pl kaPcH3qi9l0zMbIrSDu+9QPKgtmOZ2E7n2tULvdsOTL3vWEBWVLBI/QyERVhwb+NSz 2dOpNpmhc5C/Ob2EmRGSIUqdSItMHBOV3Ta8uBl8=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2Y6XTH52DDVYG33S53GFO3TEVBNHHBOYXNSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2205/509498614@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2205@github.com>
References: <quicwg/base-drafts/issues/2205@github.com>
Subject: Re: [quicwg/base-drafts] Largest acked in ACK frame MUST NOT decrease (#2205)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d242b39d5402_3cc93fcda6acd95c1277617"; 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/pzcdcSZmpOk7BPPeoGAv6zmtNdg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 05:50:54 -0000

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

@martinthomson : Yeah, my 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/issues/2205#issuecomment-509498614
----==_mimepart_5d242b39d5402_3cc93fcda6acd95c1277617
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> : Yeah, my 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/issues/2205?email_source=notifications&amp;email_token=AFTOJKYGK2CF6K2ZEU37ZKDP6QRLTA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPFJ5Q#issuecomment-509498614">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3X5Y77H2JB4ERUSLP6QRLTANCNFSM4GLEXF3Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGOW7AB4L2SD623QLP6QRLTA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPFJ5Q.gif" height="1" width="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/2205?email_source=notifications\u0026email_token=AFTOJKYGK2CF6K2ZEU37ZKDP6QRLTA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPFJ5Q#issuecomment-509498614",
"url": "https://github.com/quicwg/base-drafts/issues/2205?email_source=notifications\u0026email_token=AFTOJKYGK2CF6K2ZEU37ZKDP6QRLTA5CNFSM4GLEXF32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPFJ5Q#issuecomment-509498614",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d242b39d5402_3cc93fcda6acd95c1277617--


From nobody Mon Jul  8 23:01:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9685D12013D for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 23:01:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CEnnF2m_T0fz for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 23:01:10 -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 699C7120122 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 23:01:10 -0700 (PDT)
Date: Mon, 08 Jul 2019 23:01:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562652069; bh=rc37IjSbar81yVxFWSmnS6HpGQvqiaZq1jqkPo4KDJY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tnt0+OFj5+YwYuXNI3IS7F4BHfC7Exz6iAC+bLb0Bnk2NAQtdRpyj9lAU8AAwokOG jTOIRCKCQO0muyrtcwKd0JIKO+5v8+C5+TqSTDxH8F7A/ukVSfzG5k80ASTSdWFXT+ rmUctRzHxYPquMOkfDSf8dm2k3TE04XWhx8E51yw=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZP46S4E2H6FGDLPGV3GFQCLEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/259282704@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d242da5564d3_4c2f3fd3608cd96c1079674"; 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/sqCItk-OY1Iwy7aRt4Af0-1BGx8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 06:01:13 -0000

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

janaiyengar commented on this pull request.



> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

I'm not sure that we need to collapse this. I think it's reasonable to say that the largest acked should increase, though it's going to be too broad. Any scenario that has reordering of received packets will have ACKs being sent where the largest acked is not increasing.

If the packet number of the received ACK is increasing, it should be adequate, with this one exception (which ought to be rare) where the sender retransmits stale ACKs. I'd rather cover the common case of looking at packet number to determine whether the count is valid, and handling this exceptional case additionally.

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

<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2879#discussion_r301407837">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in
</pre>
<p>I'm not sure that we need to collapse this. I think it's reasonable to say that the largest acked should increase, though it's going to be too broad. Any scenario that has reordering of received packets will have ACKs being sent where the largest acked is not increasing.</p>
<p>If the packet number of the received ACK is increasing, it should be adequate, with this one exception (which ought to be rare) where the sender retransmits stale ACKs. I'd rather cover the common case of looking at packet number to determine whether the count is valid, and handling this exceptional case additionally.</p>

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


From nobody Mon Jul  8 23:24:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AC1FC120307 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 23:24:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.001
X-Spam-Level: 
X-Spam-Status: No, score=-8.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 R-vm7Zhzt3g7 for <quic-issues@ietfa.amsl.com>; Mon,  8 Jul 2019 23:24: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 36385120108 for <quic-issues@ietf.org>; Mon,  8 Jul 2019 23:24:37 -0700 (PDT)
Date: Mon, 08 Jul 2019 23:24:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562653475; bh=RZZmHQD7UlzsDf5/os3Pm+jO6bxtKwr/gUudnzXatyg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kkHTn1OhjjkvqzYNq1exBMl+VD/2m++59PQx9CsVuW4EFg9acO7+Kvvk4xbdJNrf1 caFHEgDWleK1mlwxHlg9Ebm64pIsXzUu612VndnSpxpE57qqQ/624V3WsdDOLKuq7W tkqoPysZAV+AG3X6lPpR77mLCdEX0TGXVzxPl6uY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5KDIDOWBZJ5YQEBJ53GFS2HEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/259289573@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d243323db171_486e3f84d00cd96c1416281"; 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/A9mHtr6zc7j9M8b0ps9XY65Pa1s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 06:24:42 -0000

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

martinthomson commented on this pull request.



> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

I would prefer instead to say that you MUST NOT retransmit stale ACKs AND to require that new ACKs always increase the largest acknowledged (or the ACK range with the largest packet number cannot be discarded).  Then we only need to say that endpoints skip ECN validation when the largest acknowledged does not increase.

That's strictly less good than using packet number, because newly acknowledged packets don't always increase the largest acknowledged, so we could mention that checking for an increasing packet number is even better, but that only enables validation more often.

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

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2879#discussion_r301413488">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in
</pre>
<p>I would prefer instead to say that you MUST NOT retransmit stale ACKs AND to require that new ACKs always increase the largest acknowledged (or the ACK range with the largest packet number cannot be discarded).  Then we only need to say that endpoints skip ECN validation when the largest acknowledged does not increase.</p>
<p>That's strictly less good than using packet number, because newly acknowledged packets don't always increase the largest acknowledged, so we could mention that checking for an increasing packet number is even better, but that only enables validation more often.</p>

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


From nobody Tue Jul  9 00:03:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 077A412032B for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:03:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 GLGylNub68RI for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:03: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 0B860120326 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:03:08 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:03:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562655786; bh=SfVorVtzq+uhC0Bbp1CmoUx7Z2bxrIzUk/g+4Yeupk4=; h=Date:From:To:Subject:From; b=ttuB9QogOJ59eZRNx1jLSHxNEgvHbvLDghWdcyLYFvuXar0dkH207/+AXByFPEg9X tikOr88Yq66dHTGe5tLM1eQgK1X1Op8VQib/CEHGOrf1MoV4uK7nlsQ7LkgeWTsi+s 90PB+Nf8lMC6WYgVCz7AeuI79YeEULckHb2zU8eU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/error-handling-principles/000000-a0c255@github.com>
Subject: [quicwg/base-drafts] a0c255: Articulate error code principles
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1JBt6ABZenJsMlMUysbqvzK8Z1I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:03:10 -0000

  Branch: refs/heads/error-handling-principles
  Home:   https://github.com/quicwg/base-drafts
  Commit: a0c255791a5bf269fc46501fd5daf9ab4e362cf9
      https://github.com/quicwg/base-drafts/commit/a0c255791a5bf269fc46501fd5daf9ab4e362cf9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Articulate error code principles

This just writes down what was proposed in #2388.

Closes #2388.



From nobody Tue Jul  9 00:04:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C0A1A12032B for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:04:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 9_jAnin54_UX for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:04: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 35F2C1200F7 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:04:23 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:04:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562655861; bh=PVnvnx7tcbdJI9uV/EGfos9lAreTvwqzp5Qv3tVkBtg=; h=Date:From:To:Subject:From; b=QrQmkQ/Up3Rh8ZQZceG6eOIzBYnCkraLCvNqeQWy7vXqCSjmis2KOmyn8m/k3SUXy kB4nf8dtkh7TL4k+qKApXwXoAb4NWitEiD9Yt3SBLQRMLV/Fqc+iTgClkF86ooPpDx h9E4A9YbuE5bcawX48bZfQ2/lOTwwLKz7GxoroOY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8dc955-fdafae@github.com>
Subject: [quicwg/base-drafts] fdafae: Script updating gh-pages from a0c25579. [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/H9XHpbtIzZg7NuQsOcn05WlwtVo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:04:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fdafae0521100b7e51d79e060c46f30c051b7912
      https://github.com/quicwg/base-drafts/commit/fdafae0521100b7e51d79e060c46f30c051b7912
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    A error-handling-principles/draft-ietf-quic-http.html
    A error-handling-principles/draft-ietf-quic-http.txt
    A error-handling-principles/draft-ietf-quic-invariants.html
    A error-handling-principles/draft-ietf-quic-invariants.txt
    A error-handling-principles/draft-ietf-quic-qpack.html
    A error-handling-principles/draft-ietf-quic-qpack.txt
    A error-handling-principles/draft-ietf-quic-recovery.html
    A error-handling-principles/draft-ietf-quic-recovery.txt
    A error-handling-principles/draft-ietf-quic-tls.html
    A error-handling-principles/draft-ietf-quic-tls.txt
    A error-handling-principles/draft-ietf-quic-transport.html
    A error-handling-principles/draft-ietf-quic-transport.txt
    A error-handling-principles/index.html
    M index.html

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



From nobody Tue Jul  9 00:06:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 268CC1202F8 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:06:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 pdOAyb_dWVGa for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:06: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 3DD671200F7 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:06:14 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:06:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562655973; bh=D/9Yz2MZhIT1VcRu+9XkWQEHB/RslYwA3fqomk+P9FA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=UajU8fz4N7Lho6Jg7N0BFOoHemkvos0iDqpedPqs2N6Z3UueluUK7YkRmas6k6M3U aZPGtG7ClhEFoRkxuWCCdTlb6RrB6CJccvZ58AdEvfxZuTSW1rAs6S6oawULOq+l2s LP4e7DF/sdpitNSqWi72rlbP2W0fFfSXehsbKDsg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ4Q2RX7VBAFW3YV2V3GFXWJEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880@github.com>
Subject: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d243ce5889_2d863f99574cd968205498d"; 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/PqH4_p_7XFpjuJFyRU03KzfLUj4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:06:16 -0000

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

This just writes down what was proposed in #2388.

Closes #2388.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Articulate error code principles

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2880.patch
https://github.com/quicwg/base-drafts/pull/2880.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/2880

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

<p>This just writes down what was proposed in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="404616408" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2388" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2388/hovercard" href="https://github.com/quicwg/base-drafts/issues/2388">#2388</a>.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2388.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="404616408" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2388" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2388/hovercard" href="https://github.com/quicwg/base-drafts/issues/2388">#2388</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/2880'>https://github.com/quicwg/base-drafts/pull/2880</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Articulate error code principles</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2880.patch'>https://github.com/quicwg/base-drafts/pull/2880.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2880.diff'>https://github.com/quicwg/base-drafts/pull/2880.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/2880?email_source=notifications&amp;email_token=AFTOJK3WTD7RKUICPODLCATP6Q2GLA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6ATUXA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6NBXTZPHP37MO2C3DP6Q2GLANCNFSM4H7CJCEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKFYFKDDPL36GRKBLP6Q2GLA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6ATUXA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJK3WTD7RKUICPODLCATP6Q2GLA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6ATUXA",
"url": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJK3WTD7RKUICPODLCATP6Q2GLA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6ATUXA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d243ce5889_2d863f99574cd968205498d--


From nobody Tue Jul  9 00:06:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 880A81202F8 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:06:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 yQXKZASs5IJ6 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:06: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 19FE61200F7 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:06:27 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:06:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562655985; bh=nSl5rTutyDJkxxT783q2dXQKCvS3RQPpJXsU6O3utPw=; h=Date:From:To:Subject:From; b=UFXvXp6C358zrb9aweUcEyOeauJvxHjaQKJz5W3rIyDp7NbWlvWkZv5I+2miapX1E ObpR3bPuEa+w9lCk3K7HTNGtksYLSXLl05TuufTe26suRb6mUgfLRdT+xkowc7CkPE GU5rFdqAR9otIrKexux8oU0Y1StSpA5Ofcgy6ozw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fdafae-c107cc@github.com>
Subject: [quicwg/base-drafts] c107cc: Script updating issues at 2019-07-09T07:06:19Z. [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/-V2cdtaCXbYc9-tfQsrY3ISuewc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:06:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c107cced2868660e7fb45674bf37b71382137285
      https://github.com/quicwg/base-drafts/commit/c107cced2868660e7fb45674bf37b71382137285
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-09T07:06:19Z. [ci skip]



From nobody Tue Jul  9 00:10:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E2030120314 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:10:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MRcAY99B8UtG for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:10: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 22460120307 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:10:22 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:10:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656220; bh=bTM7/QGD6bzOGPHWTcfeXS0LjOQw5ZpYDg6cw4aAW1M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BGTlCc4o5jDLCxFR9w00ogdcfBl27Pq25qjffmQJRR7ma/TRMuRuKp67rPK0eYleN iWUnLR0RNm68ucKWZac3aTAoroF1dZfPJYdClAXS8bhBRH0Ui4GEC9qSarDVPs8B1l lwO/gcHhLefB2usJjuSWkkS6vvKRzvYD2FaO5wMc=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYCLL4VU5NF6NEFVVV3GFYFZEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/review/259305481@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d243ddcc55e0_4c313fd3608cd96c1839557"; 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/ABVmvYCa1Sy2PKGuRGcnPUT0sRw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:10:24 -0000

----==_mimepart_5d243ddcc55e0_4c313fd3608cd96c1839557
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/2880#pullrequestreview-259305481
----==_mimepart_5d243ddcc55e0_4c313fd3608cd96c1839557
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2880?email_source=notifications&amp;email_token=AFTOJK5YZPV2ILG7TSFM2UTP6Q2VZA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52LACI#pullrequestreview-259305481">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY7RNU4WNWTS3EBWBTP6Q2VZANCNFSM4H7CJCEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4PG6WH3YVWMIOEG4DP6Q2VZA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52LACI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJK5YZPV2ILG7TSFM2UTP6Q2VZA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52LACI#pullrequestreview-259305481",
"url": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJK5YZPV2ILG7TSFM2UTP6Q2VZA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB52LACI#pullrequestreview-259305481",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d243ddcc55e0_4c313fd3608cd96c1839557--


From nobody Tue Jul  9 00:10:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0336D120326 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:10:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, 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 JyCLYEcbR8gt for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:10: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 D3E29120314 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:10:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:10:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656239; bh=eZvkBZ5KYSn2N62nNUEdU4wxQxf1OVxade50C6U6KsQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BCC8JtocbMp/773gbBoxTK/P59CfUFIHLTWtw830PUiySyacQOCssjLe8LVcH4nUU wks94dMTY4yeCoxYn8K55hOHE4vryT0m6YZzL/xySwjyFdtCOkUd2WuvbuiSge0zK4 7TZaMMLVzi6gGWw/0bDHPWWDIJjmAWcGIeQD+rpQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5EHD6UAU4QKEAZUO53GFYG7EVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509519263@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d243defc4bdc_477b3fd3608cd96c1166eb"; 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/WAgiSXLI5gnI0Hrf4eR35DRdCu4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:10:43 -0000

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

I'm very much inclined to propose a vote (i.e., to invoke [RFC 3929](https://tools.ietf.org/html/rfc3929)) on this one in Montreal.  I get the *strong* impression that no one really cares about this that much.

Would anyone object if I put up a slide with the three options up and we could all hum or wave hands at the ones we liked the least?

-- 
You are receiving 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/2670#issuecomment-509519263
----==_mimepart_5d243defc4bdc_477b3fd3608cd96c1166eb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm very much inclined to propose a vote (i.e., to invoke <a href="https://tools.ietf.org/html/rfc3929" rel="nofollow">RFC 3929</a>) on this one in Montreal.  I get the <em>strong</em> impression that no one really cares about this that much.</p>
<p>Would anyone object if I put up a slide with the three options up and we could all hum or wave hands at the ones we liked the least?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK7CMECHJD63XZ54R73P6Q2W7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPKLHY#issuecomment-509519263">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4LCH3F6SYICW4MWUTP6Q2W7ANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6RIMXOKJ56WLSFKUDP6Q2W7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPKLHY.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK7CMECHJD63XZ54R73P6Q2W7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPKLHY#issuecomment-509519263",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK7CMECHJD63XZ54R73P6Q2W7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPKLHY#issuecomment-509519263",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d243defc4bdc_477b3fd3608cd96c1166eb--


From nobody Tue Jul  9 00:18:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C902D120307 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:18:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 oVeOcJHnTPq3 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:18:40 -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 4E427120314 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:18:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:18:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656719; bh=OLuKQw4zpCJshXFafBfLD98L/3g1uQRIjrew58/R3M0=; h=Date:From:To:Subject:From; b=yrU1ePY//nkGSKQEankMwgu124APdttyZyYOH1NOqT3kqygYgq4FYriOepILcYndQ 1/rm5rqCcEpaeU8Ktu4iZ06FDaNdYBNsUkwmRfp+AaM2KkWjdmO4EnYVqJOCmvoTrI nG66PP9NyZVbMQt+yuDqTz0QjPliikzC4wgSjsyg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/000000-430ae0@github.com>
Subject: [quicwg/base-drafts] 430ae0: Explain asymmetric confirmation condition
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YeMzcT80vpVzMBAl3JVtsD_006k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:18:42 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 430ae03d4fcbdfe1f940ad23a317e9a04e31740f
      https://github.com/quicwg/base-drafts/commit/430ae03d4fcbdfe1f940ad23a317e9a04e31740f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Explain asymmetric confirmation condition

This leads to indefinite Handshake messages from one side, as Handshake
packets can never be acknowledged.  As discussed, sending anything that
elicits an ACK should fix this.  But making a connection where you sit
entirely idle leads to a weird corner case.

Closes #2863.



From nobody Tue Jul  9 00:19:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DA66F1202F8 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:19:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 ws93aeZadEqr for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:19: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 3076D120314 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:19:10 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:19:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656749; bh=H7nttJ7ttd27wtSLF62x8pIlfOAlnRQ6DglqJDqyMWY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=meO1z7K21QZs45L6dWdQ4K1lFMU1msLaEPiOugRCDjJS6vBPZF1O9Y8X43qEQf7nE 7N1Eb05AcSH5uQgP0e5GWmWr9IYOJ2oprp5IZuVdQjxudxL8SMMaH9EgyjDEH7/kNU 9fk7PWbCsMkYNOTwCZ8q6q8cjjns/CDBbhXf4hGo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK55L4HJBYLXS4CKPIV3GFZG3EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881@github.com>
Subject: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d243fed1e8ff_6adf3fd988acd9641961245"; 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/4OMNu553tHnJdmnO3yPTZFrPWRo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:19:14 -0000

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

This leads to indefinite Handshake messages from one side, as Handshake
packets can never be acknowledged.  As discussed, sending anything that
elicits an ACK should fix this.  But making a connection where you sit
entirely idle leads to a weird corner case.

Closes #2863.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Explain asymmetric confirmation condition

-- File Changes --

    M draft-ietf-quic-tls.md (9)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2881.patch
https://github.com/quicwg/base-drafts/pull/2881.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/2881

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

<p>This leads to indefinite Handshake messages from one side, as Handshake<br>
packets can never be acknowledged.  As discussed, sending anything that<br>
elicits an ACK should fix this.  But making a connection where you sit<br>
entirely idle leads to a weird corner case.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2863.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462368523" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2863" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2863/hovercard" href="https://github.com/quicwg/base-drafts/issues/2863">#2863</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/2881'>https://github.com/quicwg/base-drafts/pull/2881</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Explain asymmetric confirmation condition</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2881.patch'>https://github.com/quicwg/base-drafts/pull/2881.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2881.diff'>https://github.com/quicwg/base-drafts/pull/2881.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/2881?email_source=notifications&amp;email_token=AFTOJKZQTAUF6D2ANKBAJ3DP6Q3W3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AWEYQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ZJHU4IKIKY66YNOTP6Q3W3ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6Q7KTCXYA4JG6E3J3P6Q3W3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AWEYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKZQTAUF6D2ANKBAJ3DP6Q3W3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AWEYQ",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKZQTAUF6D2ANKBAJ3DP6Q3W3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AWEYQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d243fed1e8ff_6adf3fd988acd9641961245--


From nobody Tue Jul  9 00:19:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2D38E120307 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:19:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ita2ndhFqTiF for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:19: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 EBFDC1202F8 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:19:51 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:19:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656790; bh=b8kjk2pTUM0wr041JdWEjWsV9ZtJbaySv1QFlnUO5jk=; h=Date:From:To:Subject:From; b=Z1ihxwkj4EAZ63f34PEAq152QZXo+jwL/ZQubqdrQLyiWcJ8ndYBoGjhoATgzEdRp FO2z99nRsAv/s8BZQoc8hwSOL4WbV6GkOQW/CYOADXjN6K+7Z8RG02ZGLpgAZEkzyT WDLacr6i3oSSkW2yvXo/mF4AqxQdjhlST8F8YsfE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c107cc-221ac3@github.com>
Subject: [quicwg/base-drafts] 221ac3: Script updating gh-pages from 430ae03d. [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/q8jUhilbDsoeNStTw9Fe8jPtQ3Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:19:56 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 221ac32c3b1a5c1d9b1594ac07fcf484399124ec
      https://github.com/quicwg/base-drafts/commit/221ac32c3b1a5c1d9b1594ac07fcf484399124ec
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M index.html
    A unrecoverable-without-1rtt/draft-ietf-quic-http.html
    A unrecoverable-without-1rtt/draft-ietf-quic-http.txt
    A unrecoverable-without-1rtt/draft-ietf-quic-invariants.html
    A unrecoverable-without-1rtt/draft-ietf-quic-invariants.txt
    A unrecoverable-without-1rtt/draft-ietf-quic-qpack.html
    A unrecoverable-without-1rtt/draft-ietf-quic-qpack.txt
    A unrecoverable-without-1rtt/draft-ietf-quic-recovery.html
    A unrecoverable-without-1rtt/draft-ietf-quic-recovery.txt
    A unrecoverable-without-1rtt/draft-ietf-quic-tls.html
    A unrecoverable-without-1rtt/draft-ietf-quic-tls.txt
    A unrecoverable-without-1rtt/draft-ietf-quic-transport.html
    A unrecoverable-without-1rtt/draft-ietf-quic-transport.txt
    A unrecoverable-without-1rtt/index.html

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



From nobody Tue Jul  9 00:21:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E3B3F12032B for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:21:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 zPL_z7Azi63C for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:21: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 88860120326 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:21:07 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:21:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656866; bh=JWVPXQHW3gDikw9m/yB1+6JhBJm1qQEy+HYhB0tOzX0=; h=Date:From:To:Subject:From; b=w4AjsOvqowrlBwVawdXlCJLdWfj98uMroW6GXg5O9OtdkwRv03fNilGDf0360MEBX HtKEHZQXvk9EP4TFZRx+hP/qVPur+nj7hzmdVvaDll05Hk1Cs4ZXSlWWmDB2cO85fw twOmyA6yNOBmqjS3sZ0VC7mqb8LUOQEv/iyUEk48=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dont-coordinate-spin/000000-813bc3@github.com>
Subject: [quicwg/base-drafts] 813bc3: Remove spin coordination requirement
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ahycEic2fkHOWWfQrEkFJBVC92c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:21:09 -0000

  Branch: refs/heads/dont-coordinate-spin
  Home:   https://github.com/quicwg/base-drafts
  Commit: 813bc308b8d97077cbf1cb86e96dc459b2e4b416
      https://github.com/quicwg/base-drafts/commit/813bc308b8d97077cbf1cb86e96dc459b2e4b416
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Remove spin coordination requirement

As discussed, this is a) hard to do in all cases, b) impossible to do in
many, and c) not that useful.

Closes #2751.



From nobody Tue Jul  9 00:22:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 60B0412034A for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:22:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id j7Ql4wDl3nQI for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:22:17 -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 6EF69120337 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:22:12 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:22:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656931; bh=ZYpbIFa5O86D0vVdNDwy8SAmIaytMNVfBvJqX8i6QsQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0QY317R/lsOtsWjVYr6s85KB20oUXdnC/xcGj4B94l0jKzfe2b2nsv5sgH81gx8BQ OeiZNi2VFrRz6NuM7bgvt7K2r66kODBnd3rr4pGdqu0MAcTqAcRMHLx1swReVoT89f 25skEvqGBMS4n9Ty8S+EakUtdJbJu5eY7AG/ZbUo=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6WMK6RIFWV3LFGYIF3GFZSHEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509522794@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2440a371350_69463f980b4cd960290f5"; 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/uhnYAS9VWCX8dLPsR9DvO1_TYWc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:22:20 -0000

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

I don=E2=80=99t think this fixes the issue I raised. You don=E2=80=99t on=
ly have to send, but also to retransmit the 1-RTT packets. We have a bunc=
h of text in the recovery document that tells us to do not do this.=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/2881#issuecomment-509522794=

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

<p>I don=E2=80=99t think this fixes the issue I raised. You don=E2=80=99t=
 only have to send, but also to retransmit the 1-RTT packets. We have a b=
unch of text in the recovery document that tells us to do not do this.</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/2881?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK3UBJ46FCB7K4S7ZRTP6Q4CHA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMV=
BW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPLG2Q#issuecomment-509522794">view it on =
GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-au=
th/AFTOJKZCA5UYLWNWME5KIJDP6Q4CHANCNFSM4H7CMENA">mute the thread</a>.<img=
 src=3D"https://github.com/notifications/beacon/AFTOJKYM2GLIJSWHBUZKHT3P6=
Q4CHA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOOR=
PWSZGODZPLG2Q.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/2881?email_source=3D=
notifications\u0026email_token=3DAFTOJK3UBJ46FCB7K4S7ZRTP6Q4CHA5CNFSM4H7C=
MENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPLG2Q#i=
ssuecomment-509522794",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK3UBJ46FCB7K4S7ZRTP6Q4CHA5CNFSM4H7CME=
NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPLG2Q#iss=
uecomment-509522794",=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_5d2440a371350_69463f980b4cd960290f5--


From nobody Tue Jul  9 00:22:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4FCB512034E for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:22:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Lq3gsTzvy0EV for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:22: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 89B02120326 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:22:30 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:22:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656949; bh=w/63jQaBWq+JLz3eZQ28t/OgR/K20BBOJl8UmHYZenA=; h=Date:From:To:Subject:From; b=tBfC7gGfNlLAAiDglBt0kYPkAmoTc0Q1ZwQGBXs4yyLPB/cA+PbNGBzld19TMNDEu Zgo1ZzjpXmjXPXktOhZydNi8wrclHW4wlWMtQS5mPMv/y8ZWGyclVDBm1QrzTc9BJ3 O39PLBDiIF5WWDWaz0N5GEz9/OC3JSHm8oRjCAEo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/221ac3-33ca2b@github.com>
Subject: [quicwg/base-drafts] 33ca2b: Script updating gh-pages from 813bc308. [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/KNFVBL1BSUXONW0kDhujK8oTg68>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:22:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 33ca2b9295714eeaa11b90926863e699e53c790c
      https://github.com/quicwg/base-drafts/commit/33ca2b9295714eeaa11b90926863e699e53c790c
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    A dont-coordinate-spin/draft-ietf-quic-http.html
    A dont-coordinate-spin/draft-ietf-quic-http.txt
    A dont-coordinate-spin/draft-ietf-quic-invariants.html
    A dont-coordinate-spin/draft-ietf-quic-invariants.txt
    A dont-coordinate-spin/draft-ietf-quic-qpack.html
    A dont-coordinate-spin/draft-ietf-quic-qpack.txt
    A dont-coordinate-spin/draft-ietf-quic-recovery.html
    A dont-coordinate-spin/draft-ietf-quic-recovery.txt
    A dont-coordinate-spin/draft-ietf-quic-tls.html
    A dont-coordinate-spin/draft-ietf-quic-tls.txt
    A dont-coordinate-spin/draft-ietf-quic-transport.html
    A dont-coordinate-spin/draft-ietf-quic-transport.txt
    A dont-coordinate-spin/index.html
    M index.html

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



From nobody Tue Jul  9 00:22:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D9D5D120326 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:22:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2wG1efQhYUK4 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:22: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 C99B0120336 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:22:30 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:22:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562656949; bh=wk2Kk3BEdeCME4Z1flnMCzx8MQzmd8umh54B5YMLUcE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JIR5U7+5yMKxcqMkLJBD/L8bcTh5MHuS2NFLmj5pxuJKmmAp75hup49zq8zmjxcHz n+KGxx3n9VZLgLQC5FLVaJ66kb3oCZMlYsfkCSFbJQzqUMkX20uoZSftn6qXeD0DCs r3HDmaW7ak21bPU4lkNKoeDz1L7RfgId+mMr6cYE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5XKJGF7OGC2V37TQ53GFZTLEVBNHHBWZGHNE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2834/509522900@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2834@github.com>
References: <quicwg/base-drafts/issues/2834@github.com>
Subject: Re: [quicwg/base-drafts] Long Header Packets and Routing Connection IDs (#2834)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2440b5ab56a_2db53f99574cd96814994e7"; 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/JYOsDu_1ZFdP5OjyuXL86p_732g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:22:33 -0000

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

Can someone summarize this discussion for me?  We've settled on the spin-off piece (I think), but I lost the thread 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/2834#issuecomment-509522900
----==_mimepart_5d2440b5ab56a_2db53f99574cd96814994e7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Can someone summarize this discussion for me?  We've settled on the spin-off piece (I think), but I lost the thread 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/2834?email_source=notifications&amp;email_token=AFTOJK2R2S4ABPQIDYSEFRDP6Q4DLA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPLHVA#issuecomment-509522900">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JNX43PY26VZT4OZTP6Q4DLANCNFSM4H2ZGBSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK65RTXVUOIGI2NKPYTP6Q4DLA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPLHVA.gif" height="1" width="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/2834?email_source=notifications\u0026email_token=AFTOJK2R2S4ABPQIDYSEFRDP6Q4DLA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPLHVA#issuecomment-509522900",
"url": "https://github.com/quicwg/base-drafts/issues/2834?email_source=notifications\u0026email_token=AFTOJK2R2S4ABPQIDYSEFRDP6Q4DLA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPLHVA#issuecomment-509522900",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2440b5ab56a_2db53f99574cd96814994e7--


From nobody Tue Jul  9 00:34:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 53D301201B3 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:34:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 F7TCgpX_8F3o for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:34:19 -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 61C9812011F for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:34:19 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:34:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562657657; bh=cMKdBCxQAQYuveiYNu7G1TKQyVOyD/TvHhbewVuk0xQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=wUr89qsWYHiqM+XC7/GJb2RDTOUFSMmaWwtSYzIye5tTADIsfssvXVSClzVTYl0kJ 6p1+qk3DfF49LuOcf9lRzmhJmn6FTQPPu9DVWtSHgpkWJGWsOpsVBj8uezkutAejIA Vj1i7KLO3RDy5MJxTu7GpQVRvp+rNMQB3SkQq5SA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MLYC3DGAS2S6IPKV3GF27TEVBNHHBXQGJ7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2882@github.com>
Subject: [quicwg/base-drafts] Remove spin coordination requirement (#2882)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244379cab59_3473fb5ceecd95c26940a8"; 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/E1pRtJjKHo47HK9uOmdpNFYdbsc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:34:21 -0000

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

As discussed, this is a) hard to do in all cases, b) impossible to do in
many, and c) not that useful.

Closes #2751.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Remove spin coordination requirement

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2882.patch
https://github.com/quicwg/base-drafts/pull/2882.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/2882

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

<p>As discussed, this is a) hard to do in all cases, b) impossible to do in<br>
many, and c) not that useful.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes pull request #2751.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="447204358" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2751" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2751/hovercard" href="https://github.com/quicwg/base-drafts/pull/2751">#2751</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/2882'>https://github.com/quicwg/base-drafts/pull/2882</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove spin coordination requirement</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2882.patch'>https://github.com/quicwg/base-drafts/pull/2882.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2882.diff'>https://github.com/quicwg/base-drafts/pull/2882.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/2882?email_source=notifications&amp;email_token=AFTOJK3QMI32B3Q4C6IYSGLP6Q5PTA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AZH5A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JGEFPF5CDCC7INSLP6Q5PTANCNFSM4H7CP7EA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3MPF5XLAZM5NOINZ3P6Q5PTA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AZH5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2882?email_source=notifications\u0026email_token=AFTOJK3QMI32B3Q4C6IYSGLP6Q5PTA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AZH5A",
"url": "https://github.com/quicwg/base-drafts/pull/2882?email_source=notifications\u0026email_token=AFTOJK3QMI32B3Q4C6IYSGLP6Q5PTA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6AZH5A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d244379cab59_3473fb5ceecd95c26940a8--


From nobody Tue Jul  9 00:35:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 482C11201B3 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:35:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vFtzuqCpoLIp for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:35:45 -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 59E8712011F for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:35:45 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:35:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562657744; bh=AOEX+InRoMeX32pZFX/YskxZ0eD5ZS4pUzBgAoUULeA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=B6aaoZy9jTojtzQnV0xfER86GXM8l2iBQ66N8mO8wb9USbjFqS0V5sZcFYGK6YgJE xWkq9H1Ign9MdQBO6E32RnA9b57CSpEgU2zn5+mxHjaXTmUSAvCCrCcY90pq9UvptJ Z+FUD4AyrL7BfToOlTFyAOq5FKiIaVVqZDIgHPCs=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ3G2PRUTXC7I7DELN3GF3FBEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509527089@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2443d038d65_4ee83f81918cd9601741334"; 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/6UZTZJ3SxXNXcU--r1JM70GdKdc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:35:47 -0000

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

I considered that, and you refer to the fact that the cryptographic handshake packets are the ones that are sent when you have a loss detection timeout. And that these are the only packets that are sent.  I worded this carefully to say that you send 1-RTT, ack-eliciting packets.  Should I say "In addition to retransmitting crypto packets, ..." or something along those lines?

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

<p>I considered that, and you refer to the fact that the cryptographic handshake packets are the ones that are sent when you have a loss detection timeout. And that these are the only packets that are sent.  I worded this carefully to say that you send 1-RTT, ack-eliciting packets.  Should I say "In addition to retransmitting crypto packets, ..." or something along those lines?</p>

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


From nobody Tue Jul  9 00:38:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 551381201CA for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:38:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8YxqCVfgg7tn for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:38: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 BA78012011F for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:38:23 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:38:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562657902; bh=wGDYOcYENtAblvaGzhiE79rksLSAIl2XykhZKSirDpI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gdCNtKO69yK9yckgtEyCK9Ws4d8ZtSiNEXSdmsjTGN1z5IkVr7+Bxl01tsmoAi1e/ XVwD7PkLFWlWhZLo3EfpAdKkLKDSygys5a0g7K4T2WLEm9hL3UuJFvRrFZBfNzceyR xjpXjxhJYJJssXAkKe3QX8u3vjsKXn22+2TlHOOo=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2DEP3N6MOF7FZMDMV3GF3O5EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509527873@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24446ec5e05_3b953f8f2c2cd968382372"; 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/beFLnX8B0rABXDZi5fs41LDSAOg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:38:25 -0000

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

If that=E2=80=99s the way we=E2=80=99re going to fix this (I=E2=80=99m no=
t sure if it=E2=80=99s the best way), we would need to edit the recovery =
document as well. That would be a pretty ugly special case in the retrans=
mission algorithm we describe.=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/2881#issuecomment-509527873=

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

<p>If that=E2=80=99s the way we=E2=80=99re going to fix this (I=E2=80=99m=
 not sure if it=E2=80=99s the best way), we would need to edit the recove=
ry document as well. That would be a pretty ugly special case in the retr=
ansmission algorithm we describe.</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/2881?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK2UUXE6774L4MZ6UVLP6Q565A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMV=
BW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPMOQI#issuecomment-509527873">view it on =
GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-au=
th/AFTOJK2IBQFNWENZEEYOZ2TP6Q565ANCNFSM4H7CMENA">mute the thread</a>.<img=
 src=3D"https://github.com/notifications/beacon/AFTOJK45N3HST42PDVZHV5DP6=
Q565A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOOR=
PWSZGODZPMOQI.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/2881?email_source=3D=
notifications\u0026email_token=3DAFTOJK2UUXE6774L4MZ6UVLP6Q565A5CNFSM4H7C=
MENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPMOQI#i=
ssuecomment-509527873",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2UUXE6774L4MZ6UVLP6Q565A5CNFSM4H7CME=
NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPMOQI#iss=
uecomment-509527873",=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_5d24446ec5e05_3b953f8f2c2cd968382372--


From nobody Tue Jul  9 00:42:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8C0DA120359 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:42:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id shEm0qKLHTVY for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:42: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 D268C1200C1 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:42:43 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:42:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562658162; bh=MQRLoGp+VlSX3LiE1ggLRLLgiyZ/0hbkDEfL6wNtX/U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ScEfCF+X8ZUyIhGD+qLWYRpgR2hjdmoid4fX0ooCJx8FbI4DxItod9eQFkgFym65a fesYi50B1rOFF35B28wN+2Rh80IEDRoh87a+BAwR1lnzGgPzBdnmYjGIz2SQCrVJ0f ZkgPMhG8UEPimTkXy8Ds7CowlbzPuH2+iruyDzrQ=
From: mirjak <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXZMOOTWLLG6N2T3N3GF37FEVBNHHBWZGHNE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2834/509529283@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2834@github.com>
References: <quicwg/base-drafts/issues/2834@github.com>
Subject: Re: [quicwg/base-drafts] Long Header Packets and Routing Connection IDs (#2834)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2445729359b_7ff63fec4f4cd968210073"; 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/YsFNeRKBfmSAG6GqZxPqtVbVl2E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:42:46 -0000

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

We also have a section about CID and load balancing in the manageability draft. However it's pretty short and could definitely need more text. That's what it currently says:

"In the case of content distribution networking architectures including load balancers, the connection ID provides a way for the server to signal information about the desired treatment of a flow to the load balancers. Guidance on assigning connection IDs is given in {{?QUIC-APPLICABILITY=I-D.ietf-quic-applicability}}."

-- 
You are receiving 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/2834#issuecomment-509529283
----==_mimepart_5d2445729359b_7ff63fec4f4cd968210073
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We also have a section about CID and load balancing in the manageability draft. However it's pretty short and could definitely need more text. That's what it currently says:</p>
<p>"In the case of content distribution networking architectures including load balancers, the connection ID provides a way for the server to signal information about the desired treatment of a flow to the load balancers. Guidance on assigning connection IDs is given in {{?QUIC-APPLICABILITY=I-D.ietf-quic-applicability}}."</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2834?email_source=notifications&amp;email_token=AFTOJK4HTU3FJI2ZGZ22MNLP6Q6PFA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPMZQY#issuecomment-509529283">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3N64X57AFM4GWHLWDP6Q6PFANCNFSM4H2ZGBSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Q2HJDT4WAOMD6FHLP6Q6PFA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPMZQY.gif" height="1" width="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/2834?email_source=notifications\u0026email_token=AFTOJK4HTU3FJI2ZGZ22MNLP6Q6PFA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPMZQY#issuecomment-509529283",
"url": "https://github.com/quicwg/base-drafts/issues/2834?email_source=notifications\u0026email_token=AFTOJK4HTU3FJI2ZGZ22MNLP6Q6PFA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPMZQY#issuecomment-509529283",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2445729359b_7ff63fec4f4cd968210073--


From nobody Tue Jul  9 00:44:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BEF1D12036A for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:44:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_lFnmXa_0UU for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:44: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 B46C6120364 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:44:07 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:44:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562658246; bh=cxl/47YB9BIxqbFOoM6vLnkk4vSloqFhQSFynxMci0o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NHmNQOPxjfTVBOHxs/Qlg8THDDb6lrhTlA1/swwEgvGN+7Cj/NhF5iis7XiiuJYDK e1I9dxwiA+2X3f1kQ1gaHM39TSvJkA8vFeakU6iuJ2YNvwL5/fTnBTvhm8bja7wwiw kwW3dDvRr1y7UxuqfxrlTogSFjqRD0z1EVcPO4qY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FZFQLAQAFTLYJONV3GF4ENEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509529782@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2445c6a7bc0_75563fe2b5ccd96815675b2"; 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/Y3Y3s_lYCtdTskCXpn6gLyoO4YU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:44:10 -0000

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

Well, keep in mind that "recovery" for PING, which is the way you would approach this if you never had anything to send, depends on you generating a new PING with every transmission.  So it's not that terrible.

For our implementation, we would simply crank the lever and spit out another packet when the PTO fires, which would produce a packet that coalesced the missing Handshake with a 1-RTT packet.

It only gets hairy when the lost Handshake packet overflows the MTU.  Which, sadly, is possible.  If we lost more than a PMTU, it gets a little hairy, because we will probably won't send any 1-RTT packets ever.  I might be willing to let the connection time out in that case 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/2881#issuecomment-509529782
----==_mimepart_5d2445c6a7bc0_75563fe2b5ccd96815675b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Well, keep in mind that "recovery" for PING, which is the way you would approach this if you never had anything to send, depends on you generating a new PING with every transmission.  So it's not that terrible.</p>
<p>For our implementation, we would simply crank the lever and spit out another packet when the PTO fires, which would produce a packet that coalesced the missing Handshake with a 1-RTT packet.</p>
<p>It only gets hairy when the lost Handshake packet overflows the MTU.  Which, sadly, is possible.  If we lost more than a PMTU, it gets a little hairy, because we will probably won't send any 1-RTT packets ever.  I might be willing to let the connection time out in that case 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/2881?email_source=notifications&amp;email_token=AFTOJK4JZX5NRVECM6A23HTP6Q6UNA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPM5NQ#issuecomment-509529782">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZIXAV2FN6BVANAVN3P6Q6UNANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK25O5WISK6FDLE73CLP6Q6UNA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPM5NQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4JZX5NRVECM6A23HTP6Q6UNA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPM5NQ#issuecomment-509529782",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4JZX5NRVECM6A23HTP6Q6UNA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPM5NQ#issuecomment-509529782",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2445c6a7bc0_75563fe2b5ccd96815675b2--


From nobody Tue Jul  9 00:50:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7DDF112036A for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:50:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 uahe-R7dYbUG for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:50:10 -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 AF4701200FE for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:50:10 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:50:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562658609; bh=Gep8ldpez9GTGB+I11KiuPVkCnqwcxc+DX4rhNYaUFQ=; h=Date:From:To:Subject:From; b=EAAYk+rjiLgZICVrhhMiEKWOyaqkzThj+2GarjzsJK/uGgMcYd5set7eYdkmDmLiq wQRqVJ6OegxvOezAng7apby3xqA/XeHkPyFpcqbNfae8CUYAYd2kQaEEE4qeuEWA6f LJSN459C7ILk5JoH/PaUw7DUxJeI1rLJKQDzMEhQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/430ae0-f52203@github.com>
Subject: [quicwg/base-drafts] f52203: send 1-RTT in addition to retransmitting handshake...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CxGL8XIYTz8Sr5F8ofB2jyNvc18>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:50:13 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: f5220308f1c8b141e66b5dfb5049c5969023070b
      https://github.com/quicwg/base-drafts/commit/f5220308f1c8b141e66b5dfb5049c5969023070b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  send 1-RTT in addition to retransmitting handshake packets



From nobody Tue Jul  9 00:50:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2D2611200FE for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:50:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PWBJljiB2Z8k for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:50:19 -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 3AED412036A for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:50:19 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:50:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562658618; bh=GfQDtRzKhD/bncHow9wzZy5crJ1btRF8SC2IHkS59fU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PlGEVxnbpGGNLi3C/VvuWxvjBeT3Q6kGWzcnv1Ks5bLxNSfrTvYJQcTvCTV4CSMld CThnJmotBYk8OWInQE0pDZ1fxPpBIhG1Tq42mDzT0t2RAQ1QQVoAczvM658S2J6/pZ wc96Tvk1XB1jZto0aqGRjsuw7xMaQZ7N6JkAT9ZQ=
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/2881/push/3796326125@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24473a17803_5bac3fc7c08cd9681752395"; 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/KiIiJImCFUXPsr2BGUvV1uCS8gA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:50:21 -0000

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

@martinthomson pushed 1 commit.

f5220308f1c8b141e66b5dfb5049c5969023070b  send 1-RTT in addition to retransmitting handshake packets


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881/files/430ae03d4fcbdfe1f940ad23a317e9a04e31740f..f5220308f1c8b141e66b5dfb5049c5969023070b

----==_mimepart_5d24473a17803_5bac3fc7c08cd9681752395
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/f5220308f1c8b141e66b5dfb5049c5969023070b">f522030</a>  send 1-RTT in addition to retransmitting handshake packets</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/2881/files/430ae03d4fcbdfe1f940ad23a317e9a04e31740f..f5220308f1c8b141e66b5dfb5049c5969023070b?email_source=notifications&amp;email_token=AFTOJK2VX4EDNWDMEHPH3ADP6Q7LVA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZSGYYTENI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QTUBI5HQGUYUL7HLP6Q7LVANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3QDSIHS7TJIHRL7QTP6Q7LVA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZSGYYTENI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881/files/430ae03d4fcbdfe1f940ad23a317e9a04e31740f..f5220308f1c8b141e66b5dfb5049c5969023070b?email_source=notifications\u0026email_token=AFTOJK2VX4EDNWDMEHPH3ADP6Q7LVA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZSGYYTENI",
"url": "https://github.com/quicwg/base-drafts/pull/2881/files/430ae03d4fcbdfe1f940ad23a317e9a04e31740f..f5220308f1c8b141e66b5dfb5049c5969023070b?email_source=notifications\u0026email_token=AFTOJK2VX4EDNWDMEHPH3ADP6Q7LVA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZSGYYTENI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d24473a17803_5bac3fc7c08cd9681752395--


From nobody Tue Jul  9 00:51:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 286F512036A for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:51:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FHadVwCAhlBl for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:51: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 8D3E31200FE for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:51:21 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:51:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562658680; bh=f3GVPBWZ5+ldDkBU+Yyyetr7OZ74MDnao3cy7x5fQnc=; h=Date:From:To:Subject:From; b=AXsoJgrobwiJoBnuMHiPpDY53mMYG27qIu2JiicaeQmAiTjRUhroVN5Fb5rKZ1Ek8 jpRfWRRfAKqddRNkeqQL/OghnpFLloU8bAsSqXd8XM/wk4vpe/zEBB5Ywm4pM4Erog p2KStZNscg4CW/6wLelWoe5EJ1kthczSNnNO15sg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/33ca2b-fe51f9@github.com>
Subject: [quicwg/base-drafts] fe51f9: Script updating gh-pages from f5220308. [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/C4ETi77jSHWNmY21GPP7CfX_KFo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:51:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fe51f9edee0e79595bc79209cce5254675bf1fbf
      https://github.com/quicwg/base-drafts/commit/fe51f9edee0e79595bc79209cce5254675bf1fbf
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M index.html
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.html
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.txt

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



From nobody Tue Jul  9 00:57:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 066A1120380 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:57:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ei59BMExeVpx for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:57: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 09AEA12010C for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:57:56 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:57:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659074; bh=k3E0WJL9098eWsgC1Hv8F54mrGM0X9M6vOPlOqFh9v4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KAvZnXsdFTzUzC45UoakN44BpZ8TTl5y+dO2/KniyMxKH1dPFzdxOsYQdHpE9Hzwg 0dBpHn2W13Cjtqnktv6iXzPCPlhVfSUm7BmXrDE6sAoKDxMYLNTuUBIeXhft6jvkLa HDkKaU13fMnXJhnmzKNCqSCVWgoTzcq3DvzcBK5g=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4J4V7HAABGTSTY7F53GF5YFEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509534345@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244902c6f0c_58f93f81918cd96020880ec"; 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/P2dpWXIzhBPJLIu623RTU11KVog>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:57:58 -0000

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

> Well, keep in mind that "recovery" for PING, which is the way you would approach this if you never had anything to send, depends on you generating a new PING with every transmission.

If I understand your point correctly, you would either need to change `    RetransmitUnackedCryptoData()` into `RetransmitUnackedCryptoDataAndAtLeastOne1RTTPacket()` or `RetransmitUnackedCryptoDataAndSend1RTTPing()`. That sounds doable, but it gets complicated when you take the congestion controller into account: It could happen that you have enough cwnd to send the retransmissions for the Handshake packets, but not for the 1-RTT packet. What you really want is to send the retransmission for the 1-RTT packet as a probe packet (i.e. never blocked by congestion control).

> I might be willing to let the connection time out in that case though.

I don't think timing out is acceptable in the case where just 2 packets are lost. In my opinion, the only case where a timeout is justifiable is if the connection is (effectively) blackholed.

You can see the root cause of #2863 as not a problem with loss recovery at all, but with our definition of "handshake confirmed": The server is dropping the keys too early. If the server kept the keys for longer, this loss pattern would harm the connection 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/pull/2881#issuecomment-509534345
----==_mimepart_5d244902c6f0c_58f93f81918cd96020880ec
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Well, keep in mind that "recovery" for PING, which is the way you would approach this if you never had anything to send, depends on you generating a new PING with every transmission.</p>
</blockquote>
<p>If I understand your point correctly, you would either need to change <code>    RetransmitUnackedCryptoData()</code> into <code>RetransmitUnackedCryptoDataAndAtLeastOne1RTTPacket()</code> or <code>RetransmitUnackedCryptoDataAndSend1RTTPing()</code>. That sounds doable, but it gets complicated when you take the congestion controller into account: It could happen that you have enough cwnd to send the retransmissions for the Handshake packets, but not for the 1-RTT packet. What you really want is to send the retransmission for the 1-RTT packet as a probe packet (i.e. never blocked by congestion control).</p>
<blockquote>
<p>I might be willing to let the connection time out in that case though.</p>
</blockquote>
<p>I don't think timing out is acceptable in the case where just 2 packets are lost. In my opinion, the only case where a timeout is justifiable is if the connection is (effectively) blackholed.</p>
<p>You can see the root cause of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462368523" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2863" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2863/hovercard" href="https://github.com/quicwg/base-drafts/issues/2863">#2863</a> as not a problem with loss recovery at all, but with our definition of "handshake confirmed": The server is dropping the keys too early. If the server kept the keys for longer, this loss pattern would harm the connection at all.</p>

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


From nobody Tue Jul  9 00:59:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B1E0120380 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:59:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cSvcinauK17I for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 00:59:40 -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 7463B12010C for <quic-issues@ietf.org>; Tue,  9 Jul 2019 00:59:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 00:59:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659179; bh=zRp6J3bgOd8x2jBBPtpGcFlniwcbrRN9HxvqOHJELaE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y1LeD7b85OXRFOxmGXCgTfXiAFB7pxNsS6jzuOV6l4N9orUYjSdcvu6R3bm0QvEbt rAB04gPqWJKf62HuZXdq8oRH96A1ZolMHGRu0R7lUzTdEecyh2IQdUDoMH9ctJhYNc cxk5EQzLR1CnfkepE2MhOiHnFlx6sT2ocJbOGpUk=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2L6OCICOEZL6IPFE53GF56XEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509534880@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24496b185ba_5be23fe7e00cd96c1792d5"; 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/xboa5UNJC_lp7IeEQy3q_qf2r40>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 07:59:42 -0000

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

@martinthomson I think that's a good idea, as long as we can summarize the pros and cons of each proposal before the vote.

-- 
You are receiving 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/2670#issuecomment-509534880
----==_mimepart_5d24496b185ba_5be23fe7e00cd96c1792d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> I think that's a good idea, as long as we can summarize the pros and cons of each proposal before the vote.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK72ZKCKNP4H5UUFCVLP6RAOXA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOFIA#issuecomment-509534880">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ7BBSRYMKFZUP2MB3P6RAOXANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3CUUEXI47EF7KZWULP6RAOXA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOFIA.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK72ZKCKNP4H5UUFCVLP6RAOXA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOFIA#issuecomment-509534880",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK72ZKCKNP4H5UUFCVLP6RAOXA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOFIA#issuecomment-509534880",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24496b185ba_5be23fe7e00cd96c1792d5--


From nobody Tue Jul  9 01:00:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BE0CF12010C for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:00:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6zqJCdJDonqE for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:00: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 78BBF1200FA for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:00:26 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:00:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659225; bh=W2P0FRJyJH/N9lbdGao3LrdQzhxxcioT5OqURiKnYTU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RiFIlhhPeskBJFdPcqlPtCQIB1ocqAXhKIS1Znd4hOMur6PLctHTcKw27TG87hCN8 rVc6VoidalTohXPetxH+sUvyep/CDhTptid4aiPiqADbM3tjYn1S3cHwo9G9xShQzk 68a82+g318A6QGgNFdW225Ta2mVnH1R3lPWIl5Uw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KHRMDQU3VUOEWLYN3GF6BTEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509535130@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24499971102_15733fef4e0cd960269396a"; 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/smjvWa_QATzam0bZfV-UxpCxNwU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:00:28 -0000

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

Don't the Handshake packets consume cwnd also?

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

<p>Don't the Handshake packets consume cwnd also?</p>

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


From nobody Tue Jul  9 01:03:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7F378120113 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:03:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Wq3D11eMqLRy for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:03:42 -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 ECABE120115 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:03:41 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:03:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659420; bh=SM6mdg6ZYm6VVRLOF3ILKU5Ut19kvhHQ74Sb0AdCua0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SL5HELppSX+nuEO8Kl0tyZu0rwkkSLsn/xWxxf/QDlJu1GJrOwgjVTI1FQPlZBOsP JDa2MBoF95YBtLas86eJdOedBio31csCNllIrEYBquVnt1B03jibpORl+T++GoSwlc Dg0rshIUVjBaXqkVLpFKuBQ9cdopao+2NokYWdhU=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7AUOLYX6M7MSB5V4V3GF6NZEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509536210@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244a5cc8c96_7a133fa06e6cd95c182351a"; 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/3MxXMNoL1rTzmwLCUxdPx0LGVRc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:03:44 -0000

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

> Don't the Handshake packets consume cwnd also?

@martinthomson That's exactly the problem. They consume cwnd, although they're not even lost (as in "dropped by the network"), just dropped as undecryptable by the peer. In this situation, freeing up this cwnd is only possible after completion of the handshake, when all loss recovery state for non-1-RTT packets is 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/2881#issuecomment-509536210
----==_mimepart_5d244a5cc8c96_7a133fa06e6cd95c182351a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Don't the Handshake packets consume cwnd also?</p>
</blockquote>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> That's exactly the problem. They consume cwnd, although they're not even lost (as in "dropped by the network"), just dropped as undecryptable by the peer. In this situation, freeing up this cwnd is only possible after completion of the handshake, when all loss recovery state for non-1-RTT packets is 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/2881?email_source=notifications&amp;email_token=AFTOJKYAQCEAS7STJVOCQTLP6RA5ZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOPUQ#issuecomment-509536210">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZUWJZAEFATO4XU3CLP6RA5ZANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYEXHWH7BGSVR4RB6TP6RA5ZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOPUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKYAQCEAS7STJVOCQTLP6RA5ZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOPUQ#issuecomment-509536210",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKYAQCEAS7STJVOCQTLP6RA5ZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPOPUQ#issuecomment-509536210",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d244a5cc8c96_7a133fa06e6cd95c182351a--


From nobody Tue Jul  9 01:08:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 453F91200FA for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:08:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 uwZY68TRCjk7 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:08: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 747B612010C for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:08:53 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:08:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659732; bh=pxwWTE+ZyQW+y5x0aDjuo8YxbRDv6TA2mVLrhddUNbM=; h=Date:From:To:Subject:From; b=av8b0CKYrGjiyDpT/Yb1Yy3jDvQJRPilub1QjQ8KFAU6OGvBBdm49MMNYpFzpBxFd wZYr1VDsqp+WQvj+NXOR/RsM9TpvTKRjIB8any5EC4q2MpX3aC1J2m9oVmi6PKAYbh orOAG5fXqbvVMK7f6oIwFEkmQKMJ0IftjrDz1vXQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/f52203-795a4d@github.com>
Subject: [quicwg/base-drafts] 795a4d: Enhance recovery draft with confirmation stuff
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EBA4KxW7C8lIgSYbiIDq-7YlVTQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:08:56 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 795a4d98354adacf727b0e41bf8ddb70f7921644
      https://github.com/quicwg/base-drafts/commit/795a4d98354adacf727b0e41bf8ddb70f7921644
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Enhance recovery draft with confirmation stuff



From nobody Tue Jul  9 01:09:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6FF5112010C for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:09:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CLKQpsugRLpE for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:09: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 D55E61200FA for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:09:01 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:09:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659741; bh=bI22bdKW+heCEaYK1PUHUvnG2Cju1sfz2RFkvEROcb0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2HNFbnYycRCWipVdxiMPQ1wLohstlodWhhHqWWZhbAzqV7yC4rzlxRbHP/LMh+xwS 0iqTyQi+XxqXPvdBEyOp1XwF+9GNQ+wC9JDv6ialTxMBnWebehquAPwoj0WpYvvjKx dFtyjznAlBGScwMk/FzlAmZrPxkyIMrJ/wDrr4mQ=
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/2881/push/3796390321@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244b9cea21d_d553ffc89acd968218370"; 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/WJ5yzlxdh4JCpvUahYjs5LJYDWQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:09:05 -0000

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

@martinthomson pushed 1 commit.

795a4d98354adacf727b0e41bf8ddb70f7921644  Enhance recovery draft with confirmation stuff


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881/files/f5220308f1c8b141e66b5dfb5049c5969023070b..795a4d98354adacf727b0e41bf8ddb70f7921644

----==_mimepart_5d244b9cea21d_d553ffc89acd968218370
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/795a4d98354adacf727b0e41bf8ddb70f7921644">795a4d9</a>  Enhance recovery draft with confirmation stuff</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/2881/files/f5220308f1c8b141e66b5dfb5049c5969023070b..795a4d98354adacf727b0e41bf8ddb70f7921644?email_source=notifications&amp;email_token=AFTOJKYGURMR3CMG5GABE7LP6RBRZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZZGAZTEMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YGQDS5EMGP4CY4FDP6RBRZANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3R2NHOO6A66HDMW5DP6RBRZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZZGAZTEMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881/files/f5220308f1c8b141e66b5dfb5049c5969023070b..795a4d98354adacf727b0e41bf8ddb70f7921644?email_source=notifications\u0026email_token=AFTOJKYGURMR3CMG5GABE7LP6RBRZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZZGAZTEMI",
"url": "https://github.com/quicwg/base-drafts/pull/2881/files/f5220308f1c8b141e66b5dfb5049c5969023070b..795a4d98354adacf727b0e41bf8ddb70f7921644?email_source=notifications\u0026email_token=AFTOJKYGURMR3CMG5GABE7LP6RBRZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTG44TMMZZGAZTEMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d244b9cea21d_d553ffc89acd968218370--


From nobody Tue Jul  9 01:10:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BB4CA12011D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:10:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lOZ2SSdlkx0I for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:10: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 6BD1C120391 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:10:15 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:10:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659814; bh=3eSYBUS4nwU7piGc5tWCxWQnRS26M0plTtzXDbBM9/c=; h=Date:From:To:Subject:From; b=FcxD1xNRTCwfxzxXimsdjCzq+z4EMjdKNnJRrVnDqsxVmwM/xe7mV4aMOyJKxxa2n Zp7hWSGWGYQpiFZsmIPCOOScRU5kt3UdHYjUf0p52oE1jlk7J7b0Qng2789uEFJHcl NRnLv47SmPQPb5zUI8QGq2eJ6SDyLu5OSfg0sjek=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fe51f9-eda9a0@github.com>
Subject: [quicwg/base-drafts] eda9a0: Script updating gh-pages from 795a4d98. [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/Dm13QaLIBUHfl0uSjttkxgRJZL8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:10:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: eda9a00f12c77cfd205946d46151e1ef6dae156a
      https://github.com/quicwg/base-drafts/commit/eda9a00f12c77cfd205946d46151e1ef6dae156a
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M index.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.txt

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



From nobody Tue Jul  9 01:11:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CE768120116 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:11:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Pqdu6W36yCUP for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:11: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 2C3141200FA for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:11:27 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:11:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659886; bh=yQMl2FZEIZ/jV6Jo1PQf5vhE2EadH9rPxbUxAkJN0FU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pr3+DJitcPB+RQ1R+FCf7br85rIqDcGRDmW3opm4JI8s/dKq35otHqXif+IsWqLJT V+E6SORmaerNkfB3GTgIX14c4RwHScrcnj29c3b0Kv6NWg/lSPlbKY+old1C7Jb7RR c7WVEbJosHNDpAZwwuCLtiGEhwn6fdaSi4OrT5zg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYGFBX5YTVPA22H2453GF7K5EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509538760@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244c2e42001_20613fda450cd96026156e1"; 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/MfXP2CuN4jrvVLEY0-pmmYj51uw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:11:29 -0000

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

So whatever we do to get to confirmation helps.  But until that point, we're headed to a completely unrecoverable 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/2881#issuecomment-509538760
----==_mimepart_5d244c2e42001_20613fda450cd96026156e1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So whatever we do to get to confirmation helps.  But until that point, we're headed to a completely unrecoverable 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/2881?email_source=notifications&amp;email_token=AFTOJKY2SCZQSSXZNKSUWTLP6RB25A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPDSA#issuecomment-509538760">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJCBGTSBYGXGJMTALP6RB25ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5CMCSCO6NWDQ7BRILP6RB25A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPDSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKY2SCZQSSXZNKSUWTLP6RB25A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPDSA#issuecomment-509538760",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKY2SCZQSSXZNKSUWTLP6RB25A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPDSA#issuecomment-509538760",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d244c2e42001_20613fda450cd96026156e1--


From nobody Tue Jul  9 01:13:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E2C1E12011E for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:13:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qHZ7QnlFJ7SZ for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:13:05 -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 44B2E1200FA for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:13:05 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:13:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562659984; bh=Z7PsESf49IkRQ3Zd14s6SeAXI6ddZvpFrk45uYBJJvA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zqzIBPMRcXDO+woZJPLrwLZSvXWycnEVLPtgIQdxSytOhEKeS6lvai306FEzX07LV p9iSLCEEg7nn4AHZwq1nfuhZMQggEOupkk+12gQQ8z0ePWymBYiO8ssbHZakJLKIx/ SnHDGim9tbQfqO58m6evW/bFRGhL7oXCPKGcI1U8=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YHB3VTBL7Z55VVSN3GF7RBEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509539278@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244c9017acc_2a713fed2aacd96821130f2"; 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/i80TKO2Qb1Hi_aJcuL_LF1d_Wjg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:13:07 -0000

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

We would have to say that the 1-RTT packet has to be treated like a probe packet (i.e. not blocked 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/2881#issuecomment-509539278
----==_mimepart_5d244c9017acc_2a713fed2aacd96821130f2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We would have to say that the 1-RTT packet has to be treated like a probe packet (i.e. not blocked by the congestion controller).</p>

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


From nobody Tue Jul  9 01:15:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CB239120125 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:15:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xYd0d_FgATRb for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:15:46 -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 CF0C11200FA for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:15:45 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:15:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562660144; bh=zuICGC4YhbNUiHGk+cIwKKMGtsopyaHSiF8COrfGUA0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Szerdhc2WoHBZ7eF853VvajYQbv7ZMFZqxt0bKytc36e8CznrMpZzki9YsDF7MNZG QZgyovV2ES4PWbyb/ynSjk1RWtW6xgyp775QvZ8Dvpb6ivTi5uUizgagfgYfrLxBuk xSAYoD0f8V+HuwTKjSJvI/20hgq/gdH2jSDkIczw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYDTFL5GX3SCVFU4553GF73BEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509540201@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244d301cf4e_389d3fec1eccd9641380816"; 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/9cwh5hvaawElDasVRGpQglSbrZg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:15:48 -0000

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

As I understand the state of play, the main costs are bytes on the wire (potentially across a wide range of operating points: short RTT, fast processor to long RTT, slow processor), code complexity, and efficiency of calculating the values for encode (e.g., division vs. shift) or decode (e.g., multiply vs. shift).

Did I miss anything?

-- 
You are receiving 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/2670#issuecomment-509540201
----==_mimepart_5d244d301cf4e_389d3fec1eccd9641380816
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As I understand the state of play, the main costs are bytes on the wire (potentially across a wide range of operating points: short RTT, fast processor to long RTT, slow processor), code complexity, and efficiency of calculating the values for encode (e.g., division vs. shift) or decode (e.g., multiply vs. shift).</p>
<p>Did I miss anything?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK6JH44XUNWVGB6772TP6RCLBA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPO2I#issuecomment-509540201">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZMRMUZIVK2UYDGD3LP6RCLBANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4LHPLNONGR4QLDHSTP6RCLBA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPO2I.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK6JH44XUNWVGB6772TP6RCLBA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPO2I#issuecomment-509540201",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK6JH44XUNWVGB6772TP6RCLBA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPPO2I#issuecomment-509540201",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d244d301cf4e_389d3fec1eccd9641380816--


From nobody Tue Jul  9 01:18:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8966D120326 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:18:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 HAlf_-lvlNr5 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:18: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 994BC1200FA for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:18:53 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:18:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562660332; bh=yIvilv4+SvVAzqK4rWSbxgseb3/e4t8D1ayn+ZoWd80=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LKLc9f3pGeUo+9aKk3+DJRBfopLeuFJ8mrn+un6rkM0pMXUvPcO0XPC34hzN3hCoH 7B6NIIdQGh7RecfncXxHiYSwJ7zAeNawJyEqzFOiormV0K9+6Dh3LBVxCpUX3Y/15w zxp6ZuhU1BbjemEcJlOA/yX2GQGCsKV4M3E1lLw0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXN4XNHSQMWOGHXEV3GGAGZEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509541374@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d244dec822cc_67633fd25f2cd960223961"; 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/KuS0XzB5kQjpuUFG5HXS18CySiI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:18:56 -0000

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

Why?  The retransmitted Handshake packets aren't and in this case these are the ones that will run the CWND down.  The 1-RTT PING barely counts.

Can't we just let the CWND burn down?  Do you really think that by this point you will want to send more than CWND worth of these?  I know that it's small at this point (maybe just one packet more than baseline), but if we use INIT_CWND = not_too_small, then we get quite a few goes before this becomes terminal.

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

<p>Why?  The retransmitted Handshake packets aren't and in this case these are the ones that will run the CWND down.  The 1-RTT PING barely counts.</p>
<p>Can't we just let the CWND burn down?  Do you really think that by this point you will want to send more than CWND worth of these?  I know that it's small at this point (maybe just one packet more than baseline), but if we use INIT_CWND = not_too_small, then we get quite a few goes before this becomes terminal.</p>

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


From nobody Tue Jul  9 01:31:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AB967120397 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:31:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ZvNRyNWfD00i for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:31: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 EE5F8120385 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:31:30 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:31:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562661089; bh=EmWyzFdQ9fjELVLO37672iG83WpsxFEu2feFSYmBXEM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Vk8Pm4i0zkTwyWeGdfIpB3hawjsSmWELiE2mDWTD1+kIeV6AzifYm4dyjhGQi/aJ4 01djmebPWqhuCB5VP+z2KT9zzfwiizZPkYq9rU7CRlXVkfxvv7VEhHLADclw4eguh7 Tjq+q3cNAXbPkwAVL90Cj3EGB1cv9Eh73/W57hfE=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4M4HAAXES2SPLRQQF3GGBWDEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509545923@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2450e1ad6a7_7e23feaae4cd960611351"; 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/5Qy8j0fsxgSm9Xm_XGyjJgyTESg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:31:33 -0000

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

Depending on the application this is actually quite likely, or even the common case. Assume that the client has a bit of data to send in the first flight, then this would fill up the cwnd completely. You don't even need must, just 10 packets, minus the Handshake packets in flight (which might contain a certificate chain), and their retransmissions.

> Why? The retransmitted Handshake packets aren't and in this case these are the ones that will run the CWND down. The 1-RTT PING barely counts.

The problem is not the size of the 1-RTT PING, but the fact that we might already be congestion limited once we try to send 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/2881#issuecomment-509545923
----==_mimepart_5d2450e1ad6a7_7e23feaae4cd960611351
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Depending on the application this is actually quite likely, or even the common case. Assume that the client has a bit of data to send in the first flight, then this would fill up the cwnd completely. You don't even need must, just 10 packets, minus the Handshake packets in flight (which might contain a certificate chain), and their retransmissions.</p>
<blockquote>
<p>Why? The retransmitted Handshake packets aren't and in this case these are the ones that will run the CWND down. The 1-RTT PING barely counts.</p>
</blockquote>
<p>The problem is not the size of the 1-RTT PING, but the fact that we might already be congestion limited once we try to send 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/2881?email_source=notifications&amp;email_token=AFTOJKYQFCAJYF3HV3CVII3P6REGDA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPQ3QY#issuecomment-509545923">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3UXQXKMKZOZJ234S3P6REGDANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4EC3LFL5654JKVDETP6REGDA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPQ3QY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKYQFCAJYF3HV3CVII3P6REGDA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPQ3QY#issuecomment-509545923",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKYQFCAJYF3HV3CVII3P6REGDA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPQ3QY#issuecomment-509545923",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2450e1ad6a7_7e23feaae4cd960611351--


From nobody Tue Jul  9 01:44:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B54BC1203E6 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:44:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 8R2Txqe9Kpah for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:44: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 78761120407 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:44:31 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:44:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562661870; bh=hSKeKuHrAx/87NjwqG++lQGZ3sdOJrOmcYKpFttapwY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oGem3RXLc4mwSlkzrX8u2nJQyUoflHN4oMputGmoIQesMtAn3bKB0B21uBe2Awbfr D8rxdKUtNQh5UgJhJ1PAPp6YT0/QNQgbi3gwfiQTGnTqFUfhJchBbsZ4jGwtV2s8pT Oe57IjM3a6TDBC/v6uxwQzs13wP2MOeT3IQkLHtc=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ZIUSGB4SDCP2ER7V3GGDG5EVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509550574@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2453ee31f1a_6af43fa2068cd95c2193824"; 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/tclZmYgjUX2H55HZoF_x3mCz4tU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:44:41 -0000

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

Looks fine, but what about some guidance on stream vs connection errors? And also the principle of nearly always choosing a hard protocol violation error, or a more granular error with same effect?

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

<p>Looks fine, but what about some guidance on stream vs connection errors? And also the principle of nearly always choosing a hard protocol violation error, or a more granular error with same effect?</p>

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


From nobody Tue Jul  9 01:51:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 73A721203A1 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:51:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.908
X-Spam-Level: 
X-Spam-Status: No, score=-6.908 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id I0SHNNt-H-s7 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 01:51:40 -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 CF9781203A8 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 01:51:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 01:51:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562662299; bh=tOjxiPqmftc7JMJdbLeHM3TY516u0YSH5F5B+3OsqK0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RNDwRY89WhkVk28ODVbtlsxWKBg5Ogh3NUna9rb8LkGJZxZ5q2Xl0FSUwtCQUKyjN jJYaTarQogImCYxWCuxBcprjoUtjhiBte3qv4KSsDCHUkAZ6c2UYFxCF4/vTPR6mKT CHROrEPSTKXqpLM79Lxuw+MkHmIsDqZ8lYm7oI80=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5P7HB63YG6CDJP4B53GGEBXEVBNHHBXQGJ7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2882/c509553232@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2882@github.com>
References: <quicwg/base-drafts/pull/2882@github.com>
Subject: Re: [quicwg/base-drafts] Remove spin coordination requirement (#2882)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24559b7c188_571c3fed2aacd9682857494"; 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/ooTA_b6okfcmu-SziWTvGNtmI-M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 08:51:43 -0000

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

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/2882#issuecomment-509553232
----==_mimepart_5d24559b7c188_571c3fed2aacd9682857494
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>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/2882?email_source=notifications&amp;email_token=AFTOJKYSPA5AK3NRPOJKUNTP6RGRXA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPSUUA#issuecomment-509553232">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5TFDXSHW2ABUQIBXLP6RGRXANCNFSM4H7CP7EA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NYP22O2G6S62GBELP6RGRXA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPSUUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2882?email_source=notifications\u0026email_token=AFTOJKYSPA5AK3NRPOJKUNTP6RGRXA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPSUUA#issuecomment-509553232",
"url": "https://github.com/quicwg/base-drafts/pull/2882?email_source=notifications\u0026email_token=AFTOJKYSPA5AK3NRPOJKUNTP6RGRXA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPSUUA#issuecomment-509553232",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24559b7c188_571c3fed2aacd9682857494--


From nobody Tue Jul  9 02:00:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9D6FB1203B3 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:00:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id w5oKy1IdaF51 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:00: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 5032A12010C for <quic-issues@ietf.org>; Tue,  9 Jul 2019 02:00:45 -0700 (PDT)
Date: Tue, 09 Jul 2019 02:00:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562662844; bh=otGfqYL00f1YDJ0qsJ3rNRlEwx0JRKhZx3i6URDpyFI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0xVlPowz/RUG6gTR8FhDZKmee91p2/XFEphy99X1VwEesUgWrGzs+yrj68H+vedXp 5B0OKCcBrLAIB/O8ppIVT1zGNVKzGIwAyEBERPFjo223RyFzWAcfQ0ly4AW+u8UAPI 1cOaTpT29gbIYGa0cewv5ng40kL2PFu10JhqzyS4=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ALRW3ILBSFLYNSA53GGFDZEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/259362486@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2457bc2b1d8_69863f87958cd9603204248"; 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/MdRPfYh-9QpFAI8tB3PtQm6fFlI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 09:00:48 -0000

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

mikkelfj commented on this pull request.



> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

Remember that asynchronous senders cannot always coordinate counters exactly. So process A uses some packet numbers, process B user some others, interleaved. you cannot be sure acks are exactly in sync, only approximately so. If the receiver looks at largest acked rather than packet numbers I think it should be ok.

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

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2879#discussion_r301473963">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in
</pre>
<p>Remember that asynchronous senders cannot always coordinate counters exactly. So process A uses some packet numbers, process B user some others, interleaved. you cannot be sure acks are exactly in sync, only approximately so. If the receiver looks at largest acked rather than packet numbers I think it should be ok.</p>

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


From nobody Tue Jul  9 02:47:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 016A61203A1 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:47:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nhvXmEA_k-jm for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:47:31 -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 D32461200B6 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 02:47:30 -0700 (PDT)
Date: Tue, 09 Jul 2019 02:47:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562665649; bh=d1SQusTbUJIo4eaglNs5S83KVlU8PovM54xuI+Abp5k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KBS9J3HPe+BmHBRhypHHQjjg63tihZD/YyPw/Lx+78M4Il+MKBlOO5zGQ187ZWNfl /XO17rCEq94vsYwV8UY/Grp4k3xLqYL8SYQ0Dze6UbjeoLCcaN8On95vLZFUsP7kQw COedFOv8DPiApVSrA7QczV7PJAi7LN22cycD/3AY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UVW6BWIM5BZ6AT753GGKTDEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c509573810@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2462b13d428_26a63fd988acd96497282f"; 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/5S5PM1lq3dpDece7Csj0IovhPR4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 09:47:33 -0000

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

> The problem is not the size of the 1-RTT PING, but the fact that we might already be congestion limited once we try to send it.

Right, but this is a condition where 1-RTT packets might not be processed by the server.  The client can't know if the server really needs the Handshake packets or the 1-RTT packet.  If we want to exempt anything from CWND, wouldn't we need to exempt both?

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

<blockquote>
<p>The problem is not the size of the 1-RTT PING, but the fact that we might already be congestion limited once we try to send it.</p>
</blockquote>
<p>Right, but this is a condition where 1-RTT packets might not be processed by the server.  The client can't know if the server really needs the Handshake packets or the 1-RTT packet.  If we want to exempt anything from CWND, wouldn't we need to exempt both?</p>

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


From nobody Tue Jul  9 02:48:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5EFB11203A1 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:48:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l8o0cPSmimea for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:48: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 C18C11200B6 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 02:48:52 -0700 (PDT)
Date: Tue, 09 Jul 2019 02:48:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562665731; bh=9t1D/GOAevGEawrUuzvc/PwZBQyIpD7VlTdWI/xw7Po=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VQy1OgDT9JasnVH97Bg4LI68Dp3JAK56WqNrFm7OwoUcyaBdJ/ZWszMQ8cnramRPW gO7WC7W55pTOvwX3EpWw2X6PPjoiVV5+fHpF0Aa+jWgjodF+L/DRreV8svakS2jfh3 OGIWpXYOiXAjSeLGgiygCmrzp1P0YbyP51mXM8CY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64ZAHSDVURPMWAXGF3GGKYHEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509574253@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d246303a1030_29be3fec1eccd96430586fa"; 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/TF8eBfx0P_FBCFS_6_0xZ_3QKiU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 09:48:55 -0000

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

Stream vs. connection is something that application protocols (like HTTP) need to worry about.  The transport only concerns itself with connection errors.  The idea that you pick the most helpful error is not something that we need to codify (in my view).

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

<p>Stream vs. connection is something that application protocols (like HTTP) need to worry about.  The transport only concerns itself with connection errors.  The idea that you pick the most helpful error is not something that we need to codify (in my view).</p>

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


From nobody Tue Jul  9 02:58:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4509F1203E6 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:58:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0_WcKYN8mIUq for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 02:58: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 A3669120390 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 02:58:11 -0700 (PDT)
Date: Tue, 09 Jul 2019 02:58:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562666290; bh=Lbw7eK/YXRVR4UvmVdAqr46uOe2rnlLskpDdgVLdzi8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fDeAQH7VNM2OXvFIqY5zE99IQx0RMhhBKz0rdjcaHq1fU4IhzKel1IvI862b6ruNJ hyDEHn3cxF1GAjFRccyAtGnIylIpdHYrv0FLejVjKiZHo6tmlkRWQWcg7d0aAZpKgj bV1RV4s/G3McCvKravUuVt5iVqxoGukjtw6Uf16Q=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IZZDL657NT365YH53GGL3FEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509577457@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24653273efe_1c263fec1eccd9644550eb"; 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/WTgoWZnXeMJSlHMmVdImT19DXhU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 09:58:13 -0000

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

> Stream vs. connection is something that application protocols (like HTTP) need to worry about. 

Isn't that worth mentioning? Or do we already have such 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/2880#issuecomment-509577457
----==_mimepart_5d24653273efe_1c263fec1eccd9644550eb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Stream vs. connection is something that application protocols (like HTTP) need to worry about.</p>
</blockquote>
<p>Isn't that worth mentioning? Or do we already have such 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/2880?email_source=notifications&amp;email_token=AFTOJK7E3TU3WPDRXN57TMDP6ROLFA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPYR4I#issuecomment-509577457">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52AIHOWGAB2VKB4BTP6ROLFANCNFSM4H7CJCEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7PRMTTROIATYEJFSLP6ROLFA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPYR4I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJK7E3TU3WPDRXN57TMDP6ROLFA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPYR4I#issuecomment-509577457",
"url": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJK7E3TU3WPDRXN57TMDP6ROLFA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPYR4I#issuecomment-509577457",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24653273efe_1c263fec1eccd9644550eb--


From nobody Tue Jul  9 03:01:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EFC08120437 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:01:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ACyTpb4-1UM0 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:01: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 DAC17120422 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 03:01:22 -0700 (PDT)
Date: Tue, 09 Jul 2019 03:01:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562666481; bh=s0EoAaf8Vl/iiBte9XTXt6UNznfJcMM7X1vb17xPxhM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0/hyPdgYfybzyhyp4uL05xaYWrutgysp0N9bK2sRJNxPwJLzhrylaSHftuozfizxx 0DtSiucc1x8tEaDou8ZZloKl0CAiZE6dOkKdD+SqyUEXgPU/trgSJOZC73mv37pYwu DMLRGNt+aSrymfvwrMBzKhiqZa8TX3GlFqO4DQOs=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2D3QKYMKZISECCPTF3GGMHDEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509578537@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2465f146a43_44e73febaf8cd9641297672"; 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/U8QTNCfabyyO8JXrR9xh8CX9Etw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 10:01:28 -0000

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

> Isn't that worth mentioning? Or do we already have such text?

This is already discussed in Section 11, which makes me wonder if it would make more sense for text on this PR to be placed there too.

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

<blockquote>
<p>Isn't that worth mentioning? Or do we already have such text?</p>
</blockquote>
<p>This is already discussed in Section 11, which makes me wonder if it would make more sense for text on this PR to be placed there too.</p>

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


From nobody Tue Jul  9 03:08:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 22492120400 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:08:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iRqwLfb8WDP5 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:08: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 686021203FC for <quic-issues@ietf.org>; Tue,  9 Jul 2019 03:08:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 03:08:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562666919; bh=6uNG31VxP46B5kBAVwsMQN6GxJKzejKX93MtwbbolX8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TwkFylL3rt/g6qE0Bc4/am/bFJ08HuTryXsJMZE/UGn2Kr7eL0lEyPvkiFnfr1mFC 054RTJwQTN4+xAZbaHW5MiNcXKz6HbRSLBQkFKX8N9L7JDMMP32yL3i/Ivb8q00fjz bMQogsL/38oHCfBNwcsLqUtXtsDC2QDJOOjv9XPw=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYTN554WCTB32QBZ2N3GGNCPEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509580881@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2467a710a28_74e33fe331ecd96c145283"; 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/6pcP1Ya6ygkyHeclDEwyZWhFELk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 10:08:42 -0000

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

>  The idea that you pick the most helpful error is not something that we need to codify (in my view).

This I do not disagree with. I was merely suggesting that we explain why, as a general rule, a hard error is preferred as a design principle, not the nature of the error message which I do think should have a large degree of freedom.

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

<blockquote>
<p>The idea that you pick the most helpful error is not something that we need to codify (in my view).</p>
</blockquote>
<p>This I do not disagree with. I was merely suggesting that we explain why, as a general rule, a hard error is preferred as a design principle, not the nature of the error message which I do think should have a large degree of freedom.</p>

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


From nobody Tue Jul  9 03:18:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AEC44120406 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:18:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Njmr0k4yLm0T for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:18: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 17E261203FC for <quic-issues@ietf.org>; Tue,  9 Jul 2019 03:18:11 -0700 (PDT)
Date: Tue, 09 Jul 2019 03:18:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562667489; bh=Sk/LGNnwjb1xcYfQ1qYc6d7FwRrsVOnTY74jTydHo3k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EqmpkUNpA+F+Hv5eOW3oyYky9rj6I6TZKHaak7kfiDWYmYqZTNyUGvigwPSdYGLMQ RSJ777D5hQL7cuN+iA60x2IbVN2l5JGRwvsMlqiVE/EOJElFOoLWNdBNR0KpLFGsWW NLwI+lNdhgJ1UsNDomlHcUfD9JLOpyaNYngrDqQQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYA76I5HCCKPFXMJYN3GGOGDEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509583920@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2469e1c89cd_6ec3fd25f2cd96079582"; 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/3IdPCPekD7yCtT4-tXfpkBShArM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 10:18:13 -0000

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

Maybe there is a followup needed for the HTTP draft.  If the principles are generally the same, we can copy the text and then add some more to cover the idea that we make most errors fatal to the connection rather than the stream.

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

<p>Maybe there is a followup needed for the HTTP draft.  If the principles are generally the same, we can copy the text and then add some more to cover the idea that we make most errors fatal to the connection rather than the stream.</p>

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


From nobody Tue Jul  9 03:46:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A823012043E for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:45:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-K68HBosNsV for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 03:45:53 -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 AA50D12041D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 03:45:53 -0700 (PDT)
Date: Tue, 09 Jul 2019 03:45:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562669152; bh=XB5UHiOHb0VnEtBGoiErkXZb9iqk0XbFjnoEN+gcWQ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MgXZPHVgG3Rv1QiFwm8Et/yaTZ4IZAoydKVSw/HzpA5K78he1sahKry0RqYlmu4TX oG2kFszUwAIiMbhVsKWK0zNtGeC6O1PwcjeVCEHBOXe0g0QtDFcb2bXlXgHT7cpv/P C9WfyaNofsi/sAFUxEdUqQZDQm3OSHeklfg0j45I=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6Y3V6GDK4IZLMVA3V3GGROBEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/259418179@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24706075698_41ec3fec1eccd96426741e"; 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/tfHnnHlPUZ1MCNkNi0fVgj0eqvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 10:45:58 -0000

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

nibanks 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/2806#pullrequestreview-259418179
----==_mimepart_5d24706075698_41ec3fec1eccd96426741e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@nibanks</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/2806?email_source=notifications&amp;email_token=AFTOJK2DYUWM4LB5T63D7L3P6RT6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB53GQQY#pullrequestreview-259418179">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4W4FYWAFBZRERONHLP6RT6BANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2OF6JBTN2ROANPDRDP6RT6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB53GQQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK2DYUWM4LB5T63D7L3P6RT6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB53GQQY#pullrequestreview-259418179",
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK2DYUWM4LB5T63D7L3P6RT6BA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB53GQQY#pullrequestreview-259418179",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24706075698_41ec3fec1eccd96426741e--


From nobody Tue Jul  9 07:10:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 765DC120141 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 07:10:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id osltfzhIQodO for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 07:10:44 -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 CEEE912016A for <quic-issues@ietf.org>; Tue,  9 Jul 2019 07:10:44 -0700 (PDT)
Date: Tue, 09 Jul 2019 07:10:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562681443; bh=JEzAbWj397JJS21dQUZatoW85sKk2UeBp5av+WF1f/Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gdvS1q3VK5FtlElQXYlrYFiMuirO7UzrONZs1YR1Qj342qajqJc6+rKVHQpMZWHc8 yvIXISqjrmNAyuutNwcnEv3fiJZAOC+yFPzPsYGIpXc0es7iIeUbmgasZ1d4rDh/HO k8B9PFptj3DZDd0IRJcbaJL237And70NSiFi4NvI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7O56M5Z3BX5ISCTIN3GHJOHEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509658584@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24a063d06f9_6ec3fd25f2cd9602635941"; 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/P7bru0GRejI8LRSd8uRA-1MGT_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: Tue, 09 Jul 2019 14:10:48 -0000

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

I like Lucas suggestion of adding this text to the existing and already fairly complete text in section 11.

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

<p>I like Lucas suggestion of adding this text to the existing and already fairly complete text in section 11.</p>

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


From nobody Tue Jul  9 07:53:16 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 629081205CB for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 07:53:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 EUsuldV6WmjZ for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 07:53: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 BC9DD12049D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 07:53:07 -0700 (PDT)
Date: Tue, 09 Jul 2019 07:53:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562683986; bh=wRdEuasGwbzbVG1/IoOFWcc+QAYL7mcQFT+SaxSMFmQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=yXHNnf1Ay2nv2OSdLEGqWIZJyQ4tcFQfGZdCV3zEvzlShmeUD2AguoKKAngNrrNrg 8YFIWGdMJT/C1SPh29CeTQZAuwIG3wwtzaQ1d+qWQA+E5U/BjmWquyWGcFokVnpiqX TmhD5NifwS0AtJODkeXwDy6gXsPS95VboucsOGM4=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75R33MR5MFCXJQSRV3GHONFEVBNHHBXQ7YLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2883@github.com>
Subject: [quicwg/base-drafts] fixed typo (#2883)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24aa5282f90_6bb03f8f2c2cd96826086db"; 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/Qa9oqoNmx807XKDLuH79sr5o_E0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 14:53:16 -0000

----==_mimepart_5d24aa5282f90_6bb03f8f2c2cd96826086db
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/2883

-- Commit Summary --

  * fixed typo

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2883.patch
https://github.com/quicwg/base-drafts/pull/2883.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/2883

----==_mimepart_5d24aa5282f90_6bb03f8f2c2cd96826086db
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/2883'>https://github.com/quicwg/base-drafts/pull/2883</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>fixed typo</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2883.patch'>https://github.com/quicwg/base-drafts/pull/2883.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2883.diff'>https://github.com/quicwg/base-drafts/pull/2883.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/2883?email_source=notifications&amp;email_token=AFTOJK6T33PU332XJ7QXB23P6SQ5FA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6D7BNQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7S6QMC6BZ3B4TT3A3P6SQ5FANCNFSM4H7GMDBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OZW44EWNYLBCNRQTP6SQ5FA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6D7BNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2883?email_source=notifications\u0026email_token=AFTOJK6T33PU332XJ7QXB23P6SQ5FA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6D7BNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2883?email_source=notifications\u0026email_token=AFTOJK6T33PU332XJ7QXB23P6SQ5FA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6D7BNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d24aa5282f90_6bb03f8f2c2cd96826086db--


From nobody Tue Jul  9 08:37:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CD6B71201F8 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 08:37:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TvSVSxMavgux for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 08:37:03 -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 5E5D612017C for <quic-issues@ietf.org>; Tue,  9 Jul 2019 08:37:03 -0700 (PDT)
Date: Tue, 09 Jul 2019 08:37:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562686622; bh=bWMvlJe0VuIxnwTD0JWGHqiaaXfsqfZNshW9ky92q9w=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=dRETwkK0KYEH3CRlrNfE3WMW8QqNT7uNU/Z+agepseFXzKvGmS9OC2jald/Ju88eT 7zW6nI1L+xJFI7k4HAlrs6KHqfwVsPou52Nj3R7MJ9DK2W/hVVfV9XwaU3mNlwiCU/ 5KSdhAvMnL91xiOSpYDehcB7p/3Dk/+Z+dc+EPSk=
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JJ2ZQU6LRTDLN2HF3GHTR5EVBNHHBXRCWWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2884@github.com>
Subject: [quicwg/base-drafts] Inconsistency in STOP_SENDING requirements relative to resetting streams in general (#2884)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24b49e4f591_5c563feaae4cd96017569d4"; 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/W5_HgWt9AC2vjhna5v7WKAwfHR8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 15:37:06 -0000

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

Section 11.2 of the transport draft reads:

>RESET_STREAM MUST be instigated by the protocol using QUIC, either directly or through the receipt of a STOP_SENDING frame from a peer. RESET_STREAM carries an application error code. Resetting a stream without knowledge of the application protocol could cause the protocol to enter an unrecoverable state. Application protocols might require certain streams to be reliably delivered in order to guarantee consistent state between endpoints.

This would suggest that the transport implementation itself should not be deciding to send RESET_STREAMs on its own, rather it is a matter of the application protocol using QUIC. However, it is somewhat weaselly about STOP_SENDING. My original interpretation of this text was that the implementation should expose the fact that a STOP_SENDING has been received, but it is up to the application protocol to actually reset the stream. This interpretation is not consistent with section 3.5, Solicited State Transitions: 

> A STOP_SENDING frame requests that the receiving endpoint send a RESET_STREAM frame. An endpoint that receives a STOP_SENDING frame MUST send a RESET_STREAM frame if the stream is in the Ready or Send state. If the stream is in the Data Sent state and any outstanding data is declared lost, an endpoint SHOULD send a RESET_STREAM frame in lieu of a retransmission.
I believe the only reasonable way to interpret this is that the transport itself should respond to the STOP_SENDING by issuing a RESET_STREAM.

Requiring that the QUIC implementation itself reset the stream seems to go against the philosophy that the protocol should have complete control over resets. It's true that in the case of receiving a STOP_SENDING, the protocol on the other side is asking for a RESET_STREAM, but the entity being solicited should be its peer protocol implementation, not the QUIC implementation. I believe we can fix this by altering the normative text requiring sending a RESET_STREAM, instead prescribing that an application protocol ought to handle STOP_SENDING by eventually fulfilling the solicited 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/2884
----==_mimepart_5d24b49e4f591_5c563feaae4cd96017569d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Section 11.2 of the transport draft reads:</p>
<blockquote>
<p>RESET_STREAM MUST be instigated by the protocol using QUIC, either directly or through the receipt of a STOP_SENDING frame from a peer. RESET_STREAM carries an application error code. Resetting a stream without knowledge of the application protocol could cause the protocol to enter an unrecoverable state. Application protocols might require certain streams to be reliably delivered in order to guarantee consistent state between endpoints.</p>
</blockquote>
<p>This would suggest that the transport implementation itself should not be deciding to send RESET_STREAMs on its own, rather it is a matter of the application protocol using QUIC. However, it is somewhat weaselly about STOP_SENDING. My original interpretation of this text was that the implementation should expose the fact that a STOP_SENDING has been received, but it is up to the application protocol to actually reset the stream. This interpretation is not consistent with section 3.5, Solicited State Transitions:</p>
<blockquote>
<p>A STOP_SENDING frame requests that the receiving endpoint send a RESET_STREAM frame. An endpoint that receives a STOP_SENDING frame MUST send a RESET_STREAM frame if the stream is in the Ready or Send state. If the stream is in the Data Sent state and any outstanding data is declared lost, an endpoint SHOULD send a RESET_STREAM frame in lieu of a retransmission.<br>
I believe the only reasonable way to interpret this is that the transport itself should respond to the STOP_SENDING by issuing a RESET_STREAM.</p>
</blockquote>
<p>Requiring that the QUIC implementation itself reset the stream seems to go against the philosophy that the protocol should have complete control over resets. It's true that in the case of receiving a STOP_SENDING, the protocol on the other side is asking for a RESET_STREAM, but the entity being solicited should be its peer protocol implementation, not the QUIC implementation. I believe we can fix this by altering the normative text requiring sending a RESET_STREAM, instead prescribing that an application protocol ought to handle STOP_SENDING by eventually fulfilling the solicited 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/2884?email_source=notifications&amp;email_token=AFTOJKZYM4BO2E5D63RWKH3P6SWB5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EK2ZA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLYHFKE5EWULALCD3P6SWB5ANCNFSM4H7G2LTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3MRAFIM24T7Z47LJDP6SWB5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EK2ZA.gif" height="1" width="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/2884?email_source=notifications\u0026email_token=AFTOJKZYM4BO2E5D63RWKH3P6SWB5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EK2ZA",
"url": "https://github.com/quicwg/base-drafts/issues/2884?email_source=notifications\u0026email_token=AFTOJKZYM4BO2E5D63RWKH3P6SWB5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EK2ZA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24b49e4f591_5c563feaae4cd96017569d4--


From nobody Tue Jul  9 09:01:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5FEDC120735 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:01:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OuURt6Gk-EXt for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:01: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 1464F120658 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 09:01:12 -0700 (PDT)
Date: Tue, 09 Jul 2019 09:01:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562688070; bh=xt/36XuYlgLLe5aZn9KGdkdiKQHoAeSi7bQV2nb5mUQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oaNlakVQBhYPC9L+G5Cm0alK4gidPbvZ3GjrscU0dUy1pjkT/TpU39LErarbze2IP SHNfJyUva4eMuGE0w15UDuW8NDuw6gMNXu1VDKPXXODnJcUvLWA2YFMCtM0bq2+X/Z CahVvfkmF2E8xpRZBpFuCbFU0Ue1lTWrZh4aOw7w=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FHBTL5JON27RFIH53GHWMNEVBNHHBXQ7YLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2883/review/259604203@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2883@github.com>
References: <quicwg/base-drafts/pull/2883@github.com>
Subject: Re: [quicwg/base-drafts] fixed typo (#2883)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24ba46893c5_30c93ffc89acd9685668ac"; 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/8FGOtQtt9TMG3t9Q9XytWS-Fv9s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 16:01:24 -0000

----==_mimepart_5d24ba46893c5_30c93ffc89acd9685668ac
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/2883#pullrequestreview-259604203
----==_mimepart_5d24ba46893c5_30c93ffc89acd9685668ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2883?email_source=notifications&amp;email_token=AFTOJK7AXGVGREKTDAYA2MLP6SY4NA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB54T52Y#pullrequestreview-259604203">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2I47Q6NFORQOUSRBTP6SY4NANCNFSM4H7GMDBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYMUNDSKWB5O5W6RQLP6SY4NA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB54T52Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2883?email_source=notifications\u0026email_token=AFTOJK7AXGVGREKTDAYA2MLP6SY4NA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB54T52Y#pullrequestreview-259604203",
"url": "https://github.com/quicwg/base-drafts/pull/2883?email_source=notifications\u0026email_token=AFTOJK7AXGVGREKTDAYA2MLP6SY4NA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB54T52Y#pullrequestreview-259604203",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24ba46893c5_30c93ffc89acd9685668ac--


From nobody Tue Jul  9 09:36:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E6034120696 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:35:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.908
X-Spam-Level: 
X-Spam-Status: No, score=-6.908 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rX_eWm8BFEoZ for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09: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 ECC06120026 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 09:35:50 -0700 (PDT)
Date: Tue, 09 Jul 2019 09:35:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562690150; bh=Mh+1Ie80QeokyCA6NS3TwmXkHJ/+y7bb9601cDMQkvg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=IbBbzndBusKzraDlKk/p0B2QP6WLFUEFXnB3O1kQpWQrp4DfTcTFE/dc9laBN1TXs gGFQaM890hr3FAMIm/3SnHx+5rKqdR4blVuxF5NegU97z+X3TVTlpzOTIFBeMOVVKU feI44++tHi6IJszjosIaYYuMltfPGKjKrFQBG8Zo=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYBH6CZMDBKMUEJHDN3GH2OLEVBNHHBXRGDIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2885@github.com>
Subject: [quicwg/base-drafts] Appendix A of quic-tls is wrong (#2885)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24c265e7641_6a393fa2068cd95c29714cf"; 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/lm4a3GUdRp2Dnsh57Gsaa6T1CyI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 16:35:56 -0000

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

The initial salt changed in draft-21, but there is no change to the example initial keys.

-- 
You are receiving 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/2885
----==_mimepart_5d24c265e7641_6a393fa2068cd95c29714cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The initial salt changed in draft-21, but there is no change to the example initial keys.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2885?email_source=notifications&amp;email_token=AFTOJKZOF5H7RIL3CDZGRULP6S46LA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EYNAA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDKSP63D5GQJ3SHL3P6S46LANCNFSM4H7HK5YQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2LOGJDRWZNT64I75TP6S46LA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EYNAA.gif" height="1" width="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/2885?email_source=notifications\u0026email_token=AFTOJKZOF5H7RIL3CDZGRULP6S46LA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EYNAA",
"url": "https://github.com/quicwg/base-drafts/issues/2885?email_source=notifications\u0026email_token=AFTOJKZOF5H7RIL3CDZGRULP6S46LA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6EYNAA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24c265e7641_6a393fa2068cd95c29714cf--


From nobody Tue Jul  9 09:52:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B76FB1207D5 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:52:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 99dDcOgENLve for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:52: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 4660F1207CF for <quic-issues@ietf.org>; Tue,  9 Jul 2019 09:52:52 -0700 (PDT)
Date: Tue, 09 Jul 2019 09:52:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691171; bh=ZyVSl0WCiqtX8KbvfIONTiaBtyVGU/XPkgOqzNPf4Ag=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ohk8UzfgdFLgtQmWTGlBcBqoxM23bnho2NFCvGBCONW47a7giEHpf1eXO3vkmDzLF 1xfZwYU9LhKuoSSZbx3K9IFt8PQGhrDoRLFMGaLRZUg8HRQmJMrm66PEq6ond6kH5L cQDDwOmoChbD9UG0qbp3+j87CycLcmSHBjRV3ZJo=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4GUKLW75QVGP2ZSFV3GH4OHEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/c509721572@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24c66335837_112b3ffc89acd9683020372"; 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/2sFpkOV-NGnpPgoOVLEajT7OMjM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 16:52:54 -0000

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

Thanks for walking through that attack Marten, I was under the impression it was no longer necessary, but I'll revert that change and add the TP back.


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

<p>Thanks for walking through that attack Marten, I was under the impression it was no longer necessary, but I'll revert that change and add the TP back.</p>

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


From nobody Tue Jul  9 09:57:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6B22F12029E for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:57:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 leLf5XbFq1Pp for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09: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 3BB6E1202EC for <quic-issues@ietf.org>; Tue,  9 Jul 2019 09:57:24 -0700 (PDT)
Date: Tue, 09 Jul 2019 09:57:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691443; bh=20AY16mJEb3hO2r++xw+QCL3Kpxa5j7CMHK57amAvO4=; h=Date:From:To:Subject:From; b=AWgZtgQCmbqgKkE1IXUt2+hQTpU09LQ6vStPpo7cVAXPqKGUOp4qb3w8WJdYqqdPS e7m4geK3bAuie2ZnADF1WQzDC13WpK3mavEFNaBU5MOV2XYLLPLTnmeZ9nCiAJ/bST noB6LLxJqyE7d/1EWu1saBjqKu0MhLyNlprc2edA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/1ce0a2-b40c48@github.com>
Subject: [quicwg/base-drafts] b40c48: Revert changes 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/ir4FrQr4vFVenDrWBVXr3SCJNkg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 16:57:40 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: b40c482826276b4a9e610c71d8428256c515ebfb
      https://github.com/quicwg/base-drafts/commit/b40c482826276b4a9e610c71d8428256c515ebfb
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Revert changes to transport



From nobody Tue Jul  9 09:57:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BB192120294 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:57:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4D0exeaKArW6 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:57: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 608851202FB for <quic-issues@ietf.org>; Tue,  9 Jul 2019 09:57:31 -0700 (PDT)
Date: Tue, 09 Jul 2019 09:57:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691450; bh=TgZIIId//AnTUS9V7AXEjilj9al1uwdnbsZ83SRUHhg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EdUpSvGwQXS7bPp4jd354AgTTY2riEeDglWu+fm4BQ+orlToAf/4sv9UL33YIkxHn PI94wJb4awyczQhkNeql4qtyc6FrqRxmN62wkXUmlanjNdD2XxCwyy6EhUuEFzJHQ/ rFK+gLlUlddFlz2380YwDPWiCaNcuBw2lKp45qMk=
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/2878/push/3798457073@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24c77a3c7eb_74b73fa2068cd95c2970577"; 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/5pjNQz8tEReG3HrCi2Qv9yIWMhM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 16:57:48 -0000

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

@ianswett pushed 1 commit.

b40c482826276b4a9e610c71d8428256c515ebfb  Revert changes to transport


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

----==_mimepart_5d24c77a3c7eb_74b73fa2068cd95c2970577
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/b40c482826276b4a9e610c71d8428256c515ebfb">b40c482</a>  Revert changes to transport</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/2878/files/1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7..b40c482826276b4a9e610c71d8428256c515ebfb?email_source=notifications&amp;email_token=AFTOJK5CMDWPJLU7CMKXR4DP6S7PVA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBVG4YDOMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7U2SRHIIOD5RSR723P6S7PVANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5AUADKIU6BDNQ3ZDP6S7PVA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBVG4YDOMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878/files/1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7..b40c482826276b4a9e610c71d8428256c515ebfb?email_source=notifications\u0026email_token=AFTOJK5CMDWPJLU7CMKXR4DP6S7PVA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBVG4YDOMY",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/1ce0a2e693321014ad5b0d4a0b160f8ad613e1f7..b40c482826276b4a9e610c71d8428256c515ebfb?email_source=notifications\u0026email_token=AFTOJK5CMDWPJLU7CMKXR4DP6S7PVA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBVG4YDOMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d24c77a3c7eb_74b73fa2068cd95c2970577--


From nobody Tue Jul  9 09:58:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0710112029E for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:58:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R4B8KqDvacjP for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 09:58: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 114ED12031E for <quic-issues@ietf.org>; Tue,  9 Jul 2019 09:58:48 -0700 (PDT)
Date: Tue, 09 Jul 2019 09:58:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691526; bh=U2mgffOlvIIG7Rvo2Xcb8xTvv6fKIha6lw6tUR614QU=; h=Date:From:To:Subject:From; b=YvFuBxUpckqUzg9vUiDzUbkLqXiedD88QjXOpfsAFRlZKsSbLnfQTz6IRUTK3QgJg 5UWV1gMPXMnhYdPk4HSqhUIZQPXiHX/lWVLad+4HTeVr9egsZT/bTfo+369DVP4KUI HgEQFgGMCYl+30Xl4JUDqA6+50woKK2eu0wI25+8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/eda9a0-374db3@github.com>
Subject: [quicwg/base-drafts] 374db3: Script updating gh-pages from b40c4828. [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/DyxCKxdr9ERUiJXBVwdH3bL51HI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 16:58:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 374db33ddc98fa4812ec216edd3594e6b90448a7
      https://github.com/quicwg/base-drafts/commit/374db33ddc98fa4812ec216edd3594e6b90448a7
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Jul  9 10:00:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7A131201AA for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:00:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 sAJSGObTEFsL for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:00:13 -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 AC544120734 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 09:59:57 -0700 (PDT)
Date: Tue, 09 Jul 2019 09:59:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691596; bh=VLmLkoGaA4E4+44WRLe18P0ZOxdqqnUKDTNiosUkL1M=; h=Date:From:To:Subject:From; b=d/wVU8ksq//Lz0eAHfpBRzDQ8+rvi2pWMOVD48bcAQ1S2qxy+8pDCDwiPuoipTAEH KyqLPBQ0+weji81dLfpu0gWQDL+ZpI0ZEUbvC0VOWaVGxl/KEccGOpDNJ9Fj+0coDO vy+BKLimVXp8/MMVx/gGklAoWlS/XSzgC+srfVvI=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/b40c48-0ff466@github.com>
Subject: [quicwg/base-drafts] 0ff466: Martin's suggestion
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UpDpmf1W8Dp-ruzdEaopJmLOTl0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 17:00:15 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0ff466747fa6d13fcb1cf5fc8758f534f5b856c3
      https://github.com/quicwg/base-drafts/commit/0ff466747fa6d13fcb1cf5fc8758f534f5b856c3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Martin's suggestion



From nobody Tue Jul  9 10:00:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A14391201AA for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:00:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PcppsukHgPAQ for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:00:14 -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 8A822120770 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 10:00:06 -0700 (PDT)
Date: Tue, 09 Jul 2019 10:00:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691605; bh=btO/thf/Cxu8jFi+upJQOGR6zUJTlxK6RCPBvmfhor8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jurZ0O6clGgXoLRhscf4cphXZJMU23AE7GGOWBHytz1/DhvTPLpTvPPx3qSSsKfOT gCA6ooS7hcxp8uJMHq/QwtekayySVTluBEPSMevLWab/BYK432xLGGsls+4SaNPlSQ lgSZ0EZKFPks9xGpvLdNHI59VyBZZbcc81RzHDDg=
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/2878/push/3798465712@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24c815b1d6d_17b63feaae4cd96031680a4"; 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/0bh60pAcYQPhoZ5djzw-REIIyjg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 17:00:17 -0000

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

@ianswett pushed 1 commit.

0ff466747fa6d13fcb1cf5fc8758f534f5b856c3  Martin's suggestion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878/files/b40c482826276b4a9e610c71d8428256c515ebfb..0ff466747fa6d13fcb1cf5fc8758f534f5b856c3

----==_mimepart_5d24c815b1d6d_17b63feaae4cd96031680a4
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/0ff466747fa6d13fcb1cf5fc8758f534f5b856c3">0ff4667</a>  Martin&#39;s suggestion</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/2878/files/b40c482826276b4a9e610c71d8428256c515ebfb..0ff466747fa6d13fcb1cf5fc8758f534f5b856c3?email_source=notifications&amp;email_token=AFTOJK3GL242PLBDR2BDP7LP6S7ZLA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBWGU3TCMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ZEM26FEU3TY6557DP6S7ZLANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PZZI7JBABE2S3SWLP6S7ZLA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBWGU3TCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878/files/b40c482826276b4a9e610c71d8428256c515ebfb..0ff466747fa6d13fcb1cf5fc8758f534f5b856c3?email_source=notifications\u0026email_token=AFTOJK3GL242PLBDR2BDP7LP6S7ZLA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBWGU3TCMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/b40c482826276b4a9e610c71d8428256c515ebfb..0ff466747fa6d13fcb1cf5fc8758f534f5b856c3?email_source=notifications\u0026email_token=AFTOJK3GL242PLBDR2BDP7LP6S7ZLA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTG44TQNBWGU3TCMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d24c815b1d6d_17b63feaae4cd96031680a4--


From nobody Tue Jul  9 10:01:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD3721202C1 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:01:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_0pU_g79bVx for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:00:59 -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 498CD1207F4 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 10:00:54 -0700 (PDT)
Date: Tue, 09 Jul 2019 10:00:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691653; bh=Qk5Pu4GwwlpJwwBOXdGmiQoDnKCIBcqHJ5sxsOLfJhY=; h=Date:From:To:Subject:From; b=Q80ZT3fIp42t3RjV+beVvguT2XfoBAyOsZ1uy4h1XKqF4acVU4sLfpuJchLZ56Mgb FshRoQD4Nv5WWmAOiSKFMLHfIwHKcp5SQ/pqF/f1uZnOfmVv4pS9PUWqex6ObZi7A5 XWXz5H4ZuumuaA4A34lZGi7lFpprNic9oGb7Y0/8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/374db3-858c14@github.com>
Subject: [quicwg/base-drafts] 858c14: Script updating issues at 2019-07-09T17:00:46Z. [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/NgkWzluP03Q3e0g2xhbuQ2kJoEY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 17:01:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 858c14430a60a638b5c42492ea9fd70edf1cd45f
      https://github.com/quicwg/base-drafts/commit/858c14430a60a638b5c42492ea9fd70edf1cd45f
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-09T17:00:46Z. [ci skip]



From nobody Tue Jul  9 10:01:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 49B87120601 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:01:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id B0mPJTSc4loq for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:01: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 87EE612022E for <quic-issues@ietf.org>; Tue,  9 Jul 2019 10:01:22 -0700 (PDT)
Date: Tue, 09 Jul 2019 10:01:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562691681; bh=SjHmd3yQMOV0rLYeWSz5PrXOhG22w3s68DE0BUAyNRk=; h=Date:From:To:Subject:From; b=I9AUhoBBzEtZGA+qILeAtpVjLLIjAins3ZZg4VReVOX14yOpxNebVNQC/Nfb3Tykl GX7MC34jqiSyOhdPVJumeWbqu6wleAuuwyVKzT1umD+loFCEofphuesWzk9xt0kYG0 DZ4W4ujr6hXL5e+cLv6ZStcQNGR9vwgBcPFqZ75w=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/858c14-99a90d@github.com>
Subject: [quicwg/base-drafts] 99a90d: Script updating gh-pages from 0ff46674. [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/MMyyxVgkcvuAmgXJyqLO1CjDvZA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 17:01:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 99a90d17d1da41f3ef0d6fb6f316cb2dd5d1541e
      https://github.com/quicwg/base-drafts/commit/99a90d17d1da41f3ef0d6fb6f316cb2dd5d1541e
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.txt
    M index.html

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



From nobody Tue Jul  9 10:13:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5F1D51202C4 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:13:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id t3q7XBhWzUZp for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:13:40 -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 0078F120276 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 10:13:39 -0700 (PDT)
Date: Tue, 09 Jul 2019 10:13:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562692418; bh=VJw6lPM+qjW8mKkgz7DyF+/fW6h3xVRODlYClL35+UY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UBxK7HkTkT6B9bJRqkrmwPwQvdNgQx+FxSfPFlsnQt/RbOxxb0Hn7gwcyLYHX0vlo RPjVpETDvIYSRsCd/PR3WT7Pxt4kBjnylHEaenIAA414l7IT13SSZc3ZlHktjzgPGB II8uCqZvYo/9FlmVEzUs+/xm6g1PN0yJShEAdb4c=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6M2DRRRVZVYA2UBGN3GH64FEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509728546@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24cb42db0ed_1fb33fec1eccd964237844"; 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/bc4gy1roHVqjQ4YcHPwVOtnMw3c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 17:13:41 -0000

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

I'm fine with a vote in Montreal, though I'd really prefer not to remove this entirely.  If there is not a clear favorite, then I'd suggest doing a hum for which option people dislike most and not doing that one?

That list covers everything that comes to mind.

-- 
You are receiving 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/2670#issuecomment-509728546
----==_mimepart_5d24cb42db0ed_1fb33fec1eccd964237844
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm fine with a vote in Montreal, though I'd really prefer not to remove this entirely.  If there is not a clear favorite, then I'd suggest doing a hum for which option people dislike most and not doing that one?</p>
<p>That list covers everything that comes to mind.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK6JYGKUSN525UK25P3P6TBMFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZQ5OIQ#issuecomment-509728546">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HYKJO4UH47YGA4MLP6TBMFANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5YGFOF3BGB7QWAWOLP6TBMFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZQ5OIQ.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK6JYGKUSN525UK25P3P6TBMFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZQ5OIQ#issuecomment-509728546",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK6JYGKUSN525UK25P3P6TBMFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZQ5OIQ#issuecomment-509728546",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24cb42db0ed_1fb33fec1eccd964237844--


From nobody Tue Jul  9 10:13:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0E10A1202C4 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:13:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HGx_VFjShLns for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:13:54 -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 B1D00120276 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 10:13:54 -0700 (PDT)
Date: Tue, 09 Jul 2019 10:13:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562692433; bh=rcMW48TpfX6hwAKwd5HSMUR+MyL2BMqKTQOInbSl4VE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0CUdJQJ21re4GBFzkptq7VWrFkI9hKB1zqZFYGoO3c5jA5PXR7KbPKUqZqw8ORGlL RD0BtNbXbguNU0Dhv4y9fOgvYePUMtL1Qhxs1rrqsUqliVqh9rtKwv2l9nXtDAHIg6 QzkmukbwIMf5F4w7DLfBf1Q7or3PqFz5P93UdahQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7VG7HPVGYXEKP27NF3GH65DEVBNHHBXQGJ7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2882/review/259643521@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2882@github.com>
References: <quicwg/base-drafts/pull/2882@github.com>
Subject: Re: [quicwg/base-drafts] Remove spin coordination requirement (#2882)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24cb519de4a_10663fbd1f8cd9647560bf"; 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/7riIVRe6Z7-Ulu3eR73h2TaJ64c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 17:13:56 -0000

----==_mimepart_5d24cb519de4a_10663fbd1f8cd9647560bf
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/2882#pullrequestreview-259643521
----==_mimepart_5d24cb519de4a_10663fbd1f8cd9647560bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2882?email_source=notifications&amp;email_token=AFTOJKYOUJQUWXBLUXJ5PQ3P6TBNDA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB545RAI#pullrequestreview-259643521">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6YVYTS3IYO54QHOETP6TBNDANCNFSM4H7CP7EA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK772NB5JBPQPPIVDFDP6TBNDA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB545RAI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2882?email_source=notifications\u0026email_token=AFTOJKYOUJQUWXBLUXJ5PQ3P6TBNDA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB545RAI#pullrequestreview-259643521",
"url": "https://github.com/quicwg/base-drafts/pull/2882?email_source=notifications\u0026email_token=AFTOJKYOUJQUWXBLUXJ5PQ3P6TBNDA5CNFSM4H7CP7EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB545RAI#pullrequestreview-259643521",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24cb519de4a_10663fbd1f8cd9647560bf--


From nobody Tue Jul  9 10:20:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B38C31202C7 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:20:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oCSneuaJGcYQ for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 10:20:46 -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 EA1181201F1 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 10:20:45 -0700 (PDT)
Date: Tue, 09 Jul 2019 10:20:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562692844; bh=ddaoYXfcXq1LJzslh28vRc/4w0J6cN/2a93hgj6fa2A=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=A6+LcZUh6PG1+QtA56Y4tUDH6lmSp1eHMvqFHsRayVsjR7dYOP0qNw8iZ1jh/N0JQ yVfnQ4hoZucYs4NXYRMHTYXverGm8cAnh+7YKbXQC1ryPTYW81yiibKAX5C+cEtgJe gzxCSatevSe0yZ1oYlrf3iqZiU2418AxpYaseKQU=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMCDIWR3DAPULM2CN3GH7WZEVBNHHBXRIJFY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2886@github.com>
Subject: [quicwg/base-drafts] Crypto Retransmission Timeout interacts poorly with Congestion Control (#2886)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24ccece0550_462c3fef4e0cd96044171f"; 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/R6uU9v2VbFJLPvZVFt27t8rXDhg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 17:20:48 -0000

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

The crypto retransmission timeout works similar to the PTO timeout. On each timer expiration, you are supposed to send some data, and do an exponential backoff.
However, there's an important difference: PTO packets are not blocked by the congestion controller, whereas crypto retransmissions are. 

This can lead to a deadlock: Consider the case where the CFIN is lost, and the client sends all the available window of application data. When the crypto retransmission timer fires, the client would be supposed to retransmit the CFIN, but the congestion controller will not allow that. Furthermore, since the CFIN was lost, the server won't be able to read any of the 1-RTT packets, so cwnd will never be cleared.

-- 
You are receiving 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/2886
----==_mimepart_5d24ccece0550_462c3fef4e0cd96044171f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The crypto retransmission timeout works similar to the PTO timeout. On each timer expiration, you are supposed to send some data, and do an exponential backoff.<br>
However, there's an important difference: PTO packets are not blocked by the congestion controller, whereas crypto retransmissions are.</p>
<p>This can lead to a deadlock: Consider the case where the CFIN is lost, and the client sends all the available window of application data. When the crypto retransmission timer fires, the client would be supposed to retransmit the CFIN, but the congestion controller will not allow that. Furthermore, since the CFIN was lost, the server won't be able to read any of the 1-RTT packets, so cwnd will never be cleared.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2886?email_source=notifications&amp;email_token=AFTOJK4FJ4FQTDCWPMR36CLP6TCGZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6FBEXA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5AJ2JHENZIXZNCY73P6TCGZANCNFSM4H7HV22A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3M5JYSRCVW62H4GHDP6TCGZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6FBEXA.gif" height="1" width="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/2886?email_source=notifications\u0026email_token=AFTOJK4FJ4FQTDCWPMR36CLP6TCGZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6FBEXA",
"url": "https://github.com/quicwg/base-drafts/issues/2886?email_source=notifications\u0026email_token=AFTOJK4FJ4FQTDCWPMR36CLP6TCGZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6FBEXA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24ccece0550_462c3fef4e0cd96044171f--


From nobody Tue Jul  9 13:41:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7689E120024 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:41:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 hjld-4BNHtPu for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:41: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 BA02312000E for <quic-issues@ietf.org>; Tue,  9 Jul 2019 13:41:47 -0700 (PDT)
Date: Tue, 09 Jul 2019 13:41:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562704906; bh=womxCzKc7kLK9NydQTq2VonEa3Z2S5Jz15k+9kQPQpM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QF0eTOSa6VtZVrVGwzYLM2lmvCVl87MkrmB9kUHusACVPm0YfL984vb8zNk4vjyuJ trC9RnRTxjh5/0B6a5TJUhnEjr73BBqj4p10RWOEq5Xs5E6vKw1rfUKEmfyNpKGE6I iilII5z5hXkQw2tM7uOhvdHRRrk1ONX/077dXRxo=
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/2851/push/3799201510@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24fc0a439e1_41c33fed506cd9644086b9"; 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/LWqBeFyHPh6oN72kxpPbRkj5eJc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 20:41:50 -0000

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

@DavidSchinazi pushed 1 commit.

93185582222626bad7f217199d35de05f81ced11  Comments from MT


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2851/files/fd79b81d1b2040440e09e2c49c7f8b8842224c60..93185582222626bad7f217199d35de05f81ced11

----==_mimepart_5d24fc0a439e1_41c33fed506cd9644086b9
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/93185582222626bad7f217199d35de05f81ced11">9318558</a>  Comments from MT</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/2851/files/fd79b81d1b2040440e09e2c49c7f8b8842224c60..93185582222626bad7f217199d35de05f81ced11?email_source=notifications&amp;email_token=AFTOJKZ7JCV2MRFRDT3QL7LP6TZYVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTG44TSMRQGE2TCMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FAGRAQP4Z5I4WP7TP6TZYVANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ERD6MIZNN7R5UXH3P6TZYVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTG44TSMRQGE2TCMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851/files/fd79b81d1b2040440e09e2c49c7f8b8842224c60..93185582222626bad7f217199d35de05f81ced11?email_source=notifications\u0026email_token=AFTOJKZ7JCV2MRFRDT3QL7LP6TZYVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTG44TSMRQGE2TCMA",
"url": "https://github.com/quicwg/base-drafts/pull/2851/files/fd79b81d1b2040440e09e2c49c7f8b8842224c60..93185582222626bad7f217199d35de05f81ced11?email_source=notifications\u0026email_token=AFTOJKZ7JCV2MRFRDT3QL7LP6TZYVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTG44TSMRQGE2TCMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d24fc0a439e1_41c33fed506cd9644086b9--


From nobody Tue Jul  9 13:42:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1CC7412000E for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:42:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nSqEuDRtlAoO for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:42: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 641FB120025 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 13:42:17 -0700 (PDT)
Date: Tue, 09 Jul 2019 13:42:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562704936; bh=/Yt7wl3o/ZWzQOmwa4qavy5A7ne+Emjr72BF+yDQpRk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ngabouekbetirt+3jTu+PmrKDShzK9zcmOkt5zLPQZ6S+8OWzCzGmjupChDVjcUeN jL7GVRtayDL+y8i2o624Jt2SZkpAnSZmzE51etUZNeRaWDcK4TnAeazWlqAlFYhswy TU3Nz5VD+fJboIRKJ/xWPcmHKfwNr45tB6PivFlk=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KIM7G5SYDARWKJXF3GIXKREVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/259748223@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24fc283d347_6fff3f88134cd968360757"; 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/5uPv5YG3ByLP4N82MXh7OVD5png>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 20:42:19 -0000

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

DavidSchinazi commented on this pull request.



> @@ -924,11 +924,14 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID MAY be used when the connection ID is not needed
+for routing and the destination address and port of incoming packets is
+sufficient to identify a connection (e.g., when there is a single connection
+on a given local port). Note that it is not possible to use the source address
+and port of incoming packets to demultiplex them across connections because a
+peer might multiplex multiple connections on a single address and port and rely
+on its connection IDs for demultiplexing, and the peer's connection IDs are not
+transmitted in the short header packets they send.
 

Fixed by applying MT'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/2851#discussion_r301784570
----==_mimepart_5d24fc283d347_6fff3f88134cd968360757
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r301784570">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -924,11 +924,14 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID MAY be used when the connection ID is not needed
+for routing and the destination address and port of incoming packets is
+sufficient to identify a connection (e.g., when there is a single connection
+on a given local port). Note that it is not possible to use the source address
+and port of incoming packets to demultiplex them across connections because a
+peer might multiplex multiple connections on a single address and port and rely
+on its connection IDs for demultiplexing, and the peer&#39;s connection IDs are not
+transmitted in the short header packets they send.
 
</pre>
<p>Fixed by applying MT'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/2851?email_source=notifications&amp;email_token=AFTOJK7GAQOIDXNOEGBIDILP6TZ2RA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XC7Y#discussion_r301784570">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54JSPTLF3KHGO2VKTP6TZ2RANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FQ7OXOT66RV54CZDP6TZ2RA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XC7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK7GAQOIDXNOEGBIDILP6TZ2RA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XC7Y#discussion_r301784570",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK7GAQOIDXNOEGBIDILP6TZ2RA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XC7Y#discussion_r301784570",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24fc283d347_6fff3f88134cd968360757--


From nobody Tue Jul  9 13:42:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 12152120025 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:42:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nyKCuYSOP_Mu for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:42:40 -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 101A412000E for <quic-issues@ietf.org>; Tue,  9 Jul 2019 13:42:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 13:42:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562704958; bh=onUvPBy8XEzL2k4uyk4EwBq8mXLOvibsqM85TyY5+Ic=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UM6NuOLeuF6r77FFLWYtOwOFxlCz4Z0Z3dNM3rRVc9SJLU2ODzFWJDNmsZuWgMGrH tEuQvh8uxWnZWsjFoc/yb9gRhfwb2LTxpVja7grf4pe8dv9wJJUpel8ZTm8Yn9Z+ye 5tGNu7hslmKwe3ObAHzyB1TROSS3IZzTe6AVTGEA=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZSR3MXGY4J32RCKHF3GIXL5EVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/259748421@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24fc3eca6de_2e053feca66cd96460031d"; 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/_qvQ4NdXZ7uwZSd82R3DvXbur4A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 20:42:42 -0000

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

DavidSchinazi commented on this pull request.



> @@ -924,11 +924,14 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID MAY be used when the connection ID is not needed
+for routing and the destination address and port of incoming packets is
+sufficient to identify a connection (e.g., when there is a single connection
+on a given local port). Note that it is not possible to use the source address
+and port of incoming packets to demultiplex them across connections because a
+peer might multiplex multiple connections on a single address and port and rely
+on its connection IDs for demultiplexing, and the peer's connection IDs are not
+transmitted in the short header packets they send.

Applied the suggestion with minor changes.

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

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r301784731">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -924,11 +924,14 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID MAY be used when the connection ID is not needed
+for routing and the destination address and port of incoming packets is
+sufficient to identify a connection (e.g., when there is a single connection
+on a given local port). Note that it is not possible to use the source address
+and port of incoming packets to demultiplex them across connections because a
+peer might multiplex multiple connections on a single address and port and rely
+on its connection IDs for demultiplexing, and the peer&#39;s connection IDs are not
+transmitted in the short header packets they send.
</pre>
<p>Applied the suggestion with minor changes.</p>

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


From nobody Tue Jul  9 13:42:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E695D120024 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:42:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id b5CgPupZzoCl for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:42: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 E8CE112000E for <quic-issues@ietf.org>; Tue,  9 Jul 2019 13:42:54 -0700 (PDT)
Date: Tue, 09 Jul 2019 13:42:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562704973; bh=bFkPen1cI3vRSBP/y7lEw0vDOm+8cb8WpjDZm+DXNUo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ElDsX1Iyg/F+PzSlJ8vkmOom46vKluVsBDwYLCO8ghZ04MpBUM5JbmdzYR8SFUJzo AveQVyAEcI89xtGLqOyk1RseiNTU8EdKW1gHY/3XWsNPv+ZwFuMzFHPMwhOSNXXw3b dpLyWNhGWdemhu2GYHANDsgZF9kgX8UsIYGJ0RYA=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFUHQCWJLQKHU6MVF3GIXM3EVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/259748545@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24fc4da13ff_12953fd296ccd96055094b"; 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/ffytn7-D7RsIW2QJrFxDQuVPp90>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 20:42:57 -0000

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

DavidSchinazi commented on this pull request.



>  
-If the Destination Connection ID is zero length and the packet matches the
-address/port tuple of a connection where the host did not require connection
-IDs, QUIC processes the packet as part of that connection.  Endpoints SHOULD
-either reject connection attempts that use the same addresses as existing
-connections, or use a non-zero-length Destination Connection ID so that packets
-can be correctly attributed to connections.
+If the Destination Connection ID is zero-length and the packet matches the
+local address and port of a connection where the host used zero-length
+connection IDs, QUIC processes the packet as part of that connection.
+Endpoints that share a local address and port across multiple connections MUST

Agreed, 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/2851#discussion_r301784837
----==_mimepart_5d24fc4da13ff_12953fd296ccd96055094b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r301784837">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-If the Destination Connection ID is zero length and the packet matches the
-address/port tuple of a connection where the host did not require connection
-IDs, QUIC processes the packet as part of that connection.  Endpoints SHOULD
-either reject connection attempts that use the same addresses as existing
-connections, or use a non-zero-length Destination Connection ID so that packets
-can be correctly attributed to connections.
+If the Destination Connection ID is zero-length and the packet matches the
+local address and port of a connection where the host used zero-length
+connection IDs, QUIC processes the packet as part of that connection.
+Endpoints that share a local address and port across multiple connections MUST
</pre>
<p>Agreed, 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/2851?email_source=notifications&amp;email_token=AFTOJK4GTJOCO6GT6UMX5CLP6TZ43A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XFQI#discussion_r301784837">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7V6ZK3ZR2IMZT4DYDP6TZ43ANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7RKDAL2E6YMDBFFT3P6TZ43A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XFQI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK4GTJOCO6GT6UMX5CLP6TZ43A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XFQI#discussion_r301784837",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK4GTJOCO6GT6UMX5CLP6TZ43A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB55XFQI#discussion_r301784837",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24fc4da13ff_12953fd296ccd96055094b--


From nobody Tue Jul  9 13:45:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3AD6F120024 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:45:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id B0FJAzmpp-Rd for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:45: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 685EF12000E for <quic-issues@ietf.org>; Tue,  9 Jul 2019 13:45:49 -0700 (PDT)
Date: Tue, 09 Jul 2019 13:45:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562705148; bh=H0Wyj+GFYU9tOzj0NHcl/sy8nDlYa/sdHyHcm4fphPk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=avR7aSk1f7izj51pAsH0dc9f6On1gikMnRbUeeTMxGRpd79mLk+h3ACycXKD7S49g 8OUNTEcGN+Ozncze72S4mGkdGP08x7ugbwBm7qgwZWViSaYQCB2HYyPhUHIo9ei7YU 8i8JQtC7XXkfOXFVxL2BUWGmXOtCJ4+D45KmCwEU=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OOAF3SFJ36DWWIPV3GIXXZEVBNHHBXRIJFY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2886/509800585@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2886@github.com>
References: <quicwg/base-drafts/issues/2886@github.com>
Subject: Re: [quicwg/base-drafts] Crypto Retransmission Timeout interacts poorly with Congestion Control (#2886)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24fcfc6fbca_6b463fb1caccd95c341622"; 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/TYnmVgTHoIE-RwViBquq2FitLa0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 20:45:51 -0000

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

It was not intended for crypto timeout retransmissions to be blocked by the congestion controller.

Does PR# 2806 fix this by merging 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/issues/2886#issuecomment-509800585
----==_mimepart_5d24fcfc6fbca_6b463fb1caccd95c341622
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It was not intended for crypto timeout retransmissions to be blocked by the congestion controller.</p>
<p>Does PR# 2806 fix this by merging 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/issues/2886?email_source=notifications&amp;email_token=AFTOJK6DGIP72NZZXXNTVA3P6T2HZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPBCI#issuecomment-509800585">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SQXTNLBGLSDKGTW3P6T2HZANCNFSM4H7HV22A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5HNKS6LOTG6JP6ULP6T2HZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPBCI.gif" height="1" width="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/2886?email_source=notifications\u0026email_token=AFTOJK6DGIP72NZZXXNTVA3P6T2HZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPBCI#issuecomment-509800585",
"url": "https://github.com/quicwg/base-drafts/issues/2886?email_source=notifications\u0026email_token=AFTOJK6DGIP72NZZXXNTVA3P6T2HZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPBCI#issuecomment-509800585",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24fcfc6fbca_6b463fb1caccd95c341622--


From nobody Tue Jul  9 13:46:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 37B5812000E for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:46:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lDCN1J7b6d6o for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:45: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 EBADD120024 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 13:45:57 -0700 (PDT)
Date: Tue, 09 Jul 2019 13:45:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562705156; bh=YWCHrFz/Qxer3N+eWiaFkRr0AnoMZ0DAT/IkkQoaARs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=a2TdZV97LxAo8b44GFI3Awf571d3bl1b6fkYgFtcGbBkQD0i2QK0OwBYbyBJ9OtTM 2Gjj3ululHdRMNO2e7ku99dTB2y1OWf31P1TowTlSikJSgsUXiNIfC0ACJWnvxStHH r7gHkFsXEkvTXzFIhgSTcHNy9Qc1UPlW5P5RzREU=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYX7LOAJL5NWDN7AC53GIXYJEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/c509800630@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24fd04bd851_2df73feca66cd964821068"; 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/Sz27Bfd5Y9mq7Mzcp9au93tlWZE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 20:46:00 -0000

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

Thanks @martinthomson . I think the current text doesn't explicitly ban trial decryption: technically that endpoint is able to identify the connection using only its IP and port so it's good to go. The important bit is that it doesn't require the peer to alter its behavior.

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

<p>Thanks <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> . I think the current text doesn't explicitly ban trial decryption: technically that endpoint is able to identify the connection using only its IP and port so it's good to go. The important bit is that it doesn't require the peer to alter its behavior.</p>

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


From nobody Tue Jul  9 13:47:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D913C120024 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:47:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29uWPSK1PBjj for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 13:47: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 B525012000E for <quic-issues@ietf.org>; Tue,  9 Jul 2019 13:47:23 -0700 (PDT)
Date: Tue, 09 Jul 2019 13:47:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562705242; bh=RPejVfQgAdXP7i3vtKj0jnUQBObsRpeI+OBc154TVbA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VAka48IgaapGXVuNtxfGR1m8d0ZwdteNvqRjNf5QuO2BQ6py13ZWTT9Nwaa6Qp56U NavYEJlH1xqSwemxt8SkLGlTbn6RCk4wh9/ldfFElL0oEFo1p4fpHo0nTjnTULc71f TQmtbtHOVGUe9evZMVBoUXy/vGtiP40oPrNSZLDo=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6YR5MT6EKYFRGASEN3GIX5VEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/509801053@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d24fd5ab52ce_7fe73fd51b2cd9604820d0"; 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/umIjmeSqpRKH1QQIV9P0U4S7HQM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 20:47:26 -0000

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

I've updated the associated PR #2851 in case anyone following here would like to go check 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/2844#issuecomment-509801053
----==_mimepart_5d24fd5ab52ce_7fe73fd51b2cd9604820d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I've updated the associated PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461188950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2851" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2851/hovercard" href="https://github.com/quicwg/base-drafts/pull/2851">#2851</a> in case anyone following here would like to go check 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/2844?email_source=notifications&amp;email_token=AFTOJK7BJ6PYJBLYUCQAVK3P6T2NVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPEXI#issuecomment-509801053">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6DMPHKJWX3EIKQ3JDP6T2NVANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6IQSW7JYZ36QT3PRDP6T2NVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPEXI.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK7BJ6PYJBLYUCQAVK3P6T2NVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPEXI#issuecomment-509801053",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK7BJ6PYJBLYUCQAVK3P6T2NVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRPEXI#issuecomment-509801053",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d24fd5ab52ce_7fe73fd51b2cd9604820d0--


From nobody Tue Jul  9 15:21:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 575831201DE for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:21:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nYUQUEX2rp09 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:21:33 -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 559E0120141 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:21:33 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:21:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562710892; bh=leDdraCkujQsUq9WWY8o0l/FK4HaSOJXQw2i6SOzWnw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TkC+D5f6ZKU9Z1JHuxo/mAkyj8k1slCXFZJ+RtggwQF1HmKIN32+Ub7jxpX73vx/U 7NfiAhIwfzGBOVUXtImrLgp2jKAuV05vEhp1n29sjJBVBSXSSXjCWeHIohyEAgN/Yh KpClJM5rb8zdAcvZ5ZE0fPCsQwHKkHHAhL7aJz3Q=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7XB7GJ36A3O6UQXRV3GJC6ZEVBNHHBPVOVRY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2339/509831674@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2339@github.com>
References: <quicwg/base-drafts/issues/2339@github.com>
Subject: Re: [quicwg/base-drafts] QPACK: instructions and stream description is suboptimal (#2339)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25136c59fb_2f683f83db6cd95c3130c9"; 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/ZxvmClxlTzbfBJhjlkVmgHcdiuk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:21:35 -0000

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

After the most recent editorial revision, I've done my best to address 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/2339#issuecomment-509831674
----==_mimepart_5d25136c59fb_2f683f83db6cd95c3130c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>After the most recent editorial revision, I've done my best to address 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/2339?email_source=notifications&amp;email_token=AFTOJK3SJHSZYGFRWAI577TP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRWT6Q#issuecomment-509831674">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6YDKEMVIW4FCWTGBTP6UFOZANCNFSM4GQNZMSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KFJMEP6NYR36Z7NDP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRWT6Q.gif" height="1" width="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/2339?email_source=notifications\u0026email_token=AFTOJK3SJHSZYGFRWAI577TP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRWT6Q#issuecomment-509831674",
"url": "https://github.com/quicwg/base-drafts/issues/2339?email_source=notifications\u0026email_token=AFTOJK3SJHSZYGFRWAI577TP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZRWT6Q#issuecomment-509831674",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25136c59fb_2f683f83db6cd95c3130c9--


From nobody Tue Jul  9 15:21:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 346FB120141 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:21:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TfMuTTBYQAxf for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:21: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 56FF61201B8 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:21:33 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:21:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562710892; bh=bevVfipQIVeOSUgbtZ3dkjAuhEmnSD3cTZtHwRDUjDQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MY6VE2h8JQZfF8tXzzb0hMeDOSCCznsrDjtkO1/jaMFGcW7vX60rzdGrBZfd15+1Y UAaGfqNCcFc0R1RiPGHhzCj+Y2t4MW34e7flFumdGhBxqJGnlDl1y+15c5sioU79zt QdkbqfZ7bKKIT8ErJgr8MaxXONywc1yXeYbfers4=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7XB7GJ36A3O6UQXRV3GJC6ZEVBNHHBPVOVRY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2339/issue_event/2470825780@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2339@github.com>
References: <quicwg/base-drafts/issues/2339@github.com>
Subject: Re: [quicwg/base-drafts] QPACK: instructions and stream description is suboptimal (#2339)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25136c6235_78ab3f906aacd96c5440f1"; 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/BkOdk0ca4h2TlaQZ718ZBqeTn_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: Tue, 09 Jul 2019 22:21:36 -0000

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

Closed #2339.

-- 
You are receiving 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/2339#event-2470825780
----==_mimepart_5d25136c6235_78ab3f906aacd96c5440f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="399889806" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2339" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2339/hovercard" href="https://github.com/quicwg/base-drafts/issues/2339">#2339</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/2339?email_source=notifications&amp;email_token=AFTOJK5UO2DQ5X53XHR6N4TP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNC46NA#event-2470825780">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6YDKEMVIW4FCWTGBTP6UFOZANCNFSM4GQNZMSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4AY43V6W4Z2WP4LFTP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNC46NA.gif" height="1" width="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/2339?email_source=notifications\u0026email_token=AFTOJK5UO2DQ5X53XHR6N4TP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNC46NA#event-2470825780",
"url": "https://github.com/quicwg/base-drafts/issues/2339?email_source=notifications\u0026email_token=AFTOJK5UO2DQ5X53XHR6N4TP6UFOZA5CNFSM4GQNZMS2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNC46NA#event-2470825780",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25136c6235_78ab3f906aacd96c5440f1--


From nobody Tue Jul  9 15:32:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1AF861200B1 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:32:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 uSI_P3IDgaiG for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:32: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 CB32F12006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:32:28 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:32:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562711547; bh=BHB63NuIg6r3orhAtpR3cllgUlXKB0k2HF33iowH3Wg=; h=Date:From:To:Subject:From; b=xacz7zSbEpo2y4hM1OlpJGuXFQUH2RPvMEAW51Jco+6Xt+vGLcFZeLQSlJfbllrnV T27RrK+SrFNxIcasvRkKumhDVbMFRl5V2Z2afT1Gz/QIsgDJMYIC1DFn1wIpn+fVMb 6sQvt4gb6brx/aPRk4ofP5KHr9DPVYp2giUD/KoU=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/69fdaa-f399b5@github.com>
Subject: [quicwg/base-drafts] f399b5: Changed to MUST
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xAFhtcS1hgvH-86OH5NBKpDga0Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:32:30 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: f399b5a9af41bf36794b45b90da5f399640912d1
      https://github.com/quicwg/base-drafts/commit/f399b5a9af41bf36794b45b90da5f399640912d1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Changed to MUST



From nobody Tue Jul  9 15:32:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 86A391200B1 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:32:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9DUwf43D3FLR for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:32: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 96BD412006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:32:36 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:32:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562711555; bh=Otx53CWMVBR/mxBF++Bain1E0CbmikhPSKIS9a2mhRY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V+APWZhp1/jBNbyuigWjQ951lV+mLwnuuLJZ9EO1ak7Pn57CYzw05OV8sxpiv2vWV JWcCwQPoswS3HnC/e8PAQxJ5kB0Q9QZpV9h/GyAt3OaSTxaafAPqPpBMmzH2p4/XeL BToVAFJm+H6PzpCmb69Rjn1ReAvvXSAJHKWZlKCQ=
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/2806/push/3799523050@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25160367977_63223fd397ecd95c4556fb"; 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/Fgg2G8ku8ttE90o13Lt2t8ln5fY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:32:39 -0000

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

@ianswett pushed 1 commit.

f399b5a9af41bf36794b45b90da5f399640912d1  Changed to MUST


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2806/files/69fdaa408c50a44e48a55972360ed35d813daa2b..f399b5a9af41bf36794b45b90da5f399640912d1

----==_mimepart_5d25160367977_63223fd397ecd95c4556fb
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/f399b5a9af41bf36794b45b90da5f399640912d1">f399b5a</a>  Changed to 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/2806/files/69fdaa408c50a44e48a55972360ed35d813daa2b..f399b5a9af41bf36794b45b90da5f399640912d1?email_source=notifications&amp;email_token=AFTOJK7S4EGJJ4JWCIZ5K5DP6UGYHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJSGMYDKMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3SVGRAMBSQHQTQGH3P6UGYHANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYC24P5T65DKHA2ROTP6UGYHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJSGMYDKMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/69fdaa408c50a44e48a55972360ed35d813daa2b..f399b5a9af41bf36794b45b90da5f399640912d1?email_source=notifications\u0026email_token=AFTOJK7S4EGJJ4JWCIZ5K5DP6UGYHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJSGMYDKMA",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/69fdaa408c50a44e48a55972360ed35d813daa2b..f399b5a9af41bf36794b45b90da5f399640912d1?email_source=notifications\u0026email_token=AFTOJK7S4EGJJ4JWCIZ5K5DP6UGYHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJSGMYDKMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d25160367977_63223fd397ecd95c4556fb--


From nobody Tue Jul  9 15:33:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1A22B1200B1 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:33:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uHxZ8prwMNtF for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:33: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 F35F712006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:33:49 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:33:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562711629; bh=fWYf1I4x5CXjemUgj9eeIBnA6CofiDxGav3vKPhR+cI=; h=Date:From:To:Subject:From; b=GWzjLQ06hA7RiOkaEPhZI6eKAYCALNNL8osWEhBiOtan24GgMpvZUu7U9cYJHGL8b aVlOPdth6GmEFKs5wPRyyXo+S37oL5MGQbgQ/u80tl2twGSR69GkIxDPkOfLvzZmpz UYjZICtznisGO3xoPxJZuSlf80WtLdaaGC51ZBYM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/99a90d-fa1217@github.com>
Subject: [quicwg/base-drafts] fa1217: Script updating gh-pages from f399b5a9. [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/6qmlhH9bivYbgyCjILj9Ed6Ue70>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:33:52 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fa121760d39b4f78e267c1f1f08333460e2687f5
      https://github.com/quicwg/base-drafts/commit/fa121760d39b4f78e267c1f1f08333460e2687f5
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 15:35:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1CFD1120073 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:35:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 doQrRHyScOrF for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:35: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 B8DC812006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:35:29 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:35:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562711728; bh=0+G0yYwL0bcQsuEB7hgi2V7NB/bmNwpOeQFgLl179oQ=; h=Date:From:To:Subject:From; b=RXh1nA4tLvqVOwcHqGrf/Rg9AbInuaZM3ZcMKRhmbFFSEzF0o0xksajcMSjk7OGRP M3eC4Kl1MzS+0nhPUGOG8idE2J2/c3o+EXqZjEavlFFqffXeFMi7PPqJZsftQZIKIy Zqlhp9lrWr9PfYdjwHhG3BubUiqr+AJaOapqVvNA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/f399b5-6ab3dc@github.com>
Subject: [quicwg/base-drafts] 6ab3dc: 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/TDYXiEHYpdewUaTOEnuQ-10HRy8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:35:31 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414
      https://github.com/quicwg/base-drafts/commit/6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 15:35:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 80999120073 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:35:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 PRQr7H_nRBc5 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:35: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 E3F1C12006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:35:37 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:35:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562711736; bh=G6EauYiZJA1I7Ulhq20ZyOagFrJp0iPhxqIE+BfMn4o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z5FR4PHuIU93gTnyjX8Pxmu9AM5k+ibLN/RUu1pEh1VqnXJo8myEblXevwZc2I6mn urDdK1Pr0k9rYYNRsXRRqcaYk1t5JcAW8hFfoeRQUS6aO90d4BJhTEeDAqSMDiZqTf 7rPpTmz9zIynH5cb/EX6+kGiJTc6HKPBeejsHe/0=
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/2806/push/3799530247@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2516b8d7784_6a1d3fc6608cd96063424b"; 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/aDyBitJldMmZFAS8NAadvG1x0RU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:35:39 -0000

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

@ianswett pushed 1 commit.

6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414  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/2806/files/f399b5a9af41bf36794b45b90da5f399640912d1..6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414

----==_mimepart_5d2516b8d7784_6a1d3fc6608cd96063424b
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/6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414">6ab3dcd</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/2806/files/f399b5a9af41bf36794b45b90da5f399640912d1..6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414?email_source=notifications&amp;email_token=AFTOJK52U7W3LSXYK2LB4N3P6UHDRA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJTGAZDINY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3U7QAJKWS3POGHOWDP6UHDRANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3O5QEPZ6DUFPNCM33P6UHDRA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJTGAZDINY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/f399b5a9af41bf36794b45b90da5f399640912d1..6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414?email_source=notifications\u0026email_token=AFTOJK52U7W3LSXYK2LB4N3P6UHDRA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJTGAZDINY",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/f399b5a9af41bf36794b45b90da5f399640912d1..6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414?email_source=notifications\u0026email_token=AFTOJK52U7W3LSXYK2LB4N3P6UHDRA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJTGAZDINY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2516b8d7784_6a1d3fc6608cd96063424b--


From nobody Tue Jul  9 15:37:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 01B5712009C for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:37:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GkpMVwqIUrOc for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:37: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 6DC3912006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:37:01 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:37:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562711820; bh=8Mnx2qxeBEeugBhKKID825bpCIW3Ik8O/abt7WqpWgU=; h=Date:From:To:Subject:From; b=MT0qKp00N9fkwHCtc3oaTXcfArGEwu1NMKdEe+BP7za8FedLRLbz9by/VnrS75dL6 nTNbhH/aqtHD3fCGxz6pypdvGJoK/+ivfK47a25Nnm+eKAFPFoT+w2Clj5v6uDna4B /DbMiR4xY6WdcFFZqhNoyYD2A+vE45qsz4RlF3hM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fa1217-ec9191@github.com>
Subject: [quicwg/base-drafts] ec9191: Script updating gh-pages from 6ab3dcdc. [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/lFqB_6mlxAP4LjfzJ4Sbe2-FUjE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:37:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ec9191846d409764ecd485a6b35a00f288d7cdf7
      https://github.com/quicwg/base-drafts/commit/ec9191846d409764ecd485a6b35a00f288d7cdf7
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  9 15:44:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DEADA120075 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:44:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0rOe5LMgXvbq for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:44:10 -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 87D0312006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:44:10 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:44:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712249; bh=fJ5gs8h3gdWVJo1elh1VKf9zhvPlTS+mDl2cSUh2IMY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xGf9TwJEjFDs5s1n0dsxci3UgSP8y/v5OYUjvXa90f2AXc8NkEZ2Tvki8+tdatVjk 7GI0w86UPZyXkIUlIySTH6WctOQKP48u7qnn97JHhZT+ST7RYb+kfuURbzmW4MaZ+c IC5FH7MbxoPWHnkJaHhKRBPkdKEIlHi4APB0KzHU=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67NEF4VTEBVL7QE4V3GJFTTEVBNHHBXP3RNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2877/review/259795077@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2518b97e8e7_2f713f83db6cd95c87340"; 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/P2E_Psad4q536bh43zfAHpSzuDM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:44:13 -0000

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

janaiyengar commented on this pull request.

A couple of changes

> -The next byte contains the length in bytes of the two Connection IDs (see
-{{connection-id}}) that follow.  Each length is encoded as a 4-bit unsigned
-integer.  The length of the Destination Connection ID (DCIL) occupies the high
-bits of the byte and the length of the Source Connection ID (SCIL) occupies the
-low bits of the byte.  An encoded length of 0 indicates that the connection ID
-is also 0 bytes in length.  Non-zero encoded lengths are increased by 3 to get
-the full length of the connection ID; the final value is therefore either 0 or
-between 4 and 18 bytes in length (inclusive).  For example, a byte with the
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte Source
-Connection ID.
-
-The connection ID lengths are followed by two connection IDs.  The connection
-ID associated with the recipient of the packet (the Destination Connection ID)
-is followed by the connection ID associated with the sender of the packet (the
-Source Connection ID).
+The byte contains the length in bytes of the Destination Connection ID (see

```suggestion
The next byte contains the length in bytes of the Destination Connection ID (see
```

> -is also 0 bytes in length.  Non-zero encoded lengths are increased by 3 to get
-the full length of the connection ID; the final value is therefore either 0 or
-between 4 and 18 bytes in length (inclusive).  For example, a byte with the
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte Source
-Connection ID.
-
-The connection ID lengths are followed by two connection IDs.  The connection
-ID associated with the recipient of the packet (the Destination Connection ID)
-is followed by the connection ID associated with the sender of the packet (the
-Source Connection ID).
+The byte contains the length in bytes of the Destination Connection ID (see
+{{connection-id}}) field that follows it.  This length is encoded as an 8-bit
+unsigned integer.  The Destination Connection ID field follows the DCID Len
+field and is between 0 and 255 bytes in length.
+
+The byte following the Source Connection ID contains the length in bytes

```suggestion
The next byte contains the length in bytes
```

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

<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<p>A couple of changes</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2877#discussi=
on_r301823006">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -The next byte contains the length in byte=
s of the two Connection IDs (see=0D
-{{connection-id}}) that follow.  Each length is encoded as a 4-bit unsig=
ned=0D
-integer.  The length of the Destination Connection ID (DCIL) occupies th=
e high=0D
-bits of the byte and the length of the Source Connection ID (SCIL) occup=
ies the=0D
-low bits of the byte.  An encoded length of 0 indicates that the connect=
ion ID=0D
-is also 0 bytes in length.  Non-zero encoded lengths are increased by 3 =
to get=0D
-the full length of the connection ID; the final value is therefore eithe=
r 0 or=0D
-between 4 and 18 bytes in length (inclusive).  For example, a byte with =
the=0D
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte=
 Source=0D
-Connection ID.=0D
-=0D
-The connection ID lengths are followed by two connection IDs.  The conne=
ction=0D
-ID associated with the recipient of the packet (the Destination Connecti=
on ID)=0D
-is followed by the connection ID associated with the sender of the packe=
t (the=0D
-Source Connection ID).=0D
+The byte contains the length in bytes of the Destination Connection ID (=
see=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-The byte contains the length in bytes of the =
Destination Connection ID (see=0D
+The next byte contains the length in bytes of the Destination Connection=
 ID (see=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2877#discussi=
on_r301823344">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -is also 0 bytes in length.  Non-zero enco=
ded lengths are increased by 3 to get=0D
-the full length of the connection ID; the final value is therefore eithe=
r 0 or=0D
-between 4 and 18 bytes in length (inclusive).  For example, a byte with =
the=0D
-value 0xe0 describes a 17 byte Destination Connection ID and a zero byte=
 Source=0D
-Connection ID.=0D
-=0D
-The connection ID lengths are followed by two connection IDs.  The conne=
ction=0D
-ID associated with the recipient of the packet (the Destination Connecti=
on ID)=0D
-is followed by the connection ID associated with the sender of the packe=
t (the=0D
-Source Connection ID).=0D
+The byte contains the length in bytes of the Destination Connection ID (=
see=0D
+{{connection-id}}) field that follows it.  This length is encoded as an =
8-bit=0D
+unsigned integer.  The Destination Connection ID field follows the DCID =
Len=0D
+field and is between 0 and 255 bytes in length.=0D
+=0D
+The byte following the Source Connection ID contains the length in bytes=
=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-The byte following the Source Connection ID c=
ontains the length in bytes=0D
+The next byte contains the length in bytes=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/2877?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK5XCGGR56FBCQ3YLSLP6UIDTA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56CRBI#pullrequestreview-259795077=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKY7QSJALL6B7JUHYXLP6UIDTANCNFSM4H7A2NTQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKY7FTXR=
64LLH6N2H23P6UIDTA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB56CRBI.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/2877?email_source=3D=
notifications\u0026email_token=3DAFTOJK5XCGGR56FBCQ3YLSLP6UIDTA5CNFSM4H7A=
2NT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
56CRBI#pullrequestreview-259795077",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2877?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK5XCGGR56FBCQ3YLSLP6UIDTA5CNFSM4H7A2N=
T2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56=
CRBI#pullrequestreview-259795077",=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_5d2518b97e8e7_2f713f83db6cd95c87340--


From nobody Tue Jul  9 15:45:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ECE4912006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 zdXvGP_W3EDx for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45: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 C2AA1120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:45:13 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:45:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712312; bh=2zl0QvVfOoZ95EAzy15YD4t62F5WimDfxYmtoe4T2L8=; h=Date:From:To:Subject:From; b=lP6TV+U8q++rToSmutHs9UU4s5Nmzmp75D4ZuR0Rmyc9elVu5AujblStIViC1RKz+ ip64cqmmsuqHxF+sCpmIFKA9v/gw43ZPBOrQvoOZzvmP/T4vZaKECga98daDlxXq/O yQB51QkbaemYq4qqd7uw2bxKtmE5mxFOJLW+lhvM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/4f3e69-4926cf@github.com>
Subject: [quicwg/base-drafts] 4926cf: Byte lengths are next
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/atN0GKEJayPYLDAPWRoWAg7RB4o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:45:16 -0000

  Branch: refs/heads/ianswett-2479
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4926cf4edf332380b83e48b1a7ee717dfe891f5f
      https://github.com/quicwg/base-drafts/commit/4926cf4edf332380b83e48b1a7ee717dfe891f5f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

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

  Log Message:
  -----------
  Byte lengths are next

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue Jul  9 15:45:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CF744120059 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K4LIQOcjvNZt for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45: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 C785B12006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:45:21 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:45:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712320; bh=JEvTmOfFQwJ6hOspT/0u93FcEI3nPY5wUTjyeKvN9U8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dz8hgyiI3v3tMd7l8D5t6EKyBlCQfXbOslS4R+D3ECw7jiS4UBziQhkesA0LsGv0x l454vE3gAsSWFC3+LWyki7B1vcXN35L1Z7iLESPyb3k6Xq9SOwSC4IUReCsPwxhIKE rmgIXCK/pLrlWe9k0NBt0tyokPmjJx/C/o/pPWhQ=
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/2877/push/3799553540@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251900a13a5_2e983fd14bccd95c84909c"; 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/qO-lu6yjgDh6tk43rCm7MSwg29o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:45:24 -0000

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

@martinthomson pushed 1 commit.

4926cf4edf332380b83e48b1a7ee717dfe891f5f  Byte lengths are next


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2877/files/4f3e69d0f1a126e7c420a1d5d01efca60f498276..4926cf4edf332380b83e48b1a7ee717dfe891f5f

----==_mimepart_5d251900a13a5_2e983fd14bccd95c84909c
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/4926cf4edf332380b83e48b1a7ee717dfe891f5f">4926cf4</a>  Byte lengths are next</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/2877/files/4f3e69d0f1a126e7c420a1d5d01efca60f498276..4926cf4edf332380b83e48b1a7ee717dfe891f5f?email_source=notifications&amp;email_token=AFTOJK4XQC2XLO6MDM2N4LLP6UIIBA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TSNJVGM2TIMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6PGWY7FRUY6ET6QEDP6UIIBANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CYLKVXO5IYUM3BSDP6UIIBA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TSNJVGM2TIMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877/files/4f3e69d0f1a126e7c420a1d5d01efca60f498276..4926cf4edf332380b83e48b1a7ee717dfe891f5f?email_source=notifications\u0026email_token=AFTOJK4XQC2XLO6MDM2N4LLP6UIIBA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TSNJVGM2TIMA",
"url": "https://github.com/quicwg/base-drafts/pull/2877/files/4f3e69d0f1a126e7c420a1d5d01efca60f498276..4926cf4edf332380b83e48b1a7ee717dfe891f5f?email_source=notifications\u0026email_token=AFTOJK4XQC2XLO6MDM2N4LLP6UIIBA5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJVGQYDSM2QOVZWQIZTG44TSNJVGM2TIMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d251900a13a5_2e983fd14bccd95c84909c--


From nobody Tue Jul  9 15:45:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2C29B120059 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 XFSMfGdXQVak for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45:28 -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 82F7412006D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:45:28 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:45:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712327; bh=aBqrIfTaUqC7HAhYS4ILaRJLsVjSiHoQZI49we5fLD4=; h=Date:From:To:Subject:From; b=S7k/bhxdZQEHsnpBZhGegdyVZWBagc7MOu+KLgO++aQ+/OwEZ+kXrD8S/rKMuiIhC X5zBSBAQi9JKk+Ma1VmvFhXJqWNaJ0voDg7qdjjOsdyI4hnnaLHidpy3LAIjLobyhU 853Z4BcCj1LrnJz/BBR2y1uwH97YvqSxoXMUA3r0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c3eef7-1b61c5@github.com>
Subject: [quicwg/base-drafts] 913370: Editorial fix for #2479
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/45yOCUbhXz9eK55qiRU2uIL-rYw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:45:30 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 913370291aa863a847126f7df9f9ab3df7024196
      https://github.com/quicwg/base-drafts/commit/913370291aa863a847126f7df9f9ab3df7024196
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

  Log Message:
  -----------
  Editorial fix for #2479


  Commit: b9f6425786a4a347ec926bac02c4b1631e15cdb9
      https://github.com/quicwg/base-drafts/commit/b9f6425786a4a347ec926bac02c4b1631e15cdb9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Fixing invariants as well


  Commit: 5601eb00ee1d8b88d10e1a5e9f75c9899d602abf
      https://github.com/quicwg/base-drafts/commit/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: a8a705e0da6e8009c4b9a902ad0228b0f7b3c181
      https://github.com/quicwg/base-drafts/commit/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd
      https://github.com/quicwg/base-drafts/commit/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 553106c6343f699ea9dabe23df5e1cb06b6795a8
      https://github.com/quicwg/base-drafts/commit/553106c6343f699ea9dabe23df5e1cb06b6795a8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  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: 4f3e69d0f1a126e7c420a1d5d01efca60f498276
      https://github.com/quicwg/base-drafts/commit/4f3e69d0f1a126e7c420a1d5d01efca60f498276
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

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

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


  Commit: 4926cf4edf332380b83e48b1a7ee717dfe891f5f
      https://github.com/quicwg/base-drafts/commit/4926cf4edf332380b83e48b1a7ee717dfe891f5f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

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

  Log Message:
  -----------
  Byte lengths are next

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 1b61c54b8a4677890dde6108714d49674b0155d0
      https://github.com/quicwg/base-drafts/commit/1b61c54b8a4677890dde6108714d49674b0155d0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2877 from quicwg/ianswett-2479

Editorial fix for #2479


Compare: https://github.com/quicwg/base-drafts/compare/c3eef712c72e...1b61c54b8a46


From nobody Tue Jul  9 15:45:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7954412006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 8C4Ugtn_YXfJ for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45: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 12045120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:45:31 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:45:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712330; bh=CKHF32eZc6VfJL3A+n0hqF4Kp3OmOI4jYVHMYmQ1ESg=; h=Date:From:To:Subject:From; b=x4vP36dd5C1NVDI8+k6b+04dh1vVMwjKwchy5KjlYzSuR7AKKwM1rilg17O+w+LNE Lt+WkbzGenbL8TKT1FYpgVnbVDM8bYfHa+VT0LOMvqQXsNQ6RZthdzdNw+PGFsRJM7 dMgcQsno3OO+vgHSUl2UTMKbngLjwRbeNIr/nEyc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-2479/4926cf-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/3B3dEUIQUpyuoKVVxkHtfML6wJ0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:45:33 -0000

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


From nobody Tue Jul  9 15:45:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B413A12006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yjrmLbpGzdsp for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:45: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 D1B62120298 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:45:35 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:45:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712334; bh=AQBrBEp0Rn5wDN151Ied4JJhUWsZOVtlMeEwkrTWsRc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QvkyBYIL8Gc1W72jUtwIY/WCV0RShK+oYLAYqUoXTpVGq2KUF7w4cEjVI+9y3HFyv zQVuNIuWH/OG1juHxeNNelAqMfGTruozzRh75vlpJOoS6E62Y9dxhZqMmTgqsKrb5Q dbA9iyl4qAVSt1La3bGfd5czU/AKlcgfXSoTUlec=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK53QLOIWZY45PP4FQV3GJFY5EVBNHHBXP3RNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2877/issue_event/2470865517@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2877@github.com>
References: <quicwg/base-drafts/pull/2877@github.com>
Subject: Re: [quicwg/base-drafts] Editorial fix for #2479 (#2877)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25190ece7e6_503a3fbaa36cd96c60958b"; 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/E5Guq7TV1xjzQ-NjmM7OqgZGNT4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:45:38 -0000

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

Merged #2877 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/2877#event-2470865517
----==_mimepart_5d25190ece7e6_503a3fbaa36cd96c60958b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465531242" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2877" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2877/hovercard" href="https://github.com/quicwg/base-drafts/pull/2877">#2877</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/2877?email_source=notifications&amp;email_token=AFTOJKZ7GCJHQHOHAR3GVJLP6UII5A5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNDGU3I#event-2470865517">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6YDMO6BSNLENNE4GTP6UII5ANCNFSM4H7A2NTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZY6XYBTDUORNZPQUTP6UII5A5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNDGU3I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2877?email_source=notifications\u0026email_token=AFTOJKZ7GCJHQHOHAR3GVJLP6UII5A5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNDGU3I#event-2470865517",
"url": "https://github.com/quicwg/base-drafts/pull/2877?email_source=notifications\u0026email_token=AFTOJKZ7GCJHQHOHAR3GVJLP6UII5A5CNFSM4H7A2NT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNDGU3I#event-2470865517",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25190ece7e6_503a3fbaa36cd96c60958b--


From nobody Tue Jul  9 15:46:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D6A2212006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:46:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sGWbIXdIGkzi for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:46:40 -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 0F454120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:46:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:46:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712399; bh=wZSIxtmvHYVd8nlItzP2rdZMx9XZVKa5aRCS4ZyGVdM=; h=Date:From:To:Subject:From; b=C7OCLBtdzajQSl9AMGZwzRTQh4u21tmozbVjzPPMCrf04W9arysd1Bo+DFAHd2otS ytCJWP/+XCJjY3JKhj+JgYAIhnnTIMcf/6m6rGGPWkRtgTnSnNgieDX3SEJyngoihI HLQwcb5/RT60FkszFNTevUtjwdrMzHb2b2EEvsNk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ec9191-afb6fb@github.com>
Subject: [quicwg/base-drafts] afb6fb: Script updating gh-pages from 1b61c54b. [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/QAI2deYWPASdsTgg_ugk0lnjN2s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:46:42 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: afb6fbd6d04369d5d2dc723cb0594053c48be5a5
      https://github.com/quicwg/base-drafts/commit/afb6fbd6d04369d5d2dc723cb0594053c48be5a5
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  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 1b61c54b. [ci skip]



From nobody Tue Jul  9 15:52:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9104A12006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:52:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 H9Pzp8p002Aj for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:52: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 42257120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:52:49 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:52:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712767; bh=4UzzF1gA+zGx7HPUFaZzrgu8kuG90djemp404oCqIDA=; h=Date:From:To:Subject:From; b=y0SiHuJXrtznDGVVu8lwTzDlyLcPmmCbtPvt9tRFRnaA2RAPC1PLyzTJ4cKbcgTNE G58em4Unf1myJYuCCZQoHKkJJfLEalwSIFNueMm4mICCiP9UkFPfbSTrVZqmRzpzIb yqwZ2DMFjDUf9KcJlVBDYLZ6qOUwZJ0HcU8sgq0s=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/6ab3dc-2dff03@github.com>
Subject: [quicwg/base-drafts] 2dff03: 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/nQDIjTioIrvni0CFE5eyxPxh1So>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:52:51 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2dff033c8e9e6fcc99c0eb56a9069ad83a26891b
      https://github.com/quicwg/base-drafts/commit/2dff033c8e9e6fcc99c0eb56a9069ad83a26891b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 15:53:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BDBC712006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:52:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 1yQQy3JSxWf7 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:52: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 D1D45120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:52:56 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:52:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712775; bh=8MS6H6FjEJ29nmcXXi1tWIm7CKeh6G6BUzwm4rbFZO8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OfLwWrNgg43RnUWR5gsw5bWWO86UGgZ52KRGixyJ0aa0MPsKRt1pY5p7onnfANI+/ gZO5v9/iR4MABKPsVhp++GSYCkzLAvjhj0x7EmX2esvQUT1cLPmzkO4mgmkAQG4aik NzK1mHSd72pXqHt4Qv+KF9N5PHqgkgI3KpsfO5xs=
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/2806/push/3799570804@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251ac78ee9b_25fb3fef39ecd96c575127"; 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/F-jnCgKUcuNpoJvZXKXPNBWLmKA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:52:59 -0000

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

@ianswett pushed 1 commit.

2dff033c8e9e6fcc99c0eb56a9069ad83a26891b  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/2806/files/6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414..2dff033c8e9e6fcc99c0eb56a9069ad83a26891b

----==_mimepart_5d251ac78ee9b_25fb3fef39ecd96c575127
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/2dff033c8e9e6fcc99c0eb56a9069ad83a26891b">2dff033</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/2806/files/6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414..2dff033c8e9e6fcc99c0eb56a9069ad83a26891b?email_source=notifications&amp;email_token=AFTOJK6WQC3GWDRZW5YFW5TP6UJEPA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGA4DANA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6YGGN4BKCCV7N73QTP6UJEPANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FD3UIXQQZDWBSOLTP6UJEPA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGA4DANA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414..2dff033c8e9e6fcc99c0eb56a9069ad83a26891b?email_source=notifications\u0026email_token=AFTOJK6WQC3GWDRZW5YFW5TP6UJEPA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGA4DANA",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/6ab3dcdc421ad62b1fa8aab2c1de34e0b5cf5414..2dff033c8e9e6fcc99c0eb56a9069ad83a26891b?email_source=notifications\u0026email_token=AFTOJK6WQC3GWDRZW5YFW5TP6UJEPA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGA4DANA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d251ac78ee9b_25fb3fef39ecd96c575127--


From nobody Tue Jul  9 15:54:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6446F12006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:54:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2F50u6H_xcOy for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:54: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 EC669120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:54:06 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:54:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712845; bh=bGEN9LC9HSnxZS1QfbrMYClIeSGHJIynFHa5UVegktk=; h=Date:From:To:Subject:From; b=o6NMwFXvqgz6lWhi0Xhd6bSat7N9B15qKSPTzh2G+Rq6pj9p8Ne2TsMjWjwG2TwHp mm9qF4kMdjAPEoMfQk39gOmWxSDFoLCmnOtZreAp9LT92EEei9FFRKqZHO+myxyfLF yRe2fdFpvoqSNN4VxC42NBk23xd0NEdHJmvctJDM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/afb6fb-41cabc@github.com>
Subject: [quicwg/base-drafts] 41cabc: Script updating gh-pages from 2dff033c. [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/MTrEJAK4GvWdztUY17VU1gMDid8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:54:09 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 41cabcd4ec1c2e5af2fbdb29cebe20c588834b18
      https://github.com/quicwg/base-drafts/commit/41cabcd4ec1c2e5af2fbdb29cebe20c588834b18
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  9 15:54:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9594C1202FF for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:54:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 rLCA2cZEP5aq for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:54:38 -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 F187612027D for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:54:37 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:54:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712876; bh=J8BHeVeWuM6zn1LrvnVsBLBgqCLJNraTPu3bBEuyp20=; h=Date:From:To:Subject:From; b=ZY700QCqy8E1q7LoO/bsW0D52mCdwObmVfIu8AGVI+FHVCkX4VBYuq0UaBcCJYj4c Mupl0EjFRL47mI11x6Rt86fOQwdYR0LKm5lfF9iYeGy51QzM/69pRUfyt1nLcLBsZg Eu/Jkd1zii96wvQefVhn6MlqsglWQJhGbZ3jpcC0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/2dff03-21c792@github.com>
Subject: [quicwg/base-drafts] 21c792: 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/P-HZxfP0M9vhqYUYK9-uOKvWmV4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:54:45 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 21c79243e265d1455dd921988f4e07c53b4d874c
      https://github.com/quicwg/base-drafts/commit/21c79243e265d1455dd921988f4e07c53b4d874c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 15:54:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CF0651202A6 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:54:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l7Wh-7ItpLtA for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:54: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 CBD7B1202B2 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:54:45 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:54:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712884; bh=kv0VV7BhHooaNM/hLng/wzd0I5kd9+VLxyHd3kM3zFQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PHPenrf7c7pRgwDVO7vTwLuT4r7hwd0xLmFoCBcs4Gt6j4Yy3DXntlp8x3/NVx6HD G7kUUMgSlnRFMhxXiv0kcivH08RMjoh7xtqu4X4bemDO7mNW1H+W6RSWhCYue48ZZg 1x6vSvgPywRNfNzOedWwl3Cr964r8werXJwQT49s=
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/2806/push/3799574803@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251b348408e_36d53fc3274cd96484720"; 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/SLYdS8OrEP9sbMd7eMPly1h1Hqs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:54:48 -0000

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

@ianswett pushed 1 commit.

21c79243e265d1455dd921988f4e07c53b4d874c  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/2806/files/2dff033c8e9e6fcc99c0eb56a9069ad83a26891b..21c79243e265d1455dd921988f4e07c53b4d874c

----==_mimepart_5d251b348408e_36d53fc3274cd96484720
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/21c79243e265d1455dd921988f4e07c53b4d874c">21c7924</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/2806/files/2dff033c8e9e6fcc99c0eb56a9069ad83a26891b..21c79243e265d1455dd921988f4e07c53b4d874c?email_source=notifications&amp;email_token=AFTOJK7I6V7GU64LSOWCAMLP6UJLJA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGQ4DAMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYM2NE5TTOYKHVTZU3P6UJLJANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6S3CGNHFPMU7NNE3P6UJLJA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGQ4DAMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/2dff033c8e9e6fcc99c0eb56a9069ad83a26891b..21c79243e265d1455dd921988f4e07c53b4d874c?email_source=notifications\u0026email_token=AFTOJK7I6V7GU64LSOWCAMLP6UJLJA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGQ4DAMY",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/2dff033c8e9e6fcc99c0eb56a9069ad83a26891b..21c79243e265d1455dd921988f4e07c53b4d874c?email_source=notifications\u0026email_token=AFTOJK7I6V7GU64LSOWCAMLP6UJLJA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJXGQ4DAMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d251b348408e_36d53fc3274cd96484720--


From nobody Tue Jul  9 15:56:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AEA7312006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:56:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qCyhWTYyHhao for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 15:56: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 0082B120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 15:56:01 -0700 (PDT)
Date: Tue, 09 Jul 2019 15:56:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562712961; bh=FPfNUB3pFQAsZ9INcb9nFmE88rR8pGConcbYkv4jFlY=; h=Date:From:To:Subject:From; b=e46xRcJCV8q59H7/d2W+ZjRF7l8ZmdANS7B4t1NwFPG4wbyfIHf5wpcknRBa9+gVC 7+R1Jn8enqcP8qRyuU0DK2f1TpqHNcG/pauwu4gWMfE6EQ8RLYuYYOXx721BNCzxSc vjjtgon6jaZiIqoH7TrZgdKGjvLm2FXRBGmYeel0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/41cabc-ce7184@github.com>
Subject: [quicwg/base-drafts] ce7184: Script updating gh-pages from 21c79243. [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/KeoOz5MpzsJF53pq0n30kT5yBUg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 22:56:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ce7184eed51173afd1c00831c124fe4cff959b3a
      https://github.com/quicwg/base-drafts/commit/ce7184eed51173afd1c00831c124fe4cff959b3a
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  9 16:00:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1F984120059 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:00:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zvoJkLWBV1y8 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:00: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 C1233120019 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:00:15 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:00:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713214; bh=six/GsqVRyCVD8QnEPNk2dThM1GMEDfrSWcmGwRfkks=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oHyXoInu8MD3WUPbiuK9aRXYT9IDAAI4GwaML25rk5XvjG5/T2cHfY2cNhJOqpGJQ ywI62Lgia4ZNbqEC8BBCv4IbJxiiR+gWlerkOycFulD7SRWCppuxfp7h61pVGHr0m6 3H8i0WR3APrDtVD+fXHHXTaEu5RP6QzFdnyfFJCw=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7PXC7VFNRXX2D5ILN3GJHP5EVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/259792135@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251c7e98031_290c3fd3eb2cd96410168e1"; 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/ycfOe8Ptk82HNHGHsUfEVLrZwO8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:00:18 -0000

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

janaiyengar commented on this pull request.=0D
=0D
=0D
=0D
> +The initial probe timeout for a new connection or new path SHOULD be=0D=

+set to twice the initial RTT.  Resumed connections over the same network=
=0D
+SHOULD use the previous connection's final smoothed RTT value as the res=
umed=0D
+connection's initial RTT.  If no previous RTT is available, the initial =
RTT=0D
+SHOULD be set to 500ms, resulting in a 1 second initial timeout as recom=
mended=0D
+in {{?RFC6298}}.=0D
+=0D
+A connection MAY use the delay between sending a PATH_CHALLENGE and rece=
iving=0D
+a PATH_RESPONSE to seed initial_rtt for a new path, but the delay SHOULD=
 NOT=0D
+be considered an RTT sample.=0D
+=0D
+Until the server has validated the client's address on the path, the amo=
unt of=0D
+data it can send is limited, as specified in Section 8.1 of {{QUIC-TRANS=
PORT}}.=0D
+If not all data can be retransmitted, then data at Initial and Handshake=
=0D
+encryption should be retransmitted before any ApplicationData data. If n=
o data=0D
+can be sent, then the PTO alarm should not be armed until data has been=0D=

=0D
```suggestion=0D
can be sent, then the PTO alarm MUST=C2=A0NOT be armed until data has bee=
n=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/2806#pullrequestreview-2597921=
35=

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

<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/2806#discussi=
on_r301820459">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +The initial probe timeout for a new conne=
ction or new path SHOULD be=0D
+set to twice the initial RTT.  Resumed connections over the same network=
=0D
+SHOULD use the previous connection&#39;s final smoothed RTT value as the=
 resumed=0D
+connection&#39;s initial RTT.  If no previous RTT is available, the init=
ial RTT=0D
+SHOULD be set to 500ms, resulting in a 1 second initial timeout as recom=
mended=0D
+in {{?RFC6298}}.=0D
+=0D
+A connection MAY use the delay between sending a PATH_CHALLENGE and rece=
iving=0D
+a PATH_RESPONSE to seed initial_rtt for a new path, but the delay SHOULD=
 NOT=0D
+be considered an RTT sample.=0D
+=0D
+Until the server has validated the client&#39;s address on the path, the=
 amount of=0D
+data it can send is limited, as specified in Section 8.1 of {{QUIC-TRANS=
PORT}}.=0D
+If not all data can be retransmitted, then data at Initial and Handshake=
=0D
+encryption should be retransmitted before any ApplicationData data. If n=
o data=0D
+can be sent, then the PTO alarm should not be armed until data has been=0D=

</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-can be sent, then the PTO alarm should not be=
 armed until data has been=0D
+can be sent, then the PTO alarm MUST=C2=A0NOT be armed until data has be=
en=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/2806?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK7OMCVOXDYUD2F46KLP6UJ75A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56B2BY#pullrequestreview-259792135=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK5H7K662CXBRCUCZXTP6UJ75ANCNFSM4HZFMTMQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKY5A27S=
ZTATRYHKZR3P6UJ75A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB56B2BY.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/2806?email_source=3D=
notifications\u0026email_token=3DAFTOJK7OMCVOXDYUD2F46KLP6UJ75A5CNFSM4HZF=
MTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
56B2BY#pullrequestreview-259792135",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK7OMCVOXDYUD2F46KLP6UJ75A5CNFSM4HZFMT=
M2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56=
B2BY#pullrequestreview-259792135",=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_5d251c7e98031_290c3fd3eb2cd96410168e1--


From nobody Tue Jul  9 16:00:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2F685120019 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:00:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 KUsa_fzLtJxr for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:00:22 -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 253271200C3 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:00:22 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:00:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713221; bh=BrgPLNi5QTuKUjiDkyFNQW2Mz+pXx7OjySmeGYhOqHM=; h=Date:From:To:Subject:From; b=jFAzbkdqJH9s5eonTjQP2bPXViGXaOt69yUtaeCaxGKXSWWCtHWniuzXVQAj6hBdw xM3irHSPaSbnV4P0SDnVsJIyzirA+a4J9m4ST1oLl4CAk14o/3pe0AMdTu/+ZwAMBR mhSGpTP/8jz5LjWaN4yrK3fqr8jr+VYxtTSzHhqI=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/21c792-d45701@github.com>
Subject: [quicwg/base-drafts] d45701: 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/cno2yhBoZ7fcW3ehB18wgqvg_Ec>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:00:24 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: d4570113c0a67a997fd92c0694e7252e7cd5cad6
      https://github.com/quicwg/base-drafts/commit/d4570113c0a67a997fd92c0694e7252e7cd5cad6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 16:00:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 15A8F120075 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:00:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LXTkMCWCMDsF for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16: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 7CDFC120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:00:30 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:00:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713229; bh=k4EcrOQ5ca11GdwXBAfRSPTimV++ixR1mF3vTKi4zQI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QGFReJqqYet1So1y/bBPEHCH7TEl2p7DuPCqOufOCTBZwJqY6tYb1Bjyyfq3dP3SZ 06R7jmIgnCrccSBUyOP+Yy2BytjKNG0YV0I/7y4gpYqrjRvngXD+akWOrmOktf9G8c gjNf6UA3DQvlOMAnMteapzGF5UaWLKoQt+qm4UoQ=
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/2806/push/3799587934@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251c8d36b25_62ff3fd397ecd95c112459f"; 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/ni-FxtkfF5nMDRLwHGVvOCKnf1s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:00:32 -0000

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

@ianswett pushed 1 commit.

d4570113c0a67a997fd92c0694e7252e7cd5cad6  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/2806/files/21c79243e265d1455dd921988f4e07c53b4d874c..d4570113c0a67a997fd92c0694e7252e7cd5cad6

----==_mimepart_5d251c8d36b25_62ff3fd397ecd95c112459f
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/d4570113c0a67a997fd92c0694e7252e7cd5cad6">d457011</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/2806/files/21c79243e265d1455dd921988f4e07c53b4d874c..d4570113c0a67a997fd92c0694e7252e7cd5cad6?email_source=notifications&amp;email_token=AFTOJKYMWMKYWS4AAG6L7TTP6UKA3A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJYG44TGNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6G5L6USO3M6ENF4DDP6UKA3ANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7WDKZX4CG7A7AGTCDP6UKA3A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJYG44TGNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/21c79243e265d1455dd921988f4e07c53b4d874c..d4570113c0a67a997fd92c0694e7252e7cd5cad6?email_source=notifications\u0026email_token=AFTOJKYMWMKYWS4AAG6L7TTP6UKA3A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJYG44TGNA",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/21c79243e265d1455dd921988f4e07c53b4d874c..d4570113c0a67a997fd92c0694e7252e7cd5cad6?email_source=notifications\u0026email_token=AFTOJKYMWMKYWS4AAG6L7TTP6UKA3A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJYG44TGNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d251c8d36b25_62ff3fd397ecd95c112459f--


From nobody Tue Jul  9 16:01:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 62A90120075 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:01:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cyIclZfC09eq for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:01:45 -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 AB3B2120019 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:01:45 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:01:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713304; bh=y1XKf0D6D8whnEXUGOpK6Kb42j09EYhMw7kQ3DEHp1Y=; h=Date:From:To:Subject:From; b=k3vkBCaSQKqDX4KbMZX86NxiZish1EBWY/nk1EfRCZOjwwz3/sh0GyPmgDeKvUrEW uA/6pIo0A+/AfxgB0eqskqFOnm1Yi3ZiHMg5enu1hlSedWpcpqXnYVm16Ri6t/X9k+ TiQSkvoy+fZ+wnHbmSeFORMz2EgzgxShSVAdt9T8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ce7184-f87ce7@github.com>
Subject: [quicwg/base-drafts] f87ce7: Script updating gh-pages from d4570113. [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/MuVgXMkmGzVV4WTzvD2T2FKOHxc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:01:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f87ce763e64c017db7d06ff0688821b59c07c3e3
      https://github.com/quicwg/base-drafts/commit/f87ce763e64c017db7d06ff0688821b59c07c3e3
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  9 16:03:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5A064120059 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:03:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FtoSuQJjlcrO for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:03:40 -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 24699120019 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:03:40 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:03:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713418; bh=PB6Xi+WsBpj2qADzehHkjvEk7h+4BsBctJ85BBnHxCU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mCLj0W7uoMlisapT1xTmYgUzCRlEcy4JqUM/Eh7kZUrYsKcg5RG2EQpjVaG3wZLzI tJVsyheV9BFYjOdEjc4tprAvKzf1e7S6L2Rp9gZon3TBJD5m+HVFQ7SJq3tB2cXKKY KHxX3ujCLw+Uev+l6PPs7hxwhOVh+OG3binT+W5w=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BO3NNFQSOG33YS5N3GJH4VEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/259801221@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251d4ab7553_78983f906aacd96c61291f"; 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/pFHRRmu5fmeul3covNQnEwf9uac>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:03:43 -0000

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

janaiyengar commented on this pull request.



> @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender's rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender's rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 

Maybe it's worth adding a sentence here to say that "The life of a connection that is experiencing consecutive PTOs is limited by the endpoint's idle 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/2806#discussion_r301828150
----==_mimepart_5d251d4ab7553_78983f906aacd96c61291f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r301828150">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -543,49 +544,46 @@ delay sending an acknowledgement.
 The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
-When a PTO timer expires, the sender probes the network as described in the next
-section. The PTO period MUST be set to twice its current value. This exponential
-reduction in the sender&#39;s rate is important because the PTOs might be caused by
-loss of packets or acknowledgements due to severe congestion.
+When a PTO timer expires, the PTO period MUST be set to twice its current
+value. This exponential reduction in the sender&#39;s rate is important because
+the PTOs might be caused by loss of packets or acknowledgements due to severe
+congestion.
 
</pre>
<p>Maybe it's worth adding a sentence here to say that "The life of a connection that is experiencing consecutive PTOs is limited by the endpoint's idle timeout."</p>

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


From nobody Tue Jul  9 16:04:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DA52A120059 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:04:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 ydZMrYyOvYLq for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:04: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 438E5120019 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:04:45 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:04:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713484; bh=fGvFSyaAEF0hHKa1168xCxHYi2y/AxHL/5d7RFKW9jk=; h=Date:From:To:Subject:From; b=ptHIyi1vjTIQYHZWIT3PWWxEjNn/3rdN2Ak85kGF/e2jQaf+LWM9A9RhODBJv7FJU JAmN+Ja2K0MkWS73h0w8QrV5icxbFcwDTeokz4j8yJhJDTcbvrvl9pv4ijL7DSpqEv EjQRRpg8jfAVe63JK+fUWSE1H9v3zfNls5Bsj1HI=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/d45701-fcccff@github.com>
Subject: [quicwg/base-drafts] fcccff: 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/PEvC5iv8YZNTL-o1i_INmiSuVDY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:04:47 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: fcccfff8962a9f069466d8227ead6c1ad1e82356
      https://github.com/quicwg/base-drafts/commit/fcccfff8962a9f069466d8227ead6c1ad1e82356
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 16:04:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 74C43120059 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:04:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 8S8H68v1tMXQ for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:04: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 8376D120019 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:04:52 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:04:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713491; bh=CAmrJ4waQPJE90vd+I/bJ+wjNOmmlFHmhirIPBI2rRo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qAX8BdE9Opy+xSUTbYoxJLpayuArhKrEyKHxNgLrHGnI7jMQ5ird7a3jdPPzbY/27 iy0LIwSytB7+Tnta091sH/5XG89F6XWrIh9Us6xiK/bJrUrpYNmrnGXgqeq/e3YgoS RK1siSJ4PtzbOa+47ZENKOWIpQchUt/TEpopuI/0=
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/2806/push/3799597997@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251d936bcc9_45ad3fcc3a4cd95c5496e7"; 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/9BTCUZOTAivZ2DANS9TwK3gYEAU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:04:55 -0000

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

@ianswett pushed 1 commit.

fcccfff8962a9f069466d8227ead6c1ad1e82356  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/2806/files/d4570113c0a67a997fd92c0694e7252e7cd5cad6..fcccfff8962a9f069466d8227ead6c1ad1e82356

----==_mimepart_5d251d936bcc9_45ad3fcc3a4cd95c5496e7
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/fcccfff8962a9f069466d8227ead6c1ad1e82356">fcccfff</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/2806/files/d4570113c0a67a997fd92c0694e7252e7cd5cad6..fcccfff8962a9f069466d8227ead6c1ad1e82356?email_source=notifications&amp;email_token=AFTOJKZQ3CPMXTSSOTHTKJDP6UKRHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJZG44TSNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2FGVNHKQKE3HKDLO3P6UKRHANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55UKOLUFPVELMVYSDP6UKRHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJZG44TSNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/d4570113c0a67a997fd92c0694e7252e7cd5cad6..fcccfff8962a9f069466d8227ead6c1ad1e82356?email_source=notifications\u0026email_token=AFTOJKZQ3CPMXTSSOTHTKJDP6UKRHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJZG44TSNY",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/d4570113c0a67a997fd92c0694e7252e7cd5cad6..fcccfff8962a9f069466d8227ead6c1ad1e82356?email_source=notifications\u0026email_token=AFTOJKZQ3CPMXTSSOTHTKJDP6UKRHA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNJZG44TSNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d251d936bcc9_45ad3fcc3a4cd95c5496e7--


From nobody Tue Jul  9 16:05:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 034E112006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:05:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RSO0Kxc-8VZB for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:05:07 -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 697E4120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:05:07 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:05:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713506; bh=H1mzE+8hov/A36XHZoalSHLjvrCOXMA8e8SdoIDAY1E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HRP0jiJVoHS7xWKSb1qmtAyFw8FXSq+wupJeWoTb4qvdGOOtc2yjkQhZLLLjTtZ7X o7Q9eU5arS3ithOXk53OYyzDoS0s8FoPyQsaj2dCx02SiR9Cai2+s5yrf/PZic7Fqa sMS8OnU+t+qiBZTKjXMDIwo8PdxTIA9DG7pXmOJo=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HQBCXZDEAGTRLS7F3GJICFEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/259801590@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251da25f0f0_36fe3fb66d2cd9648907d9"; 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/y8UluTPRDOnBkNACT9f7w4Yp5C4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:05:09 -0000

----==_mimepart_5d251da25f0f0_36fe3fb66d2cd9648907d9
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/2806#pullrequestreview-259801590
----==_mimepart_5d251da25f0f0_36fe3fb66d2cd9648907d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2806?email_source=notifications&amp;email_token=AFTOJK3EDUHQCJ6CBWHICLDP6UKSFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56ED5Q#pullrequestreview-259801590">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7Y7BT4T7ZV45E3AQDP6UKSFANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZI4YGAJ5GHJIKG7ETP6UKSFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56ED5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK3EDUHQCJ6CBWHICLDP6UKSFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56ED5Q#pullrequestreview-259801590",
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK3EDUHQCJ6CBWHICLDP6UKSFA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56ED5Q#pullrequestreview-259801590",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d251da25f0f0_36fe3fb66d2cd9648907d9--


From nobody Tue Jul  9 16:06:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DED5012006D for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:06:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yt0MUD6Tuxll for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:06: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 89ACF120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:06:00 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:05:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713559; bh=zALB83NL//+3cbWdMkKcMj/SUHyKUJ0WCk2JAzxX2Mg=; h=Date:From:To:Subject:From; b=NwZ3uMb4s2qn8aqHVhBUyxjEUA3lxzaU6LBFBTouNy5rqFO2iyu0XbbklJ+wdGtj1 ZNbN0cQnUBNfDOSp4kgS/IqqXyA+7sFkVu1SHOD4bRiQ+kfjXPQCBKdRR34F3kRMIf AI8vSpykQbmoT2fTo6aoo0SMnXtYrJ5V9s6DzQbQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f87ce7-c048dc@github.com>
Subject: [quicwg/base-drafts] c048dc: Script updating gh-pages from fcccfff8. [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/INwzTkUK2jmHm_25SmX4O_9rVXE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:06:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c048dce6a040f121262f4a8070faaefbe9fdcdab
      https://github.com/quicwg/base-drafts/commit/c048dce6a040f121262f4a8070faaefbe9fdcdab
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  9 16:07:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8A382120075 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:07:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 FQ0ulMj8pCsw for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:07: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 0B254120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:07:20 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:07:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713639; bh=QKsoOIi2/BuiXRcOntjonC1SFdXRUwrg6UDIbNiRUtI=; h=Date:From:To:Subject:From; b=A+0OI2mN9PvfvcPG8ql8iRa61BBGlZaH9/vmYhAIRUPkKnYelbwipuHXUTwM0P+j+ N7GLBpCaYpd6H4ggbafK9W/lF/8neFvWtsEe6Ih/g/xvLhDwpyWmDgTVpA2e8IZSrm X3K3mI+XgusOQ71mGJSQWhLf3ePEHwHXYCsDXLUA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/fcccff-fb1f32@github.com>
Subject: [quicwg/base-drafts] fb1f32: 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/p6j9C7LbT3RyH7wPdj2RVGB7AwM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:07:21 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: fb1f327239d8bc3a8c886c482336a85d0e0a73f1
      https://github.com/quicwg/base-drafts/commit/fb1f327239d8bc3a8c886c482336a85d0e0a73f1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 16:07:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7FC36120075 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:07:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 8ceuVhdB_Ook for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:07:28 -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 CD42B120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:07:27 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:07:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713646; bh=qoaF1/EIFhxCxkxEvahsLgpRvXsMOTyjB0kiT/+mx9Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UIYN6iv57yjIatOZQMsKK1uHFDbk9m6pINmwMrU17AKhyJUSBwBswN7B46PjUnKZV 6Lop/fRsLnj/Au0GosgnwDFO623WZhWMV3/0CfFQtYtLZXgZfKKo8rpeW1TaqK8ClE lVraFpmYcUAULSS1dk9BCThULLKvoi7pWjljjU08=
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/2806/push/3799603472@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d251e2ed23ef_3193fc6608cd9604380b"; 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/YZ8f8p4uH-vmp87VcQAMYCwdIkA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:07:30 -0000

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

@ianswett pushed 1 commit.

fb1f327239d8bc3a8c886c482336a85d0e0a73f1  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/2806/files/fcccfff8962a9f069466d8227ead6c1ad1e82356..fb1f327239d8bc3a8c886c482336a85d0e0a73f1

----==_mimepart_5d251e2ed23ef_3193fc6608cd9604380b
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/fb1f327239d8bc3a8c886c482336a85d0e0a73f1">fb1f327</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/2806/files/fcccfff8962a9f069466d8227ead6c1ad1e82356..fb1f327239d8bc3a8c886c482336a85d0e0a73f1?email_source=notifications&amp;email_token=AFTOJK7QUAPXBSI5R2FQIU3P6UK25A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNRQGM2DOMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK562P4XCZ6K6B6XY3TP6UK25ANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY4CXJ6FG6MOYPCVIDP6UK25A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNRQGM2DOMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/fcccfff8962a9f069466d8227ead6c1ad1e82356..fb1f327239d8bc3a8c886c482336a85d0e0a73f1?email_source=notifications\u0026email_token=AFTOJK7QUAPXBSI5R2FQIU3P6UK25A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNRQGM2DOMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/fcccfff8962a9f069466d8227ead6c1ad1e82356..fb1f327239d8bc3a8c886c482336a85d0e0a73f1?email_source=notifications\u0026email_token=AFTOJK7QUAPXBSI5R2FQIU3P6UK25A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTG44TSNRQGM2DOMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d251e2ed23ef_3193fc6608cd9604380b--


From nobody Tue Jul  9 16:08:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 05B3A1200C3 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:08:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xitT8sapdkn7 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:08: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 588F8120059 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:08:36 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:08:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562713715; bh=oXaCIJk4wZUy4UvyjYW99W4tK8Tc/8WCxh+2zeE/IgQ=; h=Date:From:To:Subject:From; b=NO94iRKnzppMzlhe406lzT9lnlpLOReaPp1aZLPM2OvqoIKqxloxBywoyGVYRztTL nyuEHS4K96kJafOm7wyXQ8bU4LtVMa1ToQ1CzRpAb/MVeAYfaNnrrAiiIN9Acq/Jxc Qs13nXGD2trl8Una/Ii8MqihdcbnrDkTG1Ps+Lgk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c048dc-399040@github.com>
Subject: [quicwg/base-drafts] 399040: Script updating gh-pages from fb1f3272. [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/nYbc_tN1wkbPoPCQj5hVGoLJ5HI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:08:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3990409ae6d06315b3deb21fe5637eee43c405a3
      https://github.com/quicwg/base-drafts/commit/3990409ae6d06315b3deb21fe5637eee43c405a3
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M index.html

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



From nobody Tue Jul  9 16:23:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 08198120072 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:23:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 b1e-BADpBWHd for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:23:20 -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 4A269120024 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:23:20 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:23:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562714599; bh=cc5jEbHthUaeTaJ3okc8+SqLbthCqgQZliFlg1iBVWA=; h=Date:From:To:Subject:From; b=xwv2hPAYkOpTk24jRZL+X8hYxNucajQkHEox6RJBx7gK0LovleLAAI39C6wazn4cP 34qOPvoH9RQ+y7RL1KPsxt2jCsbUoWJQkiTgQLjRCwKOwQHGHrt4R97fYBs4F1yeWC oxaLV0E+CMmgnOuwBu86LxomQ9wMRXiJERElQapw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/vectors-23/000000-918cda@github.com>
Subject: [quicwg/base-drafts] 918cda: Get test vectors in place for -23
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/joso6r9r-sGakR44kQLyZjQfNJY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:23:22 -0000

  Branch: refs/heads/vectors-23
  Home:   https://github.com/quicwg/base-drafts
  Commit: 918cda45036cd7e7d36d7a4cc8fa9f36f243534b
      https://github.com/quicwg/base-drafts/commit/918cda45036cd7e7d36d7a4cc8fa9f36f243534b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md
    M initial-protection.js

  Log Message:
  -----------
  Get test vectors in place for -23

New salt, updated for invariants change.



From nobody Tue Jul  9 16:24:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2D860120075 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:24:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id taC8MogQuBXu for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:24: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 24C88120024 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:24:51 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:24:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562714690; bh=jSYRAUai2EIgpT9EIEG+K77/ha9rcQwv2OR/bNwiaio=; h=Date:From:To:Subject:From; b=rAZvRuJOKvoG1fnw4jL0KxghMfCjtbH3yE+HPBv0qWBQ/4AhJ4J4bl8CKx3qnikRF +e8eaLiw6Zj2qtmcZxclyNuOszTtRWCn0HILKxIG6Cd47pVLXUgIle3V8AqEcmRy8I 8acKYn6dYjtIMId6PKTOwa3qPmsIGXkSAK5ZcFkI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/399040-3aa24d@github.com>
Subject: [quicwg/base-drafts] 3aa24d: Script updating gh-pages from 918cda45. [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/WIMN2XZ2AQSBae1MKmnElwXzlxs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:24:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3aa24d812102f0b90141dd6389bba30c3822f881
      https://github.com/quicwg/base-drafts/commit/3aa24d812102f0b90141dd6389bba30c3822f881
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

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



From nobody Tue Jul  9 16:25:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AA78C120156 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:24:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 kmsNgYIrzbAg for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:24:53 -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 5225A120024 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:24:53 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:24:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562714692; bh=0EIVdkgvLBty2jwGVfhqjGthaWQOo+BHsbsf7Tzc9AA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=DIPrkMiJ8P+etJXk/6QEOxwUGX3trKg+zSMuYxua3Ly64cYI8STv8KMwH7DfYzbIr LluuDeKSpcFRJYr14FBg0H6j1kCLf+BwBEi0Aq3yQpgpgK59mLuTaSWKeDIWv7FCcf Bv4GYmNZ6Cvwq3KWGy5ZEuy2uiruRwGe2atHSKsk=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3HW6BIQFYHA6W2OLF3GJKMJEVBNHHBXRYAZ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2887@github.com>
Subject: [quicwg/base-drafts] Get test vectors in place for -23 (#2887)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25224425925_53a23fcc3a4cd95c10169c5"; 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/IkFlOpG9btqNz16dMeyWmdxHAgY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:24:56 -0000

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

New salt, updated for invariants change.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Get test vectors in place for -23

-- File Changes --

    M draft-ietf-quic-tls.md (108)
    M initial-protection.js (16)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2887.patch
https://github.com/quicwg/base-drafts/pull/2887.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/2887

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

<p>New salt, updated for invariants change.</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/2887'>https://github.com/quicwg/base-drafts/pull/2887</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Get test vectors in place for -23</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2887/files#diff-0">draft-ietf-quic-tls.md</a>
    (108)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2887/files#diff-1">initial-protection.js</a>
    (16)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2887.patch'>https://github.com/quicwg/base-drafts/pull/2887.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2887.diff'>https://github.com/quicwg/base-drafts/pull/2887.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/2887?email_source=notifications&amp;email_token=AFTOJK3K6FKVCSJPSDARNMDP6UM4JA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6HADHQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZRJ2VJAXLAR4UN37LP6UM4JANCNFSM4H7KCNBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZBWAREEB3PKYHDPNDP6UM4JA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6HADHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2887?email_source=notifications\u0026email_token=AFTOJK3K6FKVCSJPSDARNMDP6UM4JA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6HADHQ",
"url": "https://github.com/quicwg/base-drafts/pull/2887?email_source=notifications\u0026email_token=AFTOJK3K6FKVCSJPSDARNMDP6UM4JA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6HADHQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d25224425925_53a23fcc3a4cd95c10169c5--


From nobody Tue Jul  9 16:35:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 82A8A1200C5 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:35:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 fgR7cEssqRFD for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:35: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 8EE5E120046 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:35:27 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:35:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562715326; bh=Pa4FV5b3nBns4+60VdZ4aTjXCiCXxf2ebn7oR4Xykfo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JiLxZNEKXgjd3WL+sJW7c9no7jqlvlqO9XV5O3uwRu8oVcf35+umHhhrku7K8uvl+ jBIQFJ4EfL/IsabetBHZhiVYTR6SiO5VHywozjY9W8xrdSguM/P1xYpoUR352VET8q DZGu4UxIY7x4Zytw9LiH1XISF7gtQrBZeNfZ7lPc=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73HEB57U2JJHEAZYV3GJLT5EVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/259809298@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2524be7b3db_66e63fa3b76cd9604171fb"; 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/rcwwJlQuPDLl-ZItGjVsph7B4GY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:35:30 -0000

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

kazuho approved this pull request.

The text looks fine, and I think that the design change is also fine.

IIRC, current design allows a server to process a Initial packet with a token that it does not understand. I am not sure if that is good or bad, but at least it's slippery.

The proposed change enforces the use of a retry token for handling the payload, addressing this slipperiness (note: unverifiable new_token tokens can be ignored regardless of this 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/2878#pullrequestreview-259809298
----==_mimepart_5d2524be7b3db_66e63fa3b76cd9604171fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<p>The text looks fine, and I think that the design change is also fine.</p>
<p>IIRC, current design allows a server to process a Initial packet with a token that it does not understand. I am not sure if that is good or bad, but at least it's slippery.</p>
<p>The proposed change enforces the use of a retry token for handling the payload, addressing this slipperiness (note: unverifiable new_token tokens can be ignored regardless of this 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/2878?email_source=notifications&amp;email_token=AFTOJK7NM2WJGSP4ITCKAS3P6UOD5A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56GAEQ#pullrequestreview-259809298">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK73W2GVJ2WQ5VOAMRLP6UOD5ANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6AF67KIWUDKK4Q77DP6UOD5A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56GAEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK7NM2WJGSP4ITCKAS3P6UOD5A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56GAEQ#pullrequestreview-259809298",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK7NM2WJGSP4ITCKAS3P6UOD5A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56GAEQ#pullrequestreview-259809298",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2524be7b3db_66e63fa3b76cd9604171fb--


From nobody Tue Jul  9 16:37:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8C2BB120020 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:37:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0KuYT-nCwOsy for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16: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 9450F120046 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:37:24 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:37:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562715443; bh=+q5w756o+owWqWJqDIkVHgjwGMQd5vjBPHezB9V6iEE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HWzHg7YOnPw6iiJV7SchgnTRAXNYJpWxJaK444y5LCyqgforwZOBBIFXcdh2Ri+H9 MoA/sjl23RAS1+DJO7orAZO5dV0qbDrnEkTfErcmg/bY4vZa18QwmAgJof0gBCeW8M FiFbziDA1R+YnVQKNbSLZ8TD2WAn/ssI2UQ1nAp4=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CIN5MPR726K63AYN3GJL3HEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/259809821@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25253345f9e_7cc03fc3274cd96476895f"; 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/_zVv0YO22leyTV3X8x68zE9CS1w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:37:28 -0000

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

janaiyengar commented on this pull request.



> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

Summarizing where I think @martinthomson and I are currently. An endpoint only validates ECN counts for ACK frames received where the largest acknowledged increases. This guarantees that the ACK is newer, meaning that ECN counts should be higher... This is only true if we require that the peer SHOULD increase ECN counts only in ACK frames where largest acknowledged is not decreasing. If the peer doesn't, then it risks ECN validation failing.

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

<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2879#discussion_r301835287">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in
</pre>
<p>Summarizing where I think <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> and I are currently. An endpoint only validates ECN counts for ACK frames received where the largest acknowledged increases. This guarantees that the ACK is newer, meaning that ECN counts should be higher... This is only true if we require that the peer SHOULD increase ECN counts only in ACK frames where largest acknowledged is not decreasing. If the peer doesn't, then it risks ECN validation failing.</p>

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


From nobody Tue Jul  9 16:50:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0AF31120089 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:50:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ySgs_-b62-wz for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:50:29 -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 2722A120020 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:50:29 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:50:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562716228; bh=E+g9DVwAUwGWvVG0KoVplIxgPTpTHbeA3WkDN8Rn6qs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uivia6e/jsqozYuoCpFASnioDu8giaFBrYvdxmyhD18FhafId6a5CvkweX8Y0BrDh 0EHRALVZ8iWaVyuLTVpHaUZRKHY7dmGKDq9LoK1LYwc6CdNs/mJYXl8+/qfdlUh2Xg z1Q5AVS1u8//CHDKNrjzu7xlfu+goI3iZUUAOxbU=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ICYTAJ4KJUSRPDJF3GJNMJEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/259812960@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25284416d8b_66d43fa3b76cd96010529bd"; 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/L86mEwl-rCcBAmTQPs22gBXzPm0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:50:31 -0000

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

ianswett commented on this pull request.



> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

That SG.  We should also strongly recommend NOT retransmitting old ACKs if we don't already.

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

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2879#discussion_r301837919">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in
</pre>
<p>That SG.  We should also strongly recommend NOT retransmitting old ACKs if we don't already.</p>

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


From nobody Tue Jul  9 16:53:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 34F5A120089 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:53:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XJdFablXm9IM for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 16:53: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 EDA0F1200C3 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 16:53:29 -0700 (PDT)
Date: Tue, 09 Jul 2019 16:53:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562716408; bh=oDs2DHc5Z1BBi1vlODNHxaNNxdI9UdXKSPtEzBs863Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p49yrQAeDfG02BUiYmufFhHEPp24y/3bkvybhkpV08gzmIn0o6NmMGjozL4vjIyLK zrTckx/keQFf0bQobQzrXtVcmbUtlSmYCPQ0QTrxeVLdUN1M5i0Qd3VrdlzkpvytQy O3g5wU9s1YgI9V9m2zQp3SRy+nHpaHLWV6oKOd4w=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2THIX7W3BDWLQYLU53GJNXREVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509852239@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2528f8a4237_24163f8032ecd9608632b3"; 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/TcRMTFgniU-onukFgEF7i2LxqmI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 09 Jul 2019 23:53:32 -0000

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

Doing a hum sounds good to me. Mp prefeence goes to arguing for dislikes as @ianswett says.

@martinthomson 
> As I understand the state of play, the main costs are bytes on the wire (potentially across a wide range of operating points: short RTT, fast processor to long RTT, slow processor), code complexity, and efficiency of calculating the values for encode (e.g., division vs. shift) or decode (e.g., multiply vs. shift).

FWIW, this is the table I have illustrating the differences of the encoder side. I do not think division is necessary even when adopt the multiplier proposal, because the encoder has the freedom to choose the multiplier. By choosing a multiplier that is 2-power of the timer granularity, a encoder can use a bit shift operation.

| design \ granularity | 1us | 2<sup>n</sup> us | 10<sup>n</sup> us |
|:---:|:---:|:---:|:---:|
|no scaling|noop|bit-shift|multiply|
|bit-shift|bit-shift|bit-shift|becomes inaccurate|
|multiplier|bit-shift|bit-shift|bit-shift|

For the decoder side, it's noop vs. shift vs. multiply.

-- 
You are receiving 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/2670#issuecomment-509852239
----==_mimepart_5d2528f8a4237_24163f8032ecd9608632b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Doing a hum sounds good to me. Mp prefeence goes to arguing for dislikes as <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=20072817" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> says.</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a></p>
<blockquote>
<p>As I understand the state of play, the main costs are bytes on the wire (potentially across a wide range of operating points: short RTT, fast processor to long RTT, slow processor), code complexity, and efficiency of calculating the values for encode (e.g., division vs. shift) or decode (e.g., multiply vs. shift).</p>
</blockquote>
<p>FWIW, this is the table I have illustrating the differences of the encoder side. I do not think division is necessary even when adopt the multiplier proposal, because the encoder has the freedom to choose the multiplier. By choosing a multiplier that is 2-power of the timer granularity, a encoder can use a bit shift operation.</p>
<table>
<thead>
<tr>
<th align="center">design \ granularity</th>
<th align="center">1us</th>
<th align="center">2<sup>n</sup> us</th>
<th align="center">10<sup>n</sup> us</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">no scaling</td>
<td align="center">noop</td>
<td align="center">bit-shift</td>
<td align="center">multiply</td>
</tr>
<tr>
<td align="center">bit-shift</td>
<td align="center">bit-shift</td>
<td align="center">bit-shift</td>
<td align="center">becomes inaccurate</td>
</tr>
<tr>
<td align="center">multiplier</td>
<td align="center">bit-shift</td>
<td align="center">bit-shift</td>
<td align="center">bit-shift</td>
</tr>
</tbody>
</table>
<p>For the decoder side, it's noop vs. shift vs. multiply.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJKZ4W4I2X3LWRFSUT6LP6UQHRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZR3UTY#issuecomment-509852239">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7LBJMXQS7SBGCJ7ZLP6UQHRANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GBB3PSPRQEAOSTA3P6UQHRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZR3UTY.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJKZ4W4I2X3LWRFSUT6LP6UQHRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZR3UTY#issuecomment-509852239",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJKZ4W4I2X3LWRFSUT6LP6UQHRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZR3UTY#issuecomment-509852239",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2528f8a4237_24163f8032ecd9608632b3--


From nobody Tue Jul  9 19:03:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9D30D120096 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:03:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 W0zSAZVHmexa for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:03: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 CD9D9120048 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 19:03:22 -0700 (PDT)
Date: Tue, 09 Jul 2019 19:03:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562724200; bh=osEfNvFd7vb5hTzb2hxoe2HFBeLc9aIsuaRZ5IIT63g=; h=Date:From:To:Subject:From; b=LX4TUkGvqWV2khw/CYbsNP/ExOvAVWIIpsx7TE2UZnyUrL8/R1Z1uggzRkcyjl8J4 ZlDrjP4wX9dvKI9tTlR/0cP/NAqhj9FBQCCPD9l4cC+HDfkn+kATSraGvFE2fq00GG J6kYMeIFRMJGrXRtJtkh8ijNiG9On3tCqRVxRzl0=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/1b61c5-8791dd@github.com>
Subject: [quicwg/base-drafts] b20502: fixed 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/rXaQnP6QolXA5isTeu335IcDSrY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 02:03:25 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b205028bd6b3ee9419725022c96d8a6f72bd5d91
      https://github.com/quicwg/base-drafts/commit/b205028bd6b3ee9419725022c96d8a6f72bd5d91
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  fixed typo


  Commit: 8791dd420b0afb6a6395025d33c339747b448e3b
      https://github.com/quicwg/base-drafts/commit/8791dd420b0afb6a6395025d33c339747b448e3b
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

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

  Log Message:
  -----------
  Merge pull request #2883 from martinduke/patch-1

fixed typo


Compare: https://github.com/quicwg/base-drafts/compare/1b61c54b8a46...8791dd420b0a


From nobody Tue Jul  9 19:03:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 00F1D120096 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:03:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aTtqN74uw8pu for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:03:33 -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 2E0C5120048 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 19:03:33 -0700 (PDT)
Date: Tue, 09 Jul 2019 19:03:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562724211; bh=JknrPPbDMTl2zMwf7kTe1kRovrY13onpEy5y0/zfY08=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mObzeUN57hVR5hf5k+MIIv5QSO8VlZSOuyrAqWsYziYXShVoaTyZ3WVmb0GH9za/C GMv4UdMxgmxiko19jqa2Sr1BS1Rcyd4+DdTUjjMpU49x4fnwGrt3bETCq+izvUBfEI KwindpIsqxjPctN4f9jQNOxYf3b7ydpooiW7g/Sk=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZDEO5J2TJK5CDN6RF3GJ47FEVBNHHBXQ7YLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2883/issue_event/2471124619@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2883@github.com>
References: <quicwg/base-drafts/pull/2883@github.com>
Subject: Re: [quicwg/base-drafts] fixed typo (#2883)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d254772ef8ac_7ca33ffd2eacd968225128d"; 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/jhBAy718n3xehbeco5PNNvvcsAA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 02:03:35 -0000

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

Merged #2883 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/2883#event-2471124619
----==_mimepart_5d254772ef8ac_7ca33ffd2eacd968225128d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465827931" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2883" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2883/hovercard" href="https://github.com/quicwg/base-drafts/pull/2883">#2883</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/2883?email_source=notifications&amp;email_token=AFTOJK6C2ZYWML4YS5SHAHDP6U7PFA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNFF5CY#event-2471124619">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ZIXXARWSRSSHADUTP6U7PFANCNFSM4H7GMDBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZLEIYULIZUULXVETP6U7PFA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNFF5CY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2883?email_source=notifications\u0026email_token=AFTOJK6C2ZYWML4YS5SHAHDP6U7PFA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNFF5CY#event-2471124619",
"url": "https://github.com/quicwg/base-drafts/pull/2883?email_source=notifications\u0026email_token=AFTOJK6C2ZYWML4YS5SHAHDP6U7PFA5CNFSM4H7GMDB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSNFF5CY#event-2471124619",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d254772ef8ac_7ca33ffd2eacd968225128d--


From nobody Tue Jul  9 19:04:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6F4B8120096 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:04:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id m8EabsMyUwX6 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:04: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 D57D1120048 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 19:04:34 -0700 (PDT)
Date: Tue, 09 Jul 2019 19:04:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562724273; bh=PrDjzFHhe036XJpTssInPE2oprigq0C6zYMc9/qsaEU=; h=Date:From:To:Subject:From; b=pgVMq9CTbugiNAdSyp+886J3CUltA6D9+S0i6icX4HDxED7Ux90IDwtu+8opOfdo0 nCl4J/C94kY8sN0yd+xEK/6C/UglbjqCOkbLUvGZAXmTlpLszRGy2BHQvwO8cDkTKX o65Blf+K1GRA2JvOSxx35DPzNw/Sw64+8z5SOMzg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3aa24d-5c290b@github.com>
Subject: [quicwg/base-drafts] 5c290b: Script updating gh-pages from 8791dd42. [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/mEp1-2NKM4eTrIg--vr2zOQN1tw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 02:04:37 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5c290bce08094427ca69cbfee452364724ec1e1e
      https://github.com/quicwg/base-drafts/commit/5c290bce08094427ca69cbfee452364724ec1e1e
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  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 8791dd42. [ci skip]



From nobody Tue Jul  9 19:06:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 610CB120090 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:06:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fwIBn6Clgwqu for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:06: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 F1D6A120048 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 19:06:29 -0700 (PDT)
Date: Tue, 09 Jul 2019 19:06:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562724388; bh=SZa3gBaZqm3cSOP/7ZZ+HIXKuOjyA/3g8EHrJU3DQ9g=; h=Date:From:To:Subject:From; b=guuLeTNQLSWRgn9kbbQpC4uFDAXAmHzKe0lSPEzZP2e+StwOv4tUZrVWE2yTMGyaN nG8KScBsaOWe7rmwWPHF/Re2Ck0nCsNr/DC/KLxZkxNeaeUuRxFfOXHZQ+4UjaFFZK ukqCA9qmkgSnIv0Hx3xXzRWYYCGAiMlWqYhrOff8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/5c290b-9308a8@github.com>
Subject: [quicwg/base-drafts] 9308a8: Script updating issues at 2019-07-10T02:06:22Z. [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/WGr4z3GscwAcMRv6vjYAFka9Gcw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 02:06:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9308a808a98ff688980ff0811018e039634839bc
      https://github.com/quicwg/base-drafts/commit/9308a808a98ff688980ff0811018e039634839bc
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-10T02:06:22Z. [ci skip]



From nobody Tue Jul  9 19:13:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 65959120048 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:13:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id npePB8kgrn3n for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 19:13:11 -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 51FC0120141 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 19:13:11 -0700 (PDT)
Date: Tue, 09 Jul 2019 19:13:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562724789; bh=v6lAV3a080ROB14JsFHGp+2MgVSKXMmky28T3XIb9Hw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uRXQrPUeDpkQi2yEZ6K33HEC2OKXssfNUQJL1bAJEQD3pfvavB9hF45SjS8EIcsKs N1mzoNAttLx6VjRPvY9PZsleYHOXZoTadHIscFW3njwg8CsZJEZtO7pxzoJbH7pR1i HArDe3mvT01kBx3FiL9oqlo+Ou95Ver1yXAGvGdw=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK76DF4COB6KEQKNVG53GJ6DLEVBNHHBXRYAZ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2887/review/259840634@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2887@github.com>
References: <quicwg/base-drafts/pull/2887@github.com>
Subject: Re: [quicwg/base-drafts] Get test vectors in place for -23 (#2887)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2549b592f43_36c13fc3274cd964151276"; 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/lATghOcN30SDt8mquX-5yDyJh_k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 02:13:14 -0000

----==_mimepart_5d2549b592f43_36c13fc3274cd964151276
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/2887#pullrequestreview-259840634
----==_mimepart_5d2549b592f43_36c13fc3274cd964151276
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2887?email_source=notifications&amp;email_token=AFTOJK3C6BB7WD5Y6ONBUULP6VATLA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56NU6Q#pullrequestreview-259840634">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3UCBJPSDLZOUMHCSDP6VATLANCNFSM4H7KCNBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGKBWIPYALJMJNBMLP6VATLA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56NU6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2887?email_source=notifications\u0026email_token=AFTOJK3C6BB7WD5Y6ONBUULP6VATLA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56NU6Q#pullrequestreview-259840634",
"url": "https://github.com/quicwg/base-drafts/pull/2887?email_source=notifications\u0026email_token=AFTOJK3C6BB7WD5Y6ONBUULP6VATLA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56NU6Q#pullrequestreview-259840634",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2549b592f43_36c13fc3274cd964151276--


From nobody Tue Jul  9 23:33:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 45A61120103 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:33:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 3NFJp1SP4EIT for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:33: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 AE7B8120100 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 23:33:50 -0700 (PDT)
Date: Tue, 09 Jul 2019 23:33:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562740429; bh=GEjo/RXik9wsEHrXEiyr8hWIn1R3su9H6nhlheFKTjw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=N6JBazrBi4Y/5dPIGVKtKdmVbgMRCCPwojbEW/wTySK75fOWsYJu3HGaoSL7mHRWI owGB+q10jZHLVM9zS+Q6wSdxo31Ts8UjV3VawC4QKwMjcgNgzbofo3u7gVN8oy/j3D WnjgZTblvRKEugQa6H5hJfTpBKWEHz+x83yv1QT0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UYX5RNBDM4S322KV3GK4U3EVBNHHBXMLRZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2873/review/259892747@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2873@github.com>
References: <quicwg/base-drafts/pull/2873@github.com>
Subject: Re: [quicwg/base-drafts] grease transport parameters (#2873)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2586cd12d43_240a3f8032ecd96022675a4"; 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/SQzKO2ATx3Ua-0fZ-muoRLjlv84>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 06:33:52 -0000

----==_mimepart_5d2586cd12d43_240a3f8032ecd96022675a4
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/2873#pullrequestreview-259892747
----==_mimepart_5d2586cd12d43_240a3f8032ecd96022675a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2873?email_source=notifications&amp;email_token=AFTOJKYGWFQQOXJAGYDSYBDP6V7E3A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB562MCY#pullrequestreview-259892747">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4NQWSIT7YQCJA6RWDP6V7E3ANCNFSM4H6KZHXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY257IZCNS6PQQJYXDP6V7E3A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB562MCY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJKYGWFQQOXJAGYDSYBDP6V7E3A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB562MCY#pullrequestreview-259892747",
"url": "https://github.com/quicwg/base-drafts/pull/2873?email_source=notifications\u0026email_token=AFTOJKYGWFQQOXJAGYDSYBDP6V7E3A5CNFSM4H6KZHX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB562MCY#pullrequestreview-259892747",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2586cd12d43_240a3f8032ecd96022675a4--


From nobody Tue Jul  9 23:47:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A5A66120103 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:47:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 JSwi8o8AIMm3 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:47: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 C2771120100 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 23:47:15 -0700 (PDT)
Date: Tue, 09 Jul 2019 23:47:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562741234; bh=S6i2JVDTwcqxEbzREom74o37MMVG+fz5vXSIqIYROPY=; h=Date:From:To:Subject:From; b=XdV8o/qhQvZe1MBKrBbeSC+rHHOlB12IKhiL0xDVbng/qMTsEkZoCT/kRb4C21asI fcq9LIZ07Yus6b1vt3DZ+JSh+BNg9SG6+A1m9Euc01FGwXQO0RLO6Zcsrjj6ebUTzG I9N5RZpzplWGoKEUN852LZw+F9+dJVh153LKUilk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/error-handling-principles/a0c255-9dbc2a@github.com>
Subject: [quicwg/base-drafts] 9dbc2a: Move some text 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/cCUWZBiHqC7rnS9mF8cAP__mcyw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 06:47:18 -0000

  Branch: refs/heads/error-handling-principles
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575
      https://github.com/quicwg/base-drafts/commit/9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

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

  Log Message:
  -----------
  Move some text up



From nobody Tue Jul  9 23:47:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 60246120103 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:47:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tdpxNVCVZURI for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:47: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 5B952120100 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 23:47:23 -0700 (PDT)
Date: Tue, 09 Jul 2019 23:47:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562741242; bh=gXeShQ33aBrTzHLfglK4EKzUvyWTFaF8We2kQ3q+0pM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XkZA/NtIpvJN5N+Fw16z9etBP654hLc26WOFy4o8CPTosNT2qBH5eYdVa08MbcTfy vPe8DWqX3zz6XSJisFzERUhUvZsF4OZ/mqdNXBnNLOCxOURoofTQZ6Ov3WP7bP7bEt Ekwl+9xIBNfibSKhEEaXFD/D3JFLB8M/P8ZfFPdM=
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/2880/push/3800520389@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2589fa9219_45fe3fd2198cd9642732991"; 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/511WBLaXnM4e5gvV93rK9gnQxWk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 06:47:25 -0000

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

@martinthomson pushed 1 commit.

9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575  Move some text up


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2880/files/a0c255791a5bf269fc46501fd5daf9ab4e362cf9..9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575

----==_mimepart_5d2589fa9219_45fe3fd2198cd9642732991
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/9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575">9dbc2aa</a>  Move some text up</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/2880/files/a0c255791a5bf269fc46501fd5daf9ab4e362cf9..9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575?email_source=notifications&amp;email_token=AFTOJKZXBDFOZEROJWZTAC3P6WAXVA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJSGAZTQOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJOUMX4QCLQ4WLJMTP6WAXVANCNFSM4H7CJCEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBLPBI6B7UV5PEBL3P6WAXVA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJSGAZTQOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2880/files/a0c255791a5bf269fc46501fd5daf9ab4e362cf9..9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575?email_source=notifications\u0026email_token=AFTOJKZXBDFOZEROJWZTAC3P6WAXVA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJSGAZTQOI",
"url": "https://github.com/quicwg/base-drafts/pull/2880/files/a0c255791a5bf269fc46501fd5daf9ab4e362cf9..9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575?email_source=notifications\u0026email_token=AFTOJKZXBDFOZEROJWZTAC3P6WAXVA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJSGAZTQOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2589fa9219_45fe3fd2198cd9642732991--


From nobody Tue Jul  9 23:47:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2E540120103 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:47:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8YbzSFR-JKfO for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:47: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 06507120100 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 23:47:41 -0700 (PDT)
Date: Tue, 09 Jul 2019 23:47:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562741259; bh=7O9uj8Fbe3s4GTuClEpKUAKAG69Xc+LnlCB5ONuguCc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V/fiLj1dt80zq85LF+g1p6JgNHUzP2LnpkY49xk45h1QxFmG62+9mm4P2j8TAL5/c m8YlFAYWK9LiXM2lzat4kdbLB11qJsmbvDrsy+n13LtbwUySUMSDGgEdE473191Fbb lyTjxrFkLsU0mKbCOsmBkEabOdynvnVDHIEh1wVE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7S3VRRKH4FFBSHQ3N3GK6IXEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/c509932374@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258a0b623fc_25103f8032ecd960317456b"; 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/vqeb7oeOgzd-0lnZiUFhO5IxVaI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 06:47:43 -0000

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

I moved the second paragraph up to the error handling section, but the text about how codes are selected really belongs with the codes themselves.

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

<p>I moved the second paragraph up to the error handling section, but the text about how codes are selected really belongs with the codes themselves.</p>

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


From nobody Tue Jul  9 23:48:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EF831120115 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:48:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2H1QFjBJB2LV for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:48: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 1190E120114 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 23:48:41 -0700 (PDT)
Date: Tue, 09 Jul 2019 23:48:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562741319; bh=0mYnJdUlQehLgN1Mgkq/ujm1Kzxyy70hLJCyXQFbHTY=; h=Date:From:To:Subject:From; b=rjPRxq8Nys2VNYeT20VZ/nQ+4zt/QYSPTmmrbffWyMZPUhUXYPngzDZdYxKh9t/Bk ezy+G6Kds+Et7H66bYjO5fQrYQSjWMHI6IwUpXna+lDy9p60BY1h4UkBHCk6qiPFkx b9mYRDx9MzUkcJG+C/ukeQzzoHkZekw+bXrwKAEI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9308a8-b93cbd@github.com>
Subject: [quicwg/base-drafts] b93cbd: Script updating gh-pages from 9dbc2aa4. [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/_btfbTI9Mp2f8bVPCywFr-nJkSs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 06:48:43 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b93cbdd99844a26ece613ddf699f43d18aab5961
      https://github.com/quicwg/base-drafts/commit/b93cbdd99844a26ece613ddf699f43d18aab5961
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

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

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



From nobody Tue Jul  9 23:51:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C6388120115 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:51:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hqhjzPAhKuW3 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:51: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 8501E120176 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 23:51:37 -0700 (PDT)
Date: Tue, 09 Jul 2019 23:51:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562741495; bh=sVZINkbNi7+Ql0TWbg95ZzEXgC2Bkm4gFmaJNgDCdpA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y/0shR8fYew/KNRoXpcy5RFoY9vKaj6tuNbqhQTp0EPvbeOWhYnmxWADMvnNTvOWI clnBbvpI7EOu76CoG7byDoMQYGRfwqCNhXza/bNnYomnpIcyGL0Bt+Sh/pP1gHsVle zalktPMyPudv+0pkbljxp/tImhdDB87XeYzuqItQ=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2SJSMVXTVPBSTCR3V3GK6XPEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/review/259898405@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258af7d7a96_789c3f906aacd96c230734"; 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/9muqNJHaNrg8kFjErqdqY4z-mm0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 06:51:40 -0000

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

LPardue approved this pull request.



> @@ -5374,6 +5379,14 @@ CRYPTO_ERROR (0x1XX):
 
 See {{iana-error-codes}} for details of registering new error codes.
 
+In defining these error codes, several principles are applied.  Error conditions
+that might require specific action on the part of a recipient are giving unique

s/giving/given

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

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2880#discussion_r301908915">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5374,6 +5379,14 @@ CRYPTO_ERROR (0x1XX):
 
 See {{iana-error-codes}} for details of registering new error codes.
 
+In defining these error codes, several principles are applied.  Error conditions
+that might require specific action on the part of a recipient are giving unique
</pre>
<p>s/giving/given</p>

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


From nobody Tue Jul  9 23:53:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 827B2120105 for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:53:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iIWAdHemKS5a for <quic-issues@ietfa.amsl.com>; Tue,  9 Jul 2019 23:53:16 -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 3039C120103 for <quic-issues@ietf.org>; Tue,  9 Jul 2019 23:53:16 -0700 (PDT)
Date: Tue, 09 Jul 2019 23:53:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562741594; bh=9xwoPVpPSDTxjLdr0ncwyuf9M9cSuIBVsD/Vcd6j2To=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rP2jMKd9j0aKBnuXVg389kujNExQIxmNA2onUpeSEB0dly+KAJjg2HDM8hT3etmTT Q4VXb/q1StdKl8kcEfc9jlQsbuY9UPychyPCXc1pBpPz5M477O6SfInBgafizGU5gB VPw7CtXzVSe9u+bKgVPOlX9BEDPtGtDFXRH3sE64=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3A3PE7RUUUTBU2PEV3GK65VEVBNHHBXRCWWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2884/509933938@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2884@github.com>
References: <quicwg/base-drafts/issues/2884@github.com>
Subject: Re: [quicwg/base-drafts] Inconsistency in STOP_SENDING requirements relative to resetting streams in general (#2884)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258b5a7af16_74e43f8767ecd9603114529"; 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/g-KaxG_k7Kk2wqwsBYdLLB24vSA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 06:53:19 -0000

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

I don't see any inconsistency here.  This is the relevant text:

> RESET_STREAM MUST be instigated by the protocol using QUIC, either directly or through the receipt of a STOP_SENDING frame from a peer.

This says that RESET_STREAM is only sent if the application protocol asks for it.  That means either the local stack or the remote stack.  

As you say, the transport is required to send RESET_STREAM in response to STOP_SENDING.  I can firm that 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/issues/2884#issuecomment-509933938
----==_mimepart_5d258b5a7af16_74e43f8767ecd9603114529
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't see any inconsistency here.  This is the relevant text:</p>
<blockquote>
<p>RESET_STREAM MUST be instigated by the protocol using QUIC, either directly or through the receipt of a STOP_SENDING frame from a peer.</p>
</blockquote>
<p>This says that RESET_STREAM is only sent if the application protocol asks for it.  That means either the local stack or the remote stack.</p>
<p>As you say, the transport is required to send RESET_STREAM in response to STOP_SENDING.  I can firm that 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/issues/2884?email_source=notifications&amp;email_token=AFTOJK2XBLYOY35MOXYPUB3P6WBNVA5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSPS4Q#issuecomment-509933938">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZY4UQRRJ4AINRRUQLP6WBNVANCNFSM4H7G2LTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7E2BPJA3O2SPRYMWLP6WBNVA5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSPS4Q.gif" height="1" width="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/2884?email_source=notifications\u0026email_token=AFTOJK2XBLYOY35MOXYPUB3P6WBNVA5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSPS4Q#issuecomment-509933938",
"url": "https://github.com/quicwg/base-drafts/issues/2884?email_source=notifications\u0026email_token=AFTOJK2XBLYOY35MOXYPUB3P6WBNVA5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSPS4Q#issuecomment-509933938",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d258b5a7af16_74e43f8767ecd9603114529--


From nobody Wed Jul 10 00:03:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C1A5B120103 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:03:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 MAVguD6VE2jF for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:03:05 -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 0BEE6120100 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:03:05 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:03:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742183; bh=1q7dM9R7R6E7Yd4GuYe1MVoJQjeR3Rb9TV28hHcjbt0=; h=Date:From:To:Subject:From; b=v4dLpQNp6zHvbvMrpvDI6akk/yKjhNmSuIkSDtCbYtoYRjlHV0VgjRnK/uTVPDcln 1yrdO7bDXkpiQWq+OsfS0GmplfFNrayjq3wNeZIM4ac0TbTibootptLJ5P6LOKHvPl WUxtu6LNmQJ3kJrdEDuiNClRShvbEQTt0wfVkYqg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/firm-stop-sending/000000-564a2a@github.com>
Subject: [quicwg/base-drafts] 564a2a: Firm up language around stream termination
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k2MHIpt4d7bz-tvKDPJNsbd6C0Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:03:07 -0000

  Branch: refs/heads/firm-stop-sending
  Home:   https://github.com/quicwg/base-drafts
  Commit: 564a2a3aeee2c782c87c700e718b39597cfad6f5
      https://github.com/quicwg/base-drafts/commit/564a2a3aeee2c782c87c700e718b39597cfad6f5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

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

  Log Message:
  -----------
  Firm up language around stream termination

This was a little woolly.  Hopefully this is crisper.  Basically, the
application protocol is what asks for stream reset, either directly, or
by sending STOP_SENDING.

I added a recommendation for application protocols to define handling
for prematurely cancelled streams.  That is, I believe, just editorial,
even though it uses 2119 language, because we already do that.

Closes #2884.



From nobody Wed Jul 10 00:04:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 03331120115 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:04:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 GU0ylZVVcmAM for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:04: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 43C12120103 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:04:00 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:03:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742238; bh=1oLvFZduirSzbqJDvx1sbUBUWKXXmIFM8YXRBKwUU9o=; h=Date:From:To:Subject:From; b=hODpk5NucwUGmryT8yG8KZbZ6gmcyiFFPWakZB6JNuvGkGmFvPdqbR1WE1cyT3068 6GaoF+DfJmjieyJWjlp0Zizw/VnPz62FB28UKlmExBy3J2Iiq+kfAvf/rT+838CmbJ gmZmGkpi/untX0biUWTQoAc5EwxkvhgqZkxkEXik=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/error-handling-principles/9dbc2a-d69838@github.com>
Subject: [quicwg/base-drafts] d69838: Giving Lucas credit for a suggestion=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/h3qj4XARMvHM9HagM6zBtGFSrWI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:04:02 -0000

  Branch: refs/heads/error-handling-principles
  Home:   https://github.com/quicwg/base-drafts
  Commit: d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9
      https://github.com/quicwg/base-drafts/commit/d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

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

  Log Message:
  -----------
  Giving Lucas credit for a suggestion

In the most annoying way I can imagine.

Co-Authored-By: Lucas Pardue <lucas@cloudflare.com>



From nobody Wed Jul 10 00:04:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2A9C512011C for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:04:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8PdMoFbtADzZ for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:04: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 5AA67120105 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:04:08 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:04:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742246; bh=13W5lqG5GZZ7PrG44EENJIcBwEooopJBz0DKBh5w/c4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WBvXsfWAgmSHtgW9ZDTGze0RsENCbToGgv2IzGUQ+8Kydcvf4iuR/62WrnjCCsSlC CHS8bjXQcllDAPZ7WldG4T57YmpCx5BamzSf7YU0El8TBFojcfet5WIuJuvQA0gkRe oz6jrFCSNeGkbzyCF00vPUskZt6W3pu5rU9MYtZg=
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/2880/push/3800568773@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258de6bed21_2ae13f96c7ccd95c83308d"; 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/FWiZzORzugKPvvzWpc4XI6Yl-eg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:04:10 -0000

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

@martinthomson pushed 1 commit.

d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9  Giving Lucas credit for a suggestion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2880/files/9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575..d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9

----==_mimepart_5d258de6bed21_2ae13f96c7ccd95c83308d
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/d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9">d69838e</a>  Giving Lucas credit for a suggestion
</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/2880/files/9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575..d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9?email_source=notifications&amp;email_token=AFTOJK4TSCWJQBV5PH3CDD3P6WCWNA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJWHA3TOMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MRZIK63AXXPXB3VDP6WCWNANCNFSM4H7CJCEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7LJYR6SLF7DOOWQQTP6WCWNA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJWHA3TOMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2880/files/9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575..d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9?email_source=notifications\u0026email_token=AFTOJK4TSCWJQBV5PH3CDD3P6WCWNA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJWHA3TOMY",
"url": "https://github.com/quicwg/base-drafts/pull/2880/files/9dbc2aa4c69a8cf5f9992cf9721edb88cd8a3575..d69838e12322f1ec87e2fa220bfe6ae4ed97bbd9?email_source=notifications\u0026email_token=AFTOJK4TSCWJQBV5PH3CDD3P6WCWNA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRGQ2DSOCQOVZWQIZTHAYDANJWHA3TOMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d258de6bed21_2ae13f96c7ccd95c83308d--


From nobody Wed Jul 10 00:04:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EB5B0120103 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:04:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tlziYsPYUI5o for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:04: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 4A75A120100 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:04:30 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:04:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742269; bh=Shp6iip6jaEgwGfqC7p6uEsPX0K9h5zNlUe9nV9H95Q=; h=Date:From:To:Subject:From; b=HX1n9I8X9KipJkyx9q1pg6VuFnGFDRGIUfOvlNBNC8308W7dUoSsbl1qat2iB8jy+ fa+TRiVQz1/zESxJWqXictbR7wuHd/0BNnPvthTioMKTClvqCVnO2Y6f7TTSuPTAtG uHyBumuqkjcosQla9qZ1uXNk/uiHCxD/UbeVvulA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b93cbd-7f6532@github.com>
Subject: [quicwg/base-drafts] 7f6532: Script updating gh-pages from 564a2a3a. [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/5Q-tiOG6fwu8ONBw4LXrGpBPDDo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:04:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7f6532ffacfb1dc8a3dd3f53879c65620ad040d7
      https://github.com/quicwg/base-drafts/commit/7f6532ffacfb1dc8a3dd3f53879c65620ad040d7
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    A firm-stop-sending/draft-ietf-quic-http.html
    A firm-stop-sending/draft-ietf-quic-http.txt
    A firm-stop-sending/draft-ietf-quic-invariants.html
    A firm-stop-sending/draft-ietf-quic-invariants.txt
    A firm-stop-sending/draft-ietf-quic-qpack.html
    A firm-stop-sending/draft-ietf-quic-qpack.txt
    A firm-stop-sending/draft-ietf-quic-recovery.html
    A firm-stop-sending/draft-ietf-quic-recovery.txt
    A firm-stop-sending/draft-ietf-quic-tls.html
    A firm-stop-sending/draft-ietf-quic-tls.txt
    A firm-stop-sending/draft-ietf-quic-transport.html
    A firm-stop-sending/draft-ietf-quic-transport.txt
    A firm-stop-sending/index.html
    M index.html

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



From nobody Wed Jul 10 00:05:08 2019
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 29AC0120115 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:05:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.087
X-Spam-Level: 
X-Spam-Status: No, score=-0.087 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, PDS_NO_HELO_DNS=1.295, RCVD_IN_DNSWL_NONE=-0.0001, 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 h6mBjxTJU-_h for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:05:05 -0700 (PDT)
Received: from o3.sgmail.github.com (o3.sgmail.github.com [192.254.112.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DA882120105 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:05:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha1; 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=fFqsJ3I0B4kMBGbSZLrWoUQt+d8=; b=xAzLHURAXsp0K4xR SeVxmT78qwgf0Lr3N0qp8orAZWWxsjVhutKlmPy+taLSOb3DUn6LL4YkIfPsDW2R It9nOmSh9cPGrS671JkOqHQ9uCFax8VQ34kAm+1dKKXn2Oh02e5fOuT5+qfq+KMe I3jHhhbvHi8KKpBoHkQsKwIUYUg=
Received: by filter0857p1las1.sendgrid.net with SMTP id filter0857p1las1-11439-5D258E1E-4 2019-07-10 07:05:02.167722479 +0000 UTC m=+712020.512030386
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) by ismtpd0012p1iad1.sendgrid.net (SG) with ESMTP id h5uGjUzOTzqcJiwkJHOieQ for <quic-issues@ietf.org>; Wed, 10 Jul 2019 07:05:02.032 +0000 (UTC)
Date: Wed, 10 Jul 2019 07:05:02 +0000 (UTC)
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6V6HC356RBZOEGPPV3GLAJ3EVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/review/259903163@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258e1d896b2_10553fb7d02cd96410622e"; 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: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak1ElGDVms1bnePVCnJRUuDvKHn7Mo+1lqxP8I aAyA3MwMkUS5bZwxTdqv9K79kDckkncHZjH8RlWvGrZN3RuFjEIrt7nPXrr+KNFaUG4iDH/FgzVcK+ Deq9nF5f3k+BEoOGEj+LLc25DpHnY46ECHUbInuM9AqYjCW4WAai+Z7zYivXj5GMrRWp+c5g2PZFAp g=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7YBUzkCM3atG5HvCAdjGM_xapRM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:05:07 -0000

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

martinthomson commented on this pull request.



> @@ -5374,6 +5379,14 @@ CRYPTO_ERROR (0x1XX):
 
 See {{iana-error-codes}} for details of registering new error codes.
 
+In defining these error codes, several principles are applied.  Error conditions
+that might require specific action on the part of a recipient are giving unique

I'm almost surprised that I can update your comment, turn it into a suggestion, then cause a commit to be created under your name.  The power is going to my head...

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

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2880#discussion_r301912674">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5374,6 +5379,14 @@ CRYPTO_ERROR (0x1XX):
 
 See {{iana-error-codes}} for details of registering new error codes.
 
+In defining these error codes, several principles are applied.  Error conditions
+that might require specific action on the part of a recipient are giving unique
</pre>
<p>I'm almost surprised that I can update your comment, turn it into a suggestion, then cause a commit to be created under your name.  The power is going to my head...</p>

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


From nobody Wed Jul 10 00:05:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD86D120105 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:05:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Z4GNZ74zF3Hr for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:05: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 03180120108 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:05:18 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:05:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742316; bh=4yxG/E1gBolLdXNjIfBlftwbooxvA4+dKJAUincbF9c=; h=Date:From:To:Subject:From; b=RGjprDFm7OdiFoy4hZ9SDLS5weDdjwSfX/RTs2JhKMW3Yt3KLdeGAcEQsCLiUyFiD BTHitr3Q1vnFyCsq/x5j9XTJH6+nRUbtAJnPIKxFNAzK6dGx1lIMpNzRZmmgfgO/Yx jTzhCnRGMWfftN5XRSx1smUPhCe2Jx5UcJHrProM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7f6532-c783a9@github.com>
Subject: [quicwg/base-drafts] c783a9: Script updating gh-pages from d69838e1. [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/DzyXMaxv30wRt0ZRPpw6xf-u2qg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:05:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c783a9c925d155885679e911507949f22ca4ecc3
      https://github.com/quicwg/base-drafts/commit/c783a9c925d155885679e911507949f22ca4ecc3
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    M error-handling-principles/draft-ietf-quic-transport.html
    M error-handling-principles/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Wed Jul 10 00:08:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F285412029F for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:08:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 iO4fQPC9JilE for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:08: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 77F5312025C for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:08:19 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:08:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742497; bh=dVFDNJhVwuXrDCqc/N2PzhSAjAvNq8aWJcfjKZ5ajIA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Bhug3jRJVFSsbfn597bQ6rKLfLIiYfFAhit9LGyvBIUgzy5qjbqY410yq/GW69efJ y86ifzjuGiGjNr/D/VI1OQ6mROZDqkyPw9mG6ilBaGXhLWqAIqeOiTADG1RCYEG6ht zrTcNsHYtAfMgtObq8MRV8/Q9MuskdGL3+BFPjJk=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPCFVUZ6NWTNBIPAV3GLAWDEVBNHHBXRGDIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2885/509938177@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2885@github.com>
References: <quicwg/base-drafts/issues/2885@github.com>
Subject: Re: [quicwg/base-drafts] Appendix A of quic-tls is wrong (#2885)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258ee1b43ee_78923f906aacd96c2196884"; 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/abLzr8gkGhS0z5BrOX-KQc8iOGE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:08:27 -0000

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

Yes, we also didn't update the examples to include the new invariants.  Oh well.  There's updated test vectors in #2887, but those are for -23.  If you want test vectors for -22, you can tweak the version and salt in the .js file in the repo and run that.  If that doesn't work, let me know and we can work out what is wrong.

For now, I just have to humbly apologize again for the mess that I made of all these drafts this time around.

-- 
You are receiving 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/2885#issuecomment-509938177
----==_mimepart_5d258ee1b43ee_78923f906aacd96c2196884
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yes, we also didn't update the examples to include the new invariants.  Oh well.  There's updated test vectors in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="466026703" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2887" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2887/hovercard" href="https://github.com/quicwg/base-drafts/pull/2887">#2887</a>, but those are for -23.  If you want test vectors for -22, you can tweak the version and salt in the .js file in the repo and run that.  If that doesn't work, let me know and we can work out what is wrong.</p>
<p>For now, I just have to humbly apologize again for the mess that I made of all these drafts this time around.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2885?email_source=notifications&amp;email_token=AFTOJKZ4QQOBMCBUOHUTY2DP6WDGDA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQUAI#issuecomment-509938177">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7MIB3KDAHDISRKJTDP6WDGDANCNFSM4H7HK5YQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EF3CZWC3UX7MOPK3P6WDGDA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQUAI.gif" height="1" width="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/2885?email_source=notifications\u0026email_token=AFTOJKZ4QQOBMCBUOHUTY2DP6WDGDA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQUAI#issuecomment-509938177",
"url": "https://github.com/quicwg/base-drafts/issues/2885?email_source=notifications\u0026email_token=AFTOJKZ4QQOBMCBUOHUTY2DP6WDGDA5CNFSM4H7HK5Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQUAI#issuecomment-509938177",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d258ee1b43ee_78923f906aacd96c2196884--


From nobody Wed Jul 10 00:08:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7F23E120105 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:08:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JduJCY5aL5oo for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:08:42 -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 7C8DB120103 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:08:42 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:08:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742520; bh=7PrWkQxVuED6FEs8esr0G90ydIgV39vEDEJwi2qRiGg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZnMZvX/+gHPYDQH/i4DNvkE121lLYwXSEC5hgXDgP0nNpEQqZ8ncAMG5auBMDAkmH CRwBnOR8B2jeaOA6IglqNIpJE5JzYTr0IW0CCbxnqWu7Oo+GWwVxw9a6VkCKwmcPlX GExDoJrrQ1cfT9iFUJ9Xj1gA2X3/0E5LYuj4UgbU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57SLDSTRVIZQD6MZN3GLAXREVBNHHBXRYAZ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2887/c509938318@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2887@github.com>
References: <quicwg/base-drafts/pull/2887@github.com>
Subject: Re: [quicwg/base-drafts] Get test vectors in place for -23 (#2887)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258ef8c8ce2_59893f96c7ccd95c18727d6"; 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/2iqkQN0YxRv-l-J-xCDf8vBmfu0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:08:45 -0000

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

This should close #2887 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/pull/2887#issuecomment-509938318
----==_mimepart_5d258ef8c8ce2_59893f96c7ccd95c18727d6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This should close <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="466026703" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2887" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2887/hovercard" href="https://github.com/quicwg/base-drafts/pull/2887">#2887</a> 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/pull/2887?email_source=notifications&amp;email_token=AFTOJK2LTAIHQLRQTS2EFDLP6WDHRA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQVDQ#issuecomment-509938318">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4H3GEJCW4XPN2KGOTP6WDHRANCNFSM4H7KCNBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JHPNSDUWVEXGZPKLP6WDHRA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQVDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2887?email_source=notifications\u0026email_token=AFTOJK2LTAIHQLRQTS2EFDLP6WDHRA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQVDQ#issuecomment-509938318",
"url": "https://github.com/quicwg/base-drafts/pull/2887?email_source=notifications\u0026email_token=AFTOJK2LTAIHQLRQTS2EFDLP6WDHRA5CNFSM4H7KCNB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSQVDQ#issuecomment-509938318",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d258ef8c8ce2_59893f96c7ccd95c18727d6--


From nobody Wed Jul 10 00:10:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1D371120301 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:10:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HXQ928YM8dGi for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:10:12 -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 076A21202C3 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:10:12 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:10:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742610; bh=6fC3xlPnddoHz4zbKRrhRI4ws76wU7qjmnWlSlVlgL0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Dglw27xCIrSrjVc4Uvynt2Uq/DYnJTlKkcuYNt2NeikfbzfxPULPx26mEl953mGuy IC3ohtbn3QMgQVqx6hAS16pDkuhIwsOv/bl9//hAN3OTtJNGU4WrU2SPvuNPHUo+Pk Cc5rqtgZ+RCLe1kANkUw5R3wOpN9bjoRwkF0nSR8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2RGPTKY5KLUTXFE6F3GLA5FEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/259904978@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d258f5240940_5c7e3fbaa36cd96c1687558"; 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/gp9My2qrmCogBE_nQEyzJYiiano>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:10:19 -0000

----==_mimepart_5d258f5240940_5c7e3fbaa36cd96c1687558
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/2851#pullrequestreview-259904978
----==_mimepart_5d258f5240940_5c7e3fbaa36cd96c1687558
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2851?email_source=notifications&amp;email_token=AFTOJK6HE7NSLWWFEFJ7KRTP6WDNFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB565LUQ#pullrequestreview-259904978">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZYIHBUMW4ECIUURR3P6WDNFANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3RHNOSXCFDT3WIFALP6WDNFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB565LUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK6HE7NSLWWFEFJ7KRTP6WDNFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB565LUQ#pullrequestreview-259904978",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK6HE7NSLWWFEFJ7KRTP6WDNFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB565LUQ#pullrequestreview-259904978",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d258f5240940_5c7e3fbaa36cd96c1687558--


From nobody Wed Jul 10 00:13:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9E770120114 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:13:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9NEK6WbVJewe for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:13:33 -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 D575E120100 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:13:32 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:13:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742811; bh=sWw3HzQW41ycP+dTd2+75eqVMGDXsmy3p/zY9E3z9T4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UvCTHL2ZBaOv9wDUK6svc2394oNbR73izebFv/OiYny6ZdG6E9PmpmJbHsUjVJm2N jfbi3245dVQgk9SLQithwWrjWzKv9U376lkpmaK1PxWc3DHJ5LAoVqHql7MtbhTgC3 Ihdqh0oUdqfG1iXwIH9kzWV7HtvmapeU4El6h2tg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NIMSZ76ALBO3VEEF3GLBJXEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/259906282@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25901b39dba_4a893ffd142cd96c13691f7"; 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/EUA2UcL3SRhXIWaOEZq8S89gRuM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:13:36 -0000

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

martinthomson commented on this pull request.



> @@ -804,17 +803,12 @@ modifying the contents of packets from future versions.
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
 packets even where the TLS versions offered do not include TLS 1.3.
 
+The secrets used for protecting Initial packets do not change during the
+connection, even after receiving a Retry.

Is it worth adding some advice on how to implement this?  It's not entirely obvious.

```suggestion
connection, even after receiving a Retry.  A server that sends a Retry
therefore needs to either remember Initial protection keys or
save them in the Retry token.
```

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

<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/2878#discussi=
on_r301915187">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -804,17 +803,12 @@ modifying the conten=
ts of packets from future versions.=0D
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initi=
al=0D
 packets even where the TLS versions offered do not include TLS 1.3.=0D
 =0D
+The secrets used for protecting Initial packets do not change during the=
=0D
+connection, even after receiving a Retry.=0D
</pre>=0D
<p>Is it worth adding some advice on how to implement this?  It's not ent=
irely obvious.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-connection, even after receiving a Retry.=0D
+connection, even after receiving a Retry.  A server that sends a Retry=0D=

+therefore needs to either remember Initial protection keys or=0D
+save them in the Retry token.=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/2878?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK5A2YDETN5G4XGGBI3P6WDZXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB565V2Q#pullrequestreview-259906282=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK45SQL3MBB4JGJCJX3P6WDZXANCNFSM4H7BHVFQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK5MVHND=
IB3LETQYP4TP6WDZXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB565V2Q.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/2878?email_source=3D=
notifications\u0026email_token=3DAFTOJK5A2YDETN5G4XGGBI3P6WDZXA5CNFSM4H7B=
HVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
565V2Q#pullrequestreview-259906282",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK5A2YDETN5G4XGGBI3P6WDZXA5CNFSM4H7BHV=
F2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB56=
5V2Q#pullrequestreview-259906282",=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_5d25901b39dba_4a893ffd142cd96c13691f7--


From nobody Wed Jul 10 00:14:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 95FA5120100 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:14:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d3KP5m0sd9Bz for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:14: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 679E4120114 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:14:14 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:14:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742852; bh=Qk9sIvZ0bmLREUJsiB6l3purEOqnFsyVJYe0fvD/+P4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SEJYDWKTOo9IZMsoNuusX0CNiC3EEeSU4RMuG9VZVcazwihcrf0n4zoCEnpvWn2bO X3N+OFLQgmOE7o7wjGI3grYHSiXiRMk2R9RTzkLG8dJ9pxuiaqxKr6bXDA538icqXG MeiFlV17q0l8nsiwNR41a5qLWHqRO6Xt87cKIAmg=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5R42SCFQ7AINF6T453GLBMJEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/review/259906535@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d259044bf177_63073fd397ecd95c3120899"; 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/ZnmZvFFugCzT_B5pmMN5QOGmVvU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:14:18 -0000

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

LPardue commented on this pull request.



> @@ -5374,6 +5379,14 @@ CRYPTO_ERROR (0x1XX):
 
 See {{iana-error-codes}} for details of registering new error codes.
 
+In defining these error codes, several principles are applied.  Error conditions
+that might require specific action on the part of a recipient are giving unique

I'd have made the suggestion myself but I'm on a mobile device that hides that widget. Good to know we have a workflow that makes my life easier ;)

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

<p><b>@LPardue</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2880#discussion_r301915378">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5374,6 +5379,14 @@ CRYPTO_ERROR (0x1XX):
 
 See {{iana-error-codes}} for details of registering new error codes.
 
+In defining these error codes, several principles are applied.  Error conditions
+that might require specific action on the part of a recipient are giving unique
</pre>
<p>I'd have made the suggestion myself but I'm on a mobile device that hides that widget. Good to know we have a workflow that makes my life easier ;)</p>

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


From nobody Wed Jul 10 00:14:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F3E8D120105 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:14:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DeuxspjSYz9K for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:14: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 0D7CF120100 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:14:43 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:14:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742881; bh=K/bP+yrXRG7zZjTsP1vvh3K4POHXHJx+eCVf0OPRGQI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=riwZnTe8uF1n+vCk61cAAddAQQSDmY8ikHydUE2wNOdpYICzVXb4WhLCLXyyiPelg czwmV0e2b+c1sF5JBWhqCZIxGzAdNky4rGXw2Ctlf6bkHK+cU09VafmEeRTPlanpSQ 5bie0hsvhV6539fBrYFLCZPYZ71eMs5hXDRzzQYE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7VSLPUD7DBB2MEPRN3GLBODEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/259906706@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2590616112d_57633fdb854cd95c152899"; 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/afHD4z8AsaUBLYgLhL5kgqHaBL0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:14:45 -0000

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

martinthomson commented on this pull request.



> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in

Note that we're not strictly requiring that endpoints never regress largest acknowledged, but any implementation that does that probably won't benefit from ECN for very long.

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

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2879#discussion_r301915509">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in
</pre>
<p>Note that we're not strictly requiring that endpoints never regress largest acknowledged, but any implementation that does that probably won't benefit from ECN for very long.</p>

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


From nobody Wed Jul 10 00:15:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CAD1F120105 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:15:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 hbIEp2oifI73 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:14: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 81852120100 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:14:59 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:14:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562742898; bh=+UEfmFUhTcnDNUcBlB2OrlifERSO8qxstfbuKMMIVdY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Vt5ME5yV9XO56UOvTmQi7cXS7g+4oFOzCSXJvf/kmUGkBg7wV+qYdSOWgZODLj/+f Qv4N/MgbaaxUCDZM6H+hGhZsOArXABjZ8DIVumI6yB8LBVWZMfq/Yhn94QxLWLITd5 gpYBxzt+VOJoSpgWoKUJ32SvMKSI/C+ULNmwLqDc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4L2F34G2FXSOXPS3F3GLBPFEVBNHHBXSF4LQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2888@github.com>
Subject: [quicwg/base-drafts] Firm up language around stream termination (#2888)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2590723d0c9_54ff3f9e68ccd9681331996"; 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/vG-6sr2ktx5OUDQQo1z5ffZfp3o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:15:02 -0000

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

This was a little woolly.  Hopefully this is crisper.  Basically, the
application protocol is what asks for stream reset, either directly, or
by sending STOP_SENDING.

I added a recommendation for application protocols to define handling
for prematurely cancelled streams.  That is, I believe, just editorial,
even though it uses 2119 language, because we already do that.

Closes #2884.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Firm up language around stream termination

-- File Changes --

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

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2888.patch
https://github.com/quicwg/base-drafts/pull/2888.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/2888

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

<p>This was a little woolly.  Hopefully this is crisper.  Basically, the<br>
application protocol is what asks for stream reset, either directly, or<br>
by sending STOP_SENDING.</p>
<p>I added a recommendation for application protocols to define handling<br>
for prematurely cancelled streams.  That is, I believe, just editorial,<br>
even though it uses 2119 language, because we already do that.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2884.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465852082" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2884" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2884/hovercard" href="https://github.com/quicwg/base-drafts/issues/2884">#2884</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/2888'>https://github.com/quicwg/base-drafts/pull/2888</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Firm up language around stream termination</li>
</ul>

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

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2888.patch'>https://github.com/quicwg/base-drafts/pull/2888.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2888.diff'>https://github.com/quicwg/base-drafts/pull/2888.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/2888?email_source=notifications&amp;email_token=AFTOJK5TUENUJ36XIMODNGLP6WD7FA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6IXROA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZV776T45FEABTV3KLP6WD7FANCNFSM4H7MGVLA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYBGNB24RASHGIV5TP6WD7FA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6IXROA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2888?email_source=notifications\u0026email_token=AFTOJK5TUENUJ36XIMODNGLP6WD7FA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6IXROA",
"url": "https://github.com/quicwg/base-drafts/pull/2888?email_source=notifications\u0026email_token=AFTOJK5TUENUJ36XIMODNGLP6WD7FA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6IXROA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2590723d0c9_54ff3f9e68ccd9681331996--


From nobody Wed Jul 10 00:18:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4EF65120114 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:18:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EbqFvZg-115T for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:18: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 4AAEA120105 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:18:50 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:18:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562743128; bh=RX+I6mHejr6JmnB4qxgdlRESofnopsLiot0H/mJMpDs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AUtJw7Vy+P7NinuXpTXSFupFuDuUNAse1glm61SsBfVxg2Kzgp6qbEReSA2YwgOXX FxISeaUxVWqbFYtABzGizGhpvRUxqCjfi6id9fSWNunDx9eB6wl2QS6daXLOxC7kZf UMZB4rOJnZuhxBeppn7KvCaRiNNhjg2IrIUrpyHI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64LWETMVHIGBLJJO53GLB5REVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509941376@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d259158d261c_154d3ff0026cd964326999f"; 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/UTsPM-2t-wf_wIFySeox5Q7meQU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:18:52 -0000

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

Yeah, we have times expressed in nanoseconds, so we have to divide always.

I heard the "dislike most" suggestion; I was planning on that anyway.  I've heard a lot stronger negative sentiment related to the "remove the TP" 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/issues/2670#issuecomment-509941376
----==_mimepart_5d259158d261c_154d3ff0026cd964326999f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yeah, we have times expressed in nanoseconds, so we have to divide always.</p>
<p>I heard the "dislike most" suggestion; I was planning on that anyway.  I've heard a lot stronger negative sentiment related to the "remove the TP" 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/issues/2670?email_source=notifications&amp;email_token=AFTOJKYJG7GS2U5J3LA54KLP6WENRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSRNAA#issuecomment-509941376">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YGKLCHKNTUSHEEIDP6WENRANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3P2S4P2GR74A5ALWTP6WENRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSRNAA.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJKYJG7GS2U5J3LA54KLP6WENRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSRNAA#issuecomment-509941376",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJKYJG7GS2U5J3LA54KLP6WENRA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSRNAA#issuecomment-509941376",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d259158d261c_154d3ff0026cd964326999f--


From nobody Wed Jul 10 00:38:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A2157120178 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:38:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, 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 ZZVdgbHjos-V for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:38: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 A7213120154 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:38:53 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:38:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562744332; bh=WrCISdQqMSH/LQt2ny9fDVRmjA9hhnwH7oj0RPZ48nM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kQF/dZu75E9DQyblIigC6ESU7l+fZLkg6N03fFdkNamhU8MkUzFSEAKlwIHk2FBd9 SAbTlOA8p60EviZG7yTThRpa7RXk9PN+NZRGWKOlq40sRq/oSZxKlUE1jtTcDGt1lo xDpu43W4OS5ZSTdju13JO4IefkePQrTsJ+zClwYs=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UXSP7XICVGT5T26V3GLEIZEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509947313@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25960c1aa1a_23363fc3274cd964159743b"; 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/fWfj6uCzdfhZ9Yw9BkVNleSCcJ0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:38:56 -0000

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

For those following along, here is a draft of some [slides for this process](https://docs.google.com/presentation/d/16j7fcFHcj-copP32BysJkiDt3XZ0mOmRrkG6kzJWYuQ/edit?usp=sharing).  Comments are open if you want to improve them in any way.

-- 
You are receiving 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/2670#issuecomment-509947313
----==_mimepart_5d25960c1aa1a_23363fc3274cd964159743b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>For those following along, here is a draft of some <a href="https://docs.google.com/presentation/d/16j7fcFHcj-copP32BysJkiDt3XZ0mOmRrkG6kzJWYuQ/edit?usp=sharing" rel="nofollow">slides for this process</a>.  Comments are open if you want to improve them in any way.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJKY3DETTE64WVY7G2DLP6WGYZA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSS3MI#issuecomment-509947313">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYFMB6H5H5SEWFNKLTP6WGYZANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34BDGNNO6M6Y5XCL3P6WGYZA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSS3MI.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJKY3DETTE64WVY7G2DLP6WGYZA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSS3MI#issuecomment-509947313",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJKY3DETTE64WVY7G2DLP6WGYZA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZSS3MI#issuecomment-509947313",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25960c1aa1a_23363fc3274cd964159743b--


From nobody Wed Jul 10 00:49:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 26ED9120154 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:49:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 NBL677Lkh_MD for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 00:49: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 6599E120147 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 00:49:24 -0700 (PDT)
Date: Wed, 10 Jul 2019 00:49:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562744962; bh=FlQWmh9Ys/TA1OgBUe2qUZkul2T8eCszCUgUNdWVPzw=; h=Date:From:To:Subject:From; b=SbCH359IDwIIyxa8DHqzGPffddDf8i/3DefgqhCE7L+t0fmfW8nYkfauBf4HkHSaS KsHrMsVm8KfiV4KOfDwrFfnyQUcXJ+nHpcR9fzqXl8AkpoI3uPqpOa/5kxO8XReKgS BoSxX1hOLZXYskP6cq8xlm3rm5hW+6UwpE1FzJaY=
From: Lars Eggert <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/aef7ba-838360@github.com>
Subject: [quicwg/wg-materials] 6c53ef: Add slides for ACK delay scaling
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 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_W4NPUX_VBxF5GVzjUWsSHxCTo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 07:49:26 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: 6c53ef2370c726b0263de799fba15ef626bbf44c
      https://github.com/quicwg/wg-materials/commit/6c53ef2370c726b0263de799fba15ef626bbf44c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    A ietf105/issue2670.pdf

  Log Message:
  -----------
  Add slides for ACK delay scaling

I didn't add this to the agenda, because I figure we can get around to
that.


  Commit: 838360c9571795b7e6af26388c5be26e9e9980df
      https://github.com/quicwg/wg-materials/commit/838360c9571795b7e6af26388c5be26e9e9980df
  Author: Lars Eggert <200328+larseggert@users.noreply.github.com>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    A ietf105/issue2670.pdf

  Log Message:
  -----------
  Merge pull request #115 from martinthomson/105-ack-delay

Add slides for ACK delay scaling


Compare: https://github.com/quicwg/wg-materials/compare/aef7ba550272...838360c95717


From nobody Wed Jul 10 02:34:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 61F821200FA for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 02:34:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id suTEzWhElnIz for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 02:34: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 04A12120099 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 02:34:29 -0700 (PDT)
Date: Wed, 10 Jul 2019 02:34:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562751268; bh=Hi57iufC1vLIuCXmcBmrQVp3TAQ8FKd7sGtwnESYHeY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VXnL9ErjKKjrHwzGNWtWkrWdQgsnL0F3Rb/+UHVdb/Z5yQlJ8n/OTmKD0XzlNPOVk QzoM3pvsgEeuQLYW0j3/80/XZFzz+Q69ILFu8I0E1qU/JxSpO5n4xZsJjcbfP7ykOW R2H66Cw9ldFSvILi3RWilX5o8dUH6Ya+UYsiemi8=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ2CXDDQ53ECZ45WWV3GLR2JEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509988126@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25b124424d7_b9b3fdb854cd95c7686ce"; 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/9WGnL6nuAdFPe7W3pGMmwduIPDM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 09:34:32 -0000

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

So I'm am one the few holding out for shift. I disagree with many of the arguments made on shift being imprecise, but I come to some of the same conclusion @kazuho has recently posted:

The encoded can choose its multiplier. It can choose one that it is a power of 2.

The native representation of time my require scaling anyway, so you might end up with a non-power of two. However, this is typically a constant, and division by a constant is multiplication if you do it compile time. It is a long multiplication which is slower, but not that much.

Therefore I am reverting on my stance and think that a multiplier is acceptable, as long as it can be chosen statically for the application, or it can choose a power of 2 dynamically.

More generally I still think it is a problem to guess the time scale and would like to have an adaptive scale without transport parameters, using 16 bit unsigned floats, but there is zero traction on that 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/2670#issuecomment-509988126
----==_mimepart_5d25b124424d7_b9b3fdb854cd95c7686ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So I'm am one the few holding out for shift. I disagree with many of the arguments made on shift being imprecise, but I come to some of the same conclusion <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> has recently posted:</p>
<p>The encoded can choose its multiplier. It can choose one that it is a power of 2.</p>
<p>The native representation of time my require scaling anyway, so you might end up with a non-power of two. However, this is typically a constant, and division by a constant is multiplication if you do it compile time. It is a long multiplication which is slower, but not that much.</p>
<p>Therefore I am reverting on my stance and think that a multiplier is acceptable, as long as it can be chosen statically for the application, or it can choose a power of 2 dynamically.</p>
<p>More generally I still think it is a problem to guess the time scale and would like to have an adaptive scale without transport parameters, using 16 bit unsigned floats, but there is zero traction on that 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/2670?email_source=notifications&amp;email_token=AFTOJKZ6IURXGIQ7ZHVVF6DP6WUKJA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS42HQ#issuecomment-509988126">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYQMNYAGX7UTK5MQGDP6WUKJANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFSFMYOX3MKFZZYSTP6WUKJA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS42HQ.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJKZ6IURXGIQ7ZHVVF6DP6WUKJA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS42HQ#issuecomment-509988126",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJKZ6IURXGIQ7ZHVVF6DP6WUKJA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS42HQ#issuecomment-509988126",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25b124424d7_b9b3fdb854cd95c7686ce--


From nobody Wed Jul 10 02:37:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2A9C81200FA for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 02:37:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0zB9AJA6RMGy for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 02:37:12 -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 083FA120099 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 02:37:12 -0700 (PDT)
Date: Wed, 10 Jul 2019 02:37:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562751430; bh=omRTLE5PwkC37KdeQwLaQKDxK6Ax0btfGCbtGSDkYoY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cvbS4SDBLKwYxURrvD0Gp4ydX7IEWkVY7YA3GiOZEKSbi6nGZZw0RH/oVgP1q0yDZ d/WdPNHS4GgkMFo8dqTHMc4kTmRTDy7hHMD9FFZXOx8iIlx+OmfBTSSN55ArKRUq6+ jj76Syr7K3IQLu7MFPi5MF75o/spc4zjj73L9VLs=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TT5K6YN4UF6QCTNV3GLSENEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/509989213@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25b1c691768_59143fdb854cd95c7910e5"; 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/GEEKIBveUUBumh0DglCr_5-Q2zc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 09:37:14 -0000

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

It should be noted though, that 64-bit multiplication on a 32-bit, or smaller MCU, is comparatively slow. These will also suffer from GCM, but there is other crypto.

-- 
You are receiving 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/2670#issuecomment-509989213
----==_mimepart_5d25b1c691768_59143fdb854cd95c7910e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It should be noted though, that 64-bit multiplication on a 32-bit, or smaller MCU, is comparatively slow. These will also suffer from GCM, but there is other crypto.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK25TSMYCIC6IMZXXEDP6WUUNA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS5CXI#issuecomment-509989213">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4UCH234B5WQSOTRF3P6WUUNANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK254HCDV7EHBZA7HQTP6WUUNA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS5CXI.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK25TSMYCIC6IMZXXEDP6WUUNA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS5CXI#issuecomment-509989213",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK25TSMYCIC6IMZXXEDP6WUUNA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZS5CXI#issuecomment-509989213",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25b1c691768_59143fdb854cd95c7910e5--


From nobody Wed Jul 10 04:40:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C8C341200E7 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 04:40:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HxCVOEKu6ah6 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 04:40:36 -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 77F2412011D for <quic-issues@ietf.org>; Wed, 10 Jul 2019 04:40:36 -0700 (PDT)
Date: Wed, 10 Jul 2019 04:40:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562758834; bh=rCFat8LZen9Gx8Oc3OdFIUWuWlkTVX5ySahkRD7L0ZA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xuL22mjL6BsIFT0f6/V40c32JzL7PDjq0PdlQ0usBm6gHI/qUIjb+OQE2nDi7g5ha DGnHe/qeMd1FM5DsCjzhIjoBZMCNFJ1YaJCN6fZwXZ3p9/lrsP8olhjo1zBljX4r0p RMKOGCukKCsEW6Uyioo+orsEMTlcGcGaQS1yrHik=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYA3FVXEFGG7R7U2P53GMATFEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/510025883@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25ceb2af085_73d93ff0026cd964171881f"; 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/p_bOGvt6Fg9tKXtxPxy55rqaoIg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 11:40:39 -0000

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

I'm fairly confident that these operations will be done on relatively small values, and so optimization to that degree will be possible.  I plan to use Rust u128 values and to ignore the cost, but I realize that not every implementation can afford to spend upwards of 4 CPU cycles on an operation that you perform once every other 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/issues/2670#issuecomment-510025883
----==_mimepart_5d25ceb2af085_73d93ff0026cd964171881f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm fairly confident that these operations will be done on relatively small values, and so optimization to that degree will be possible.  I plan to use Rust u128 values and to ignore the cost, but I realize that not every implementation can afford to spend upwards of 4 CPU cycles on an operation that you perform once every other 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/issues/2670?email_source=notifications&amp;email_token=AFTOJK6PNKPWGT7ZZQDUPO3P6XDDFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZTGBGY#issuecomment-510025883">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK22UDOZRIEJGRXZ2F3P6XDDFANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5COT4OJLFTC4NGCQ3P6XDDFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZTGBGY.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK6PNKPWGT7ZZQDUPO3P6XDDFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZTGBGY#issuecomment-510025883",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK6PNKPWGT7ZZQDUPO3P6XDDFA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZTGBGY#issuecomment-510025883",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25ceb2af085_73d93ff0026cd964171881f--


From nobody Wed Jul 10 06:49:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1A060120282 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 06:49:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ks-1Q7hhZU3s for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 06:49: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 2E9741202A0 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 06:49:41 -0700 (PDT)
Date: Wed, 10 Jul 2019 06:49:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562766579; bh=2aLozf8QLBGaRuEpsBccKFDfRRFoBFvLRn3aVo0DwoA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=16UvpxR4jJbgB3OsBlWdoTmaP8QNWBsXFzv/hZWuyT/WTqFBBFJK/G77ZYCrKCTlh 9uVTUgNjMlZKgQjTwteTBkrJlhSVy531A9ZaEHjxJgtSaNWf0CFFHdmYQYsaY58z9c k2B2tza6EU3l7C/5yUI2M2SV8Kf2PlTb3xRkLWg4=
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7GJOCP656QC2HUNSV3GMPXHEVBNHHBXSF4LQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2888/review/260105299@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2888@github.com>
References: <quicwg/base-drafts/pull/2888@github.com>
Subject: Re: [quicwg/base-drafts] Firm up language around stream termination (#2888)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d25ecf37fca7_4c163fc6608cd96028780ee"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: RyanAtGoogle
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kP7o1wFUqysOYtRzkBiSvevDwjo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 13:49:50 -0000

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

RyanAtGoogle commented on this pull request.



> @@ -2601,12 +2601,17 @@ connection in a recoverable state, the endpoint can send a RESET_STREAM frame
 ({{frame-reset-stream}}) with an appropriate error code to terminate just the
 affected stream.
 
-RESET_STREAM MUST be instigated by the protocol using QUIC, either directly or
-through the receipt of a STOP_SENDING frame from a peer.  RESET_STREAM carries
-an application error code.  Resetting a stream without knowledge of the
-application protocol could cause the protocol to enter an unrecoverable state.
-Application protocols might require certain streams to be reliably delivered in
-order to guarantee consistent state between endpoints.
+RESET_STREAM MUST be instigated by the protocol using QUIC.  RESET_STREAM
+carries an application error code.  Only the application protocol is able to
+cause a stream to be terminated.  A local instance of the application protocol
+uses a direct API call and a remote instance uses the STOP_SENDING frame, which
+triggers an automatic RESET_STREAM.

Hm. The second sentence suggests that the determination of the application error code in the RESET_STREAM is the responsibility of the application. Fair enough. But in this last sentence, it sounds like the RESET_STREAM is generated by the transport (or some such) in response to STOP_SENDING. Also fair enough. But how does the transport determine the application error code.

I think the behavior here is fine, but the text feels... wooly, as you said. I wonder if it might be easier to read if we treated the STOP_SENDING case as more of an exception, than trying to make it part of the general "only the app resets streams" behavior.  *shrug*

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

<p><b>@RyanAtGoogle</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2888#discussion_r302075052">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2601,12 +2601,17 @@ connection in a recoverable state, the endpoint can send a RESET_STREAM frame
 ({{frame-reset-stream}}) with an appropriate error code to terminate just the
 affected stream.
 
-RESET_STREAM MUST be instigated by the protocol using QUIC, either directly or
-through the receipt of a STOP_SENDING frame from a peer.  RESET_STREAM carries
-an application error code.  Resetting a stream without knowledge of the
-application protocol could cause the protocol to enter an unrecoverable state.
-Application protocols might require certain streams to be reliably delivered in
-order to guarantee consistent state between endpoints.
+RESET_STREAM MUST be instigated by the protocol using QUIC.  RESET_STREAM
+carries an application error code.  Only the application protocol is able to
+cause a stream to be terminated.  A local instance of the application protocol
+uses a direct API call and a remote instance uses the STOP_SENDING frame, which
+triggers an automatic RESET_STREAM.
</pre>
<p>Hm. The second sentence suggests that the determination of the application error code in the RESET_STREAM is the responsibility of the application. Fair enough. But in this last sentence, it sounds like the RESET_STREAM is generated by the transport (or some such) in response to STOP_SENDING. Also fair enough. But how does the transport determine the application error code.</p>
<p>I think the behavior here is fine, but the text feels... wooly, as you said. I wonder if it might be easier to read if we treated the STOP_SENDING case as more of an exception, than trying to make it part of the general "only the app resets streams" behavior.  <em>shrug</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/2888?email_source=notifications&amp;email_token=AFTOJKZBYVGMPX2VH5G4FP3P6XSHHA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6AOIUY#pullrequestreview-260105299">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HV7S56W3DRV47Y6LP6XSHHANCNFSM4H7MGVLA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK36XIGOEXH43E52YXLP6XSHHA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6AOIUY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2888?email_source=notifications\u0026email_token=AFTOJKZBYVGMPX2VH5G4FP3P6XSHHA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6AOIUY#pullrequestreview-260105299",
"url": "https://github.com/quicwg/base-drafts/pull/2888?email_source=notifications\u0026email_token=AFTOJKZBYVGMPX2VH5G4FP3P6XSHHA5CNFSM4H7MGVLKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6AOIUY#pullrequestreview-260105299",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d25ecf37fca7_4c163fc6608cd96028780ee--


From nobody Wed Jul 10 08:18:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 81AAF1203EC for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 08:18:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vw7iNEPM4s8C for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 08:18:11 -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 CDF7D120406 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 08:18:02 -0700 (PDT)
Date: Wed, 10 Jul 2019 08:18:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562771881; bh=XztxL5vzio2vJevBlkKJeSzJrWbKmPfOKCaS/3xixDI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VJKKOft2LTismphVhAY5vZnSNG3f2eAPx2z0o3e5ZFIxoTgg6RegOoekBL3dYQZTw aKMOtNkiHpLeWh4BsM6FpmhDngPSJqP6GQbVhuXXc4M5QEBNdSyL+f0mTRDKrEfsoy aqNkHIUyHkd4bZl/F174Xno5iD18L3fjetXdkWZI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KNQOS6BWRLLKS44F3GM2CTEVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/review/260169088@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2601a96f3a2_4d53fab972cd968736760"; 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/3MJg2FiwX4ZuW3H1vbIQ3XjzE7o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 15:18:18 -0000

----==_mimepart_5d2601a96f3a2_4d53fab972cd968736760
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/2880#pullrequestreview-260169088
----==_mimepart_5d2601a96f3a2_4d53fab972cd968736760
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2880?email_source=notifications&amp;email_token=AFTOJKZXPQNNQYEGK7OMWDTP6X4STA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6A53AA#pullrequestreview-260169088">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5YMWKMWIK2NA35CE3P6X4STANCNFSM4H7CJCEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OTUJNNRTGNDI27N3P6X4STA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6A53AA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJKZXPQNNQYEGK7OMWDTP6X4STA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6A53AA#pullrequestreview-260169088",
"url": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJKZXPQNNQYEGK7OMWDTP6X4STA5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6A53AA#pullrequestreview-260169088",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2601a96f3a2_4d53fab972cd968736760--


From nobody Wed Jul 10 09:40:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BCD7A120179 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 09:40:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fbXaA_Iww6_q for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 09:40: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 1341D1201EF for <quic-issues@ietf.org>; Wed, 10 Jul 2019 09:40:22 -0700 (PDT)
Date: Wed, 10 Jul 2019 09:40:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562776815; bh=tp4/Z54uP6efu07GknXQYdKgyo0jthQOZ6Z9GD466i0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pvIb7smmYmtYCRHkHWCujWv/Jj/6dZnznrqdgGScmqk2k7HM/5T0PtIgeXiUImg6K XFOR03ozWQevrfgzxav4JOc7CTlvhV3/PiDK2cGgKPSlo3dO9ID7xNUM8IKyyb3Fqa W2a5Bc1I7N7xZHYWlN+jctv/B+rHqd9adCIxXS5g=
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DQD2WL47GS6KOKK53GNDW5EVBNHHBXRCWWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2884/510138171@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2884@github.com>
References: <quicwg/base-drafts/issues/2884@github.com>
Subject: Re: [quicwg/base-drafts] Inconsistency in STOP_SENDING requirements relative to resetting streams in general (#2884)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2614eee78e1_10ef3f9a6fecd968250366c"; 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/ueNybTALGFlhKVFFRFLS59taBPc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 16:40:34 -0000

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

I am suggesting more than an editorial change, actually. I'm disputing that it makes sense for the transport to be the one initiating the RESET_STREAM as opposed to the STOP_SENDING merely being informative to the application protocol, i.e. it should be the application protocol's responsibility to respond to the STOP_SENDING by resetting the stream.

>From an implementation standpoint, one would obviously want feedback on receiving a STOP_SENDING frame. This makes it so the implementation has to make a choice when receiving the STOP_SENDING. Is it supposed to reset the stream before or after delivering this information to the application protocol? This has consequences as resetting the stream before informing the application obviously effects the stream state.

Is there any disadvantage to instead only requiring that the transport inform the application protocol of the receipt of the STOP_SENDING, and then the application protocol is left to decide when to actually reset the relevant stream?

-- 
You are receiving 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/2884#issuecomment-510138171
----==_mimepart_5d2614eee78e1_10ef3f9a6fecd968250366c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I am suggesting more than an editorial change, actually. I'm disputing that it makes sense for the transport to be the one initiating the RESET_STREAM as opposed to the STOP_SENDING merely being informative to the application protocol, i.e. it should be the application protocol's responsibility to respond to the STOP_SENDING by resetting the stream.</p>
<p>From an implementation standpoint, one would obviously want feedback on receiving a STOP_SENDING frame. This makes it so the implementation has to make a choice when receiving the STOP_SENDING. Is it supposed to reset the stream before or after delivering this information to the application protocol? This has consequences as resetting the stream before informing the application obviously effects the stream state.</p>
<p>Is there any disadvantage to instead only requiring that the transport inform the application protocol of the receipt of the STOP_SENDING, and then the application protocol is left to decide when to actually reset the relevant stream?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2884?email_source=notifications&amp;email_token=AFTOJK7OG2DGFVIH3D5UDQLP6YGG5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUBOOY#issuecomment-510138171">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2H3VLVXZQQNNE3WTLP6YGG5ANCNFSM4H7G2LTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3JGIVAX67PHGSZHJ3P6YGG5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUBOOY.gif" height="1" width="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/2884?email_source=notifications\u0026email_token=AFTOJK7OG2DGFVIH3D5UDQLP6YGG5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUBOOY#issuecomment-510138171",
"url": "https://github.com/quicwg/base-drafts/issues/2884?email_source=notifications\u0026email_token=AFTOJK7OG2DGFVIH3D5UDQLP6YGG5A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUBOOY#issuecomment-510138171",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2614eee78e1_10ef3f9a6fecd968250366c--


From nobody Wed Jul 10 09:45:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 392571200FE for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 09:45:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9TopfTqsS16t for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 09:45: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 B56C6120047 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 09:45:20 -0700 (PDT)
Date: Wed, 10 Jul 2019 09:45:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562777119; bh=2ba0f/HeenYH0TbaE/OvMmm4Im45fNDng8/e5Mk+9Hg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v7VGDvhSFVCkSu7IW4MJk05/3qFdfseSWmIfrSrIhoJfAUh14vqvLAFHL3WP4E36L N/qqHgbyNkYQMiq7pmgEsDYio13/T4Huhecth7941jkA8gd7d4B2bP3VjCWGBq3uyL FXhLExRAJ41fwupJj6ODLsXXSJumBuSeH8VgpMWQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZP7SPELGGEP3SDBMN3GNEJ7EVBNHHBXRCWWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2884/510139914@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2884@github.com>
References: <quicwg/base-drafts/issues/2884@github.com>
Subject: Re: [quicwg/base-drafts] Inconsistency in STOP_SENDING requirements relative to resetting streams in general (#2884)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d26161f80f05_7a213f8767ecd960235683f"; 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/pQYpZunPAPC1yIAZc_xgS-UX1tI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 16:45:22 -0000

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

There are two concerns that come to mind.
1) The application can implement this incorrectly.
2) The application may be slow to process the STOP_SENDING, and in the meantime a lot of unnecessary data may be sent.  Doing this at the transport layer allows immediate processing.

-- 
You are receiving 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/2884#issuecomment-510139914
----==_mimepart_5d26161f80f05_7a213f8767ecd960235683f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There are two concerns that come to mind.</p>
<ol>
<li>The application can implement this incorrectly.</li>
<li>The application may be slow to process the STOP_SENDING, and in the meantime a lot of unnecessary data may be sent.  Doing this at the transport layer allows immediate processing.</li>
</ol>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2884?email_source=notifications&amp;email_token=AFTOJK4T7HDEC464Y6EXXFLP6YGZ7A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUB4CQ#issuecomment-510139914">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2D2DIKU4XZB4GJDDDP6YGZ7ANCNFSM4H7G2LTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZS4UZYU4SZG7TXNZDP6YGZ7A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUB4CQ.gif" height="1" width="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/2884?email_source=notifications\u0026email_token=AFTOJK4T7HDEC464Y6EXXFLP6YGZ7A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUB4CQ#issuecomment-510139914",
"url": "https://github.com/quicwg/base-drafts/issues/2884?email_source=notifications\u0026email_token=AFTOJK4T7HDEC464Y6EXXFLP6YGZ7A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUB4CQ#issuecomment-510139914",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d26161f80f05_7a213f8767ecd960235683f--


From nobody Wed Jul 10 10:02:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 55F031202C7 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 10:02:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Gx-HMz5_HIIO for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 10:02:06 -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 586831202F8 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 10:02:06 -0700 (PDT)
Date: Wed, 10 Jul 2019 10:02:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562778125; bh=EGhznaiJVYxoyHDvsRHqS8xe+dsxSXWN5+asQxtvhcA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m05rnpCI8HdGRh6Qh31YKOwtwPjGRS8ukn5zGSJ0P6RCA0rMXum59kCaMEL27vid5 OgA8/4uj0bizFO1FiJeWHdV3bHCljkmau/qTUqsPjkyEbSHReRZaCYciaf/TzkPuVQ 0VVyTLYAmSMMgaQmUinLClrFssrz9eNMBotOB5SM=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK267K5NAMX5NTFXNHN3GNGI3EVBNHHBXRCWWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2884/510145616@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2884@github.com>
References: <quicwg/base-drafts/issues/2884@github.com>
Subject: Re: [quicwg/base-drafts] Inconsistency in STOP_SENDING requirements relative to resetting streams in general (#2884)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d261a0d4d23_36743f9143ccd96884647"; 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/rp81WOOvTv5tTukj7GNMUHAwGdE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 17:02:11 -0000

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

The application may also have delivered everything including FIN.

-- 
You are receiving 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/2884#issuecomment-510145616
----==_mimepart_5d261a0d4d23_36743f9143ccd96884647
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The application may also have delivered everything including FIN.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2884?email_source=notifications&amp;email_token=AFTOJKYAOG4SSVD44OECH6TP6YIY3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUDIUA#issuecomment-510145616">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MEWBRXP3CWEN5FWLP6YIY3ANCNFSM4H7G2LTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ZPUKEWTLRCXKN553P6YIY3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUDIUA.gif" height="1" width="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/2884?email_source=notifications\u0026email_token=AFTOJKYAOG4SSVD44OECH6TP6YIY3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUDIUA#issuecomment-510145616",
"url": "https://github.com/quicwg/base-drafts/issues/2884?email_source=notifications\u0026email_token=AFTOJKYAOG4SSVD44OECH6TP6YIY3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUDIUA#issuecomment-510145616",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d261a0d4d23_36743f9143ccd96884647--


From nobody Wed Jul 10 10:13:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E7C69120140 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 10:13:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jbmBDrMMMFKt for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 10:13: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 6EF681200FE for <quic-issues@ietf.org>; Wed, 10 Jul 2019 10:13:18 -0700 (PDT)
Date: Wed, 10 Jul 2019 10:13:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562778797; bh=Em/V7hshny2y7Sw8mSbGiZlPOlno5Z8eecIVp6eAaoI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=izHIbLoUKKJox0OwE4y434jNVde9rgWr1PvDjlS+GKvBZKxeFY8HDFOmBAcIWhrri XC6fQeBNsEILwYuCBRbfb40I/s6gNoAJbTzJUsFF0n/AgNnI+1oIRqy9Cj/RNw9ZZZ Xq9U4taAs8YHuneP3mgrkKskhj3GGW9+y2iHzNso=
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ECE6U2LA7JU2DIW53GNHS3EVBNHHBXRCWWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2884/510149568@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2884@github.com>
References: <quicwg/base-drafts/issues/2884@github.com>
Subject: Re: [quicwg/base-drafts] Inconsistency in STOP_SENDING requirements relative to resetting streams in general (#2884)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d261cad20274_43dc3feb8aacd964179959"; 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/CH0ZBRZK4NR0IBB9Soqymxwft3A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 17:13:40 -0000

----==_mimepart_5d261cad20274_43dc3feb8aacd964179959
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> The application can implement this incorrectly.

The application can also incorrectly implement having its stream reset without notification, as is currently allowed by the spec. The spec as written IMO encourages confusing semantics with respect to STOP_SENDING, as it forces the transport to send the reset and leaves it up to the implementation to decide how and when it notifies the application.

> The application may be slow to process the STOP_SENDING, and in the meantime a lot of unnecessary data may be sent. Doing this at the transport layer allows immediate processing.

We don't need to be prescriptive in saying the application MUST handle it, i.e. we don't need to disallow transport implementations from responding to the STOP_SENDING without application input. I am suggesting that we not require that the transport be the one to do it. I don't see an advantage to allowing the application to take control of sending the reset if it wants to. 

> The application may also have delivered everything including FIN.

I don't see how this is a concern. For such cases either the application can still issue a reset for the stream, or the transport implementation can optionally take control of it and issue the reset itself.

-- 
You are receiving 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/2884#issuecomment-510149568
----==_mimepart_5d261cad20274_43dc3feb8aacd964179959
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>The application can implement this incorrectly.</p>
</blockquote>
<p>The application can also incorrectly implement having its stream reset without notification, as is currently allowed by the spec. The spec as written IMO encourages confusing semantics with respect to STOP_SENDING, as it forces the transport to send the reset and leaves it up to the implementation to decide how and when it notifies the application.</p>
<blockquote>
<p>The application may be slow to process the STOP_SENDING, and in the meantime a lot of unnecessary data may be sent. Doing this at the transport layer allows immediate processing.</p>
</blockquote>
<p>We don't need to be prescriptive in saying the application MUST handle it, i.e. we don't need to disallow transport implementations from responding to the STOP_SENDING without application input. I am suggesting that we not require that the transport be the one to do it. I don't see an advantage to allowing the application to take control of sending the reset if it wants to.</p>
<blockquote>
<p>The application may also have delivered everything including FIN.</p>
</blockquote>
<p>I don't see how this is a concern. For such cases either the application can still issue a reset for the stream, or the transport implementation can optionally take control of it and issue the reset itself.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2884?email_source=notifications&amp;email_token=AFTOJK6FGSMFRQKWO4TFHN3P6YKC3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUEHQA#issuecomment-510149568">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6GCTKSACFCYSXUJHDP6YKC3ANCNFSM4H7G2LTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2HSHMTPCK32HLPD33P6YKC3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUEHQA.gif" height="1" width="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/2884?email_source=notifications\u0026email_token=AFTOJK6FGSMFRQKWO4TFHN3P6YKC3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUEHQA#issuecomment-510149568",
"url": "https://github.com/quicwg/base-drafts/issues/2884?email_source=notifications\u0026email_token=AFTOJK6FGSMFRQKWO4TFHN3P6YKC3A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUEHQA#issuecomment-510149568",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d261cad20274_43dc3feb8aacd964179959--


From nobody Wed Jul 10 10:29:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EA4D71203D7 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 10:29:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GQkQc2vxWlZN for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 10:28: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 47C9D1202EE for <quic-issues@ietf.org>; Wed, 10 Jul 2019 10:28:32 -0700 (PDT)
Date: Wed, 10 Jul 2019 10:28:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562779711; bh=FsGpY64ZjFlNtL3LOUEb7lNjH/+Szg756Uoq61fmHHc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lrL21aUKyKX5XUReZyn/kc7YwqnifuYr2r5lAMH0KA2kZ8wKNa6KGcp56YTPF5/4d NuOKR4CXFujWqJHg1NKWqmFiVTT0LT4MX8HVRYI+IigSE+w4INA1zDXuQm+ZI+GVHY Z/A9lra9uOtrqdGyDwga+wuCqtMKz9wjqUDX+PBA=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7AQWQINTKGREEDZJN3GNJL7EVBNHHBXRCWWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2884/510154903@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2884@github.com>
References: <quicwg/base-drafts/issues/2884@github.com>
Subject: Re: [quicwg/base-drafts] Inconsistency in STOP_SENDING requirements relative to resetting streams in general (#2884)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d26203f387cb_36743f9143ccd96839329e"; 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/soK5uI0hcaTcwxl9J2MjYxi7Xg4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 17:29:01 -0000

----==_mimepart_5d26203f387cb_36743f9143ccd96839329e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I don't see how this is a concern. For such cases either the application can still issue a reset for the stream, or the transport implementation can optionally take control of it and issue the reset itself.

It may not be in the application protocols best interest to have a forced reset 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/issues/2884#issuecomment-510154903
----==_mimepart_5d26203f387cb_36743f9143ccd96839329e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I don't see how this is a concern. For such cases either the application can still issue a reset for the stream, or the transport implementation can optionally take control of it and issue the reset itself.</p>
</blockquote>
<p>It may not be in the application protocols best interest to have a forced reset 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/issues/2884?email_source=notifications&amp;email_token=AFTOJK43Q34TOEQ2GHG5T7TP6YL37A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUFRFY#issuecomment-510154903">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NRO5FAKMSQRXWFD3P6YL37ANCNFSM4H7G2LTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QLIFGWNCIE4U4KUTP6YL37A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUFRFY.gif" height="1" width="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/2884?email_source=notifications\u0026email_token=AFTOJK43Q34TOEQ2GHG5T7TP6YL37A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUFRFY#issuecomment-510154903",
"url": "https://github.com/quicwg/base-drafts/issues/2884?email_source=notifications\u0026email_token=AFTOJK43Q34TOEQ2GHG5T7TP6YL37A5CNFSM4H7G2LTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUFRFY#issuecomment-510154903",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d26203f387cb_36743f9143ccd96839329e--


From nobody Wed Jul 10 14:19:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CB7B51201DA for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 14:19:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ESVNmZO1JjIA for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 14:19: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 7886D120025 for <quic-issues@ietf.org>; Wed, 10 Jul 2019 14:19:16 -0700 (PDT)
Date: Wed, 10 Jul 2019 14:19:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562793555; bh=AkYN+qqpEfHKbYlqtihXwJE6mxnzfe+0iFNbRetOxlE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=G60wE7ZtglzzxmV3MSSJfB3rZ4rvx9r/NSJ6KgOIAUAXa63i4uJuxSXAjuXVbtH+i jZ8abj/K+toq2dg7LbkX4BZYdfzsVsBiQT8FPqpD1yE40sI+MkQGlWrGO9mDkkAe+E 6v8T5BjOV7Dng/cWhajGYcz/KDhEbfPpyZX/VfMg=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYG4SR47CPWVKNTZKN3GOENHEVBNHHBT5UX5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2638/510232990@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2638@github.com>
References: <quicwg/base-drafts/issues/2638@github.com>
Subject: Re: [quicwg/base-drafts] max_ack_delay is unknown when a new connection is established (#2638)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d26565315390_79d23fd63bacd96413329b9"; 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/NHz-kB6yma7a7j4b6l7ILSLE5wY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 21:19:18 -0000

----==_mimepart_5d26565315390_79d23fd63bacd96413329b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The PR is already merged, so closing.

-- 
You are receiving 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/2638#issuecomment-510232990
----==_mimepart_5d26565315390_79d23fd63bacd96413329b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The PR is already merged, so closing.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2638?email_source=notifications&amp;email_token=AFTOJK4JSS6FTYEECDR3AJDP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUYTHQ#issuecomment-510232990">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2OBXLDK4KKWY43TITP6ZG5HANCNFSM4HHNID4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZETYPK7TKKFOS64OTP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUYTHQ.gif" height="1" width="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/2638?email_source=notifications\u0026email_token=AFTOJK4JSS6FTYEECDR3AJDP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUYTHQ#issuecomment-510232990",
"url": "https://github.com/quicwg/base-drafts/issues/2638?email_source=notifications\u0026email_token=AFTOJK4JSS6FTYEECDR3AJDP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUYTHQ#issuecomment-510232990",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d26565315390_79d23fd63bacd96413329b9--


From nobody Wed Jul 10 14:19:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4002D120025 for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 14:19:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cJ0KF_9PBhAD for <quic-issues@ietfa.amsl.com>; Wed, 10 Jul 2019 14:19:16 -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 905401201BC for <quic-issues@ietf.org>; Wed, 10 Jul 2019 14:19:16 -0700 (PDT)
Date: Wed, 10 Jul 2019 14:19:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562793555; bh=6nU8I3KJSOkfAkb7BqQi4KtoIBmlKI80FvoklanFcZI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oucYUmxBMRz666CmOAvKS/J+QkcJsGJ4y5VsnBVrBFWLVwOGVx1iq3bwm7rIFSLMN IvkP5a0OCQAKLiWpor4HR7DiKBj1+5HFUBMIypJng81nqscc6by6TyuSsF8PB45/PZ 7QcjwvDQp1vWPsrIgtdbs7Fn2xYsdY2CFizNj5MY=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYG4SR47CPWVKNTZKN3GOENHEVBNHHBT5UX5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2638/issue_event/2473924101@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2638@github.com>
References: <quicwg/base-drafts/issues/2638@github.com>
Subject: Re: [quicwg/base-drafts] max_ack_delay is unknown when a new connection is established (#2638)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2656539d3f_119c3f9a1fecd96813893c"; 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/TLTLPXkNao0JtHJBQpA7gODh3uI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Jul 2019 21:19:18 -0000

----==_mimepart_5d2656539d3f_119c3f9a1fecd96813893c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2638.

-- 
You are receiving 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/2638#event-2473924101
----==_mimepart_5d2656539d3f_119c3f9a1fecd96813893c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="435591149" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2638" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2638/hovercard" href="https://github.com/quicwg/base-drafts/issues/2638">#2638</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/2638?email_source=notifications&amp;email_token=AFTOJKZWJFV5ESMEEN7QG3DP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSN2RMBI#event-2473924101">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2OBXLDK4KKWY43TITP6ZG5HANCNFSM4HHNID4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6MP5JJ5TCDVEIJCDP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSN2RMBI.gif" height="1" width="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/2638?email_source=notifications\u0026email_token=AFTOJKZWJFV5ESMEEN7QG3DP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSN2RMBI#event-2473924101",
"url": "https://github.com/quicwg/base-drafts/issues/2638?email_source=notifications\u0026email_token=AFTOJKZWJFV5ESMEEN7QG3DP6ZG5HA5CNFSM4HHNID42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSN2RMBI#event-2473924101",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2656539d3f_119c3f9a1fecd96813893c--


From nobody Thu Jul 11 07:20:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B4F201200E9 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 07:20:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, 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 fAJrtpXBKXB0 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 07:20: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 86E2C1200CD for <quic-issues@ietf.org>; Thu, 11 Jul 2019 07:20:46 -0700 (PDT)
Date: Thu, 11 Jul 2019 07:20:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562854845; bh=FPID+/pQzlnMmhhGfRxcTmiXEy1Bx9s1szWhoq/McA8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=KAFHHkUNx6mTpuCDdL9/gNjtaUPO93XxxZg8kJjCBJkOpMFbdA9ddEjO9lh03PG5k sd8bjoCSIkAim4Gl0H/k4GYsLo716vNd2oIjZfpAXArSvpGe+dstiwewHiKRzqdSOG Y58BlJEmI9x63zyBNhzQRcQRli4ncAUvDbdX/pEk=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZJHTTI2FJ5CZ3T6DN3GR4D3EVBNHHBXVFPTI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2889@github.com>
Subject: [quicwg/base-drafts] HTTP/3 support for status 101(Switching Protocols) (#2889)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2745bd1391d_77303ff8044cd95c31835a8"; 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/cU9m2jIA0W-bGfD1n0w2s8xvvPQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 14:20:49 -0000

----==_mimepart_5d2745bd1391d_77303ff8044cd95c31835a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

HTTP/3 makes no explicit comment about this. HTTP/2 prohibits it. So I think that we might want to add equivalent text. https://tools.ietf.org/html/rfc7540#section-8.1.1

> HTTP/2 removes support for the 101 (Switching Protocols)
   informational status code ([RFC7231], Section 6.2.2).

   The semantics of 101 (Switching Protocols) aren't applicable to a
   multiplexed protocol.

-- 
You are receiving 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/2889
----==_mimepart_5d2745bd1391d_77303ff8044cd95c31835a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>HTTP/3 makes no explicit comment about this. HTTP/2 prohibits it. So I think that we might want to add equivalent text. <a href="https://tools.ietf.org/html/rfc7540#section-8.1.1" rel="nofollow">https://tools.ietf.org/html/rfc7540#section-8.1.1</a></p>
<blockquote>
<p>HTTP/2 removes support for the 101 (Switching Protocols)<br>
informational status code ([RFC7231], Section 6.2.2).</p>
</blockquote>
<p>The semantics of 101 (Switching Protocols) aren't applicable to a<br>
multiplexed protocol.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2889?email_source=notifications&amp;email_token=AFTOJKZZ5B4CDLIZKMPNXVTP646T3A5CNFSM4IBIB4D2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6UV6NA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6NT4J3ZAHSOZVWQTDP646T3ANCNFSM4IBIB4DQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK24UDLJZVB5XRFQQ6LP646T3A5CNFSM4IBIB4D2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6UV6NA.gif" height="1" width="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/2889?email_source=notifications\u0026email_token=AFTOJKZZ5B4CDLIZKMPNXVTP646T3A5CNFSM4IBIB4D2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6UV6NA",
"url": "https://github.com/quicwg/base-drafts/issues/2889?email_source=notifications\u0026email_token=AFTOJKZZ5B4CDLIZKMPNXVTP646T3A5CNFSM4IBIB4D2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6UV6NA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2745bd1391d_77303ff8044cd95c31835a8--


From nobody Thu Jul 11 08:03:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 45E171202ED for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 08:03:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jJzZEs_yqVT1 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 08:03:13 -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 891E5120335 for <quic-issues@ietf.org>; Thu, 11 Jul 2019 08:03:13 -0700 (PDT)
Date: Thu, 11 Jul 2019 08:03:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562857392; bh=2OtpqiSVXUJ80RvXlZ2zmw/ejaIwy0Tu1w5ei/Smb4Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=H6S/vmq3PiP73KI3Ynj+fw6qkLub3/6iQH7lBOMoX77MmInXGaRFRjW1o2Rb5wVfq ToVQBZcjIlgXouDV9ExT3j3omuRk1VW6Yve2uzxOZ3dvzEwehBdXN2MGkRRo4vqV2/ WTRiIu/805NfMDUXRutkFvkC6/qTr/ifgdm3GIb8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY35V3VZT4P4OZWJ3F3GSBDBEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/260758998@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d274fb048f2f_1a853fe2f40cd96c16775c5"; 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/FuOTRUmsX7bQFF-pbnFtotaOB6I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 15:03:24 -0000

----==_mimepart_5d274fb048f2f_1a853fe2f40cd96c16775c5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.

This is going to conflict with #2806 so I'll try to merge that soon.

> @@ -391,6 +391,15 @@ sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
 in any received 1-RTT ACK frame: once the latter is higher than or equal to the
 former, the handshake is confirmed.
 
+Note:
+
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an endpoint,
+  the handshake might never be confirmed by an endpoint.  If the peer does
+  confirm the handshake, this could result in perpetual retransmission of
+  Handshake packets, which cannot be acknowledged.  To avoid this problem, in

retransmission of Handshake data, not packets?  Here and on the next line.

> @@ -532,11 +532,18 @@ a PATH_RESPONSE to seed initial_rtt for a new path, but the delay SHOULD NOT
 be considered an RTT sample.
 
 When a crypto packet is sent, the sender MUST set a timer for twice the smoothed
-RTT.  This timer MUST be updated when a new crypto packet is sent and when
-an acknowledgement is received which computes a new RTT sample. Upon timeout,
-the sender MUST retransmit all unacknowledged CRYPTO data if possible.  The
-sender MUST NOT declare in-flight crypto packets as lost when the crypto timer
-expires.
+RTT.  This timer MUST be updated when a new crypto packet is sent and when an
+acknowledgement is received that produces a new RTT sample. Upon timeout, the
+sender MUST retransmit unacknowledged cryptographic handshake data.  The sender
+MUST NOT declare in-flight crypto packets as lost when the crypto timer expires.
+
+If the handshake is complete, but not confirmed (see Section 4.1.1 and Section
+4.1.2 of {{QUIC-TLS}}), in addition to sending unacknowledged crytographic
+handshake data, endpoints SHOULD send an ack-eliciting 1-RTT packet.  This can

```suggestion
Handshake data, endpoints SHOULD send an ack-eliciting 1-RTT packet.  This can
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881#pullrequestreview-260758998
----==_mimepart_5d274fb048f2f_1a853fe2f40cd96c16775c5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<p>This is going to conflict with <a class=3D"issue-link js-issue-link" d=
ata-error-text=3D"Failed to load issue title" data-id=3D"457781071" data-=
permission-text=3D"Issue title is private" data-url=3D"https://github.com=
/quicwg/base-drafts/issues/2806" data-hovercard-type=3D"pull_request" dat=
a-hovercard-url=3D"/quicwg/base-drafts/pull/2806/hovercard" href=3D"https=
://github.com/quicwg/base-drafts/pull/2806">#2806</a> so I'll try to merg=
e that soon.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2881#discussi=
on_r302590278">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -391,6 +391,15 @@ sent with 1-RTT keys,=
 and the highest value of the Largest Acknowledged field=0D
 in any received 1-RTT ACK frame: once the latter is higher than or equal=
 to the=0D
 former, the handshake is confirmed.=0D
 =0D
+Note:=0D
+=0D
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an en=
dpoint,=0D
+  the handshake might never be confirmed by an endpoint.  If the peer do=
es=0D
+  confirm the handshake, this could result in perpetual retransmission o=
f=0D
+  Handshake packets, which cannot be acknowledged.  To avoid this proble=
m, in=0D
</pre>=0D
<p>retransmission of Handshake data, not packets?  Here and on the next l=
ine.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2881#discussi=
on_r302591657">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -532,11 +532,18 @@ a PATH_RESPONSE to s=
eed initial_rtt for a new path, but the delay SHOULD NOT=0D
 be considered an RTT sample.=0D
 =0D
 When a crypto packet is sent, the sender MUST set a timer for twice the =
smoothed=0D
-RTT.  This timer MUST be updated when a new crypto packet is sent and wh=
en=0D
-an acknowledgement is received which computes a new RTT sample. Upon tim=
eout,=0D
-the sender MUST retransmit all unacknowledged CRYPTO data if possible.  =
The=0D
-sender MUST NOT declare in-flight crypto packets as lost when the crypto=
 timer=0D
-expires.=0D
+RTT.  This timer MUST be updated when a new crypto packet is sent and wh=
en an=0D
+acknowledgement is received that produces a new RTT sample. Upon timeout=
, the=0D
+sender MUST retransmit unacknowledged cryptographic handshake data.  The=
 sender=0D
+MUST NOT declare in-flight crypto packets as lost when the crypto timer =
expires.=0D
+=0D
+If the handshake is complete, but not confirmed (see Section 4.1.1 and S=
ection=0D
+4.1.2 of {{QUIC-TLS}}), in addition to sending unacknowledged crytograph=
ic=0D
+handshake data, endpoints SHOULD send an ack-eliciting 1-RTT packet.  Th=
is can=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-handshake data, endpoints SHOULD send an ack-=
eliciting 1-RTT packet.  This can=0D
+Handshake data, endpoints SHOULD send an ack-eliciting 1-RTT packet.  Th=
is can=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/2881?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK7WZ4YKKF5UIZQPVCLP65DTBA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6FN3VQ#pullrequestreview-260758998=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK6TH54L4YBZSLXCN6DP65DTBANCNFSM4H7CMENA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK426QQR=
WCXXB67YFSTP65DTBA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB6FN3VQ.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/2881?email_source=3D=
notifications\u0026email_token=3DAFTOJK7WZ4YKKF5UIZQPVCLP65DTBA5CNFSM4H7C=
MENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
6FN3VQ#pullrequestreview-260758998",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK7WZ4YKKF5UIZQPVCLP65DTBA5CNFSM4H7CME=
NKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6F=
N3VQ#pullrequestreview-260758998",=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_5d274fb048f2f_1a853fe2f40cd96c16775c5--


From nobody Thu Jul 11 08:21:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 572B6120157 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 08:21:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id O2_KMOinAN8q for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 08:21: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 5B3F5120153 for <quic-issues@ietf.org>; Thu, 11 Jul 2019 08:21:34 -0700 (PDT)
Date: Thu, 11 Jul 2019 08:21:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562858492; bh=+v01rG/3WIZhyYV4jk6Z49I2jECd8cs9Fo+tOM0ziME=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fmqFMbsTzngvtAc7JzU/HJx2ofWEoBhaB+MO/bhBPMy4x7zUIeeugHBaKgXUmxLy3 +FWT1z3XE3GmRaohsmBUykcbTZCB/Lybn0WiBPciUgqsbTY+3djHwgLFTf4yE1Ia8M HX3nR1X7idWb3QPpWS398nplfP2q0T+75J3WJ3Vs=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UUFT2ZQBNEBOTE2V3GSDHZEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c510531537@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2753fce1272_34073fc9e74cd95c665862"; 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/eco-I2XAUGdB7aDGFOqZR6jvfd0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 15:21:36 -0000

----==_mimepart_5d2753fce1272_34073fc9e74cd95c665862
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> This is going to conflict with #2806 so I'll try to merge that soon.

@ianswett I don't think this is an editorial change. Furthermore, I don't believe that a change to the loss recovery algorithm is necessarily the best fix for #2863.
Can we not merge this until Montreal?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881#issuecomment-510531537
----==_mimepart_5d2753fce1272_34073fc9e74cd95c665862
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>This is going to conflict with <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</a> so I'll try to merge that soon.</p>
</blockquote>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=20072817" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> I don't think this is an editorial change. Furthermore, I don't believe that a change to the loss recovery algorithm is necessarily the best fix for <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462368523" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2863" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2863/hovercard" href="https://github.com/quicwg/base-drafts/issues/2863">#2863</a>.<br>
Can we not merge this until Montreal?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications&amp;email_token=AFTOJKZMYDN5KZTFLUFGCJ3P65FXZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXBPUI#issuecomment-510531537">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ZHY27HASQQSKFHO3P65FXZANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZR5QWQHGMBDKKZFL3P65FXZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXBPUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKZMYDN5KZTFLUFGCJ3P65FXZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXBPUI#issuecomment-510531537",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKZMYDN5KZTFLUFGCJ3P65FXZA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXBPUI#issuecomment-510531537",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2753fce1272_34073fc9e74cd95c665862--


From nobody Thu Jul 11 08:42:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9DFCB1202C6 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 08:42:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MuRv689xz6JX for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 08:42: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 4E5ED1202C1 for <quic-issues@ietf.org>; Thu, 11 Jul 2019 08:42:56 -0700 (PDT)
Date: Thu, 11 Jul 2019 08:42:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562859774; bh=eaGIFda4syd8tvQFEDxmpTI/NAO1Ygt9bCrYwlu49sE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KzfQ83gslxv3a8z6pLbZH8f64FGUMr11AhvT4uBZdA4r9nVHFOmynd+JDQRCTQND2 +8MDCGqWwRfmpH269q9YKP7Av+K9Yenxw9bniGcS5L2qkmKmwGZUOpYwNxOKPWQwGr 2JBy8AomObdXx+8OpOsCtNq2eFws8yzzW6ew9BHI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMYP6SRXDQ43NHQIV3GSFX5EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c510540406@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2758fecdb32_26813fc467ecd96420536bd"; 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/VBdA83BPm7rIRMMEQBKlstYiZyY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 15:42:58 -0000

----==_mimepart_5d2758fecdb32_26813fc467ecd96420536bd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This PR and that issue are labeled transport+design, so presumably it'd need a 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/pull/2881#issuecomment-510540406
----==_mimepart_5d2758fecdb32_26813fc467ecd96420536bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This PR and that issue are labeled transport+design, so presumably it'd need a 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/pull/2881?email_source=notifications&amp;email_token=AFTOJK6GABISAM7XXMUYJKLP65IH5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXDU5Q#issuecomment-510540406">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5IGZ672NNQP7JRQG3P65IH5ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NEP7ZTP4ZXRP2HWLP65IH5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXDU5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK6GABISAM7XXMUYJKLP65IH5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXDU5Q#issuecomment-510540406",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK6GABISAM7XXMUYJKLP65IH5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXDU5Q#issuecomment-510540406",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2758fecdb32_26813fc467ecd96420536bd--


From nobody Thu Jul 11 09:43:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 28B72120172 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 09:43:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UW1e38au54-i for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 09:43: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 96B5D12030D for <quic-issues@ietf.org>; Thu, 11 Jul 2019 09:43:54 -0700 (PDT)
Date: Thu, 11 Jul 2019 09:43:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562863433; bh=AZ5aZnVlSj9MFMQ34HWdv6bADkw0oQ7f6IaXsNaPJls=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hpcajQboIXnJXT0rJ3YpvDKrgqT/O/2xpAxQZJm1RFuy8PXcy0frKMwsaf7h0Pjsr H2JPQEVy6yGtZyJksqBnMQgCVI3rju7TW2M9lpH4E6C7GI/IJ31VMzLNc4F56iCSyq 8dL5Em+DSJoRQFQDo5QMMMjerB2mONI8s2ZwLc4c=
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JG3W7PZPA7SN5OYN3GSM4TEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/260823749@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d27674921e30_1f1b3ff12b0cd9682879864"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: RyanAtGoogle
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4mZGL_ERZ14smrbd-xwlyKs23_k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 16:43:57 -0000

----==_mimepart_5d27674921e30_1f1b3ff12b0cd9682879864
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

RyanAtGoogle approved this pull request.

Wow, this looks so much cleaner.

> +data it can send is limited, as specified in Section 8.1 of {{QUIC-TRANSPORT}}.
+Data at Initial encryption MUST be retransmitted before Handshake data and
+data at Handshake encryption MUST be retransmitted before any ApplicationData
+data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an

nit: "only containing" => "containing only"

> +data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an
+acknowledgement, they may never be acknowledged, but they are removed from
+bytes in flight when the client gets Handshake keys and the Initial keys are
+discarded.

Because of this, I wonder if it might make sense to include a PING along with an otherwise PADDING only packet?

>  ## Probe Timeout {#pto}
 
-A Probe Timeout (PTO) triggers a probe packet when ack-eliciting data is in
-flight but an acknowledgement is not received within the expected period of
-time.  A PTO enables a connection to recover from loss of tail packets or acks.
-The PTO algorithm used in QUIC implements the reliability functions of Tail Loss
-Probe {{?TLP=I-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}}, RTO {{?RFC5681}} and
+A Probe Timeout (PTO) triggers sending one or two probe packets when

This is probably obvious but it doesn't seem to explicitly say what causes 1 vs 2 packet to be sent. Perhaps this is clear elsewhere? I wonder if it might make sense to say something like "two packets, if there is sufficient data available, and one otherwise". But maybe that's not really helpful.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2806#pullrequestreview-260823749
----==_mimepart_5d27674921e30_1f1b3ff12b0cd9682879864
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@RyanAtGoogle</b> approved this pull request.</p>

<p>Wow, this looks so much cleaner.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r302640839">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +data it can send is limited, as specified in Section 8.1 of {{QUIC-TRANSPORT}}.
+Data at Initial encryption MUST be retransmitted before Handshake data and
+data at Handshake encryption MUST be retransmitted before any ApplicationData
+data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an
</pre>
<p>nit: "only containing" =&gt; "containing only"</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r302641259">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an
+acknowledgement, they may never be acknowledged, but they are removed from
+bytes in flight when the client gets Handshake keys and the Initial keys are
+discarded.
</pre>
<p>Because of this, I wonder if it might make sense to include a PING along with an otherwise PADDING only packet?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r302642322">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  ## Probe Timeout {#pto}
 
-A Probe Timeout (PTO) triggers a probe packet when ack-eliciting data is in
-flight but an acknowledgement is not received within the expected period of
-time.  A PTO enables a connection to recover from loss of tail packets or acks.
-The PTO algorithm used in QUIC implements the reliability functions of Tail Loss
-Probe {{?TLP=I-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}}, RTO {{?RFC5681}} and
+A Probe Timeout (PTO) triggers sending one or two probe packets when
</pre>
<p>This is probably obvious but it doesn't seem to explicitly say what causes 1 vs 2 packet to be sent. Perhaps this is clear elsewhere? I wonder if it might make sense to say something like "two packets, if there is sufficient data available, and one otherwise". But maybe that's not really helpful.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications&amp;email_token=AFTOJKYBSDFI3HGNW5QYVYDP65PMTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6F5VRI#pullrequestreview-260823749">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XL4S5F4ZDOTS6ZY3P65PMTANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2BULDLTQZKWTOQVF3P65PMTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6F5VRI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJKYBSDFI3HGNW5QYVYDP65PMTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6F5VRI#pullrequestreview-260823749",
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJKYBSDFI3HGNW5QYVYDP65PMTA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6F5VRI#pullrequestreview-260823749",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d27674921e30_1f1b3ff12b0cd9682879864--


From nobody Thu Jul 11 11:47:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5510212016E for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 11:47:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vd3-bU1Zr5CX for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 11:47:24 -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 762251200A4 for <quic-issues@ietf.org>; Thu, 11 Jul 2019 11:47:24 -0700 (PDT)
Date: Thu, 11 Jul 2019 11:47:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562870843; bh=jb5w00Rc/CwUjkKk/Jr5U35NESxUQUrE4w0xlUielUA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=oI5IBMas9Wh7HQoBrEuAGEzH4brg/Q1A2BfDfI6Al877TQ88e322lueLDpvrdwOnj aB+UQEcrBcgjtMHpNfvALYtIFrliSMVbau+zMlUw8FXDvjArMFldMv4xdSxihut7YW MCjKPqRHHQMrefKs6eVeThNKfkbcaBe9eHbByaG8=
From: Joshua Koo <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ZLEZLZWF4LIHURHN3GS3LXEVBNHHBXVU6TU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2890@github.com>
Subject: [quicwg/base-drafts] HTTP/2 in Peer Denial of Service? (#2890)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d27843b4353c_7fd23fa074ccd964586615"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: zz85
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yZGkm9A5_Tzdm2NEfVq781w5ckI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 18:47:26 -0000

----==_mimepart_5d27843b4353c_7fd23fa074ccd964586615
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Under the section _Peer Denial of Service_ of TLS draft, a referenced was made to HTTP/2.

https://github.com/quicwg/base-drafts/blame/master/draft-ietf-quic-tls.md#L1393

I was wonder if this is in fact referring to HTTP/3 or HTTP/2. Also curious why the section is labelled `{#useless}`

-- 
You are receiving 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/2890
----==_mimepart_5d27843b4353c_7fd23fa074ccd964586615
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Under the section <em>Peer Denial of Service</em> of TLS draft, a referenced was made to HTTP/2.</p>
<p><a href="https://github.com/quicwg/base-drafts/blame/master/draft-ietf-quic-tls.md#L1393">https://github.com/quicwg/base-drafts/blame/master/draft-ietf-quic-tls.md#L1393</a></p>
<p>I was wonder if this is in fact referring to HTTP/3 or HTTP/2. Also curious why the section is labelled <code>{#useless}</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/2890?email_source=notifications&amp;email_token=AFTOJK6KFEMB4DYOIRXF4PTP6553XA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6WT2OQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY7V7N44JBXKDKFR7LP6553XANCNFSM4IBRC5OA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5GWKLA5QGYBX6AWY3P6553XA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6WT2OQ.gif" height="1" width="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/2890?email_source=notifications\u0026email_token=AFTOJK6KFEMB4DYOIRXF4PTP6553XA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6WT2OQ",
"url": "https://github.com/quicwg/base-drafts/issues/2890?email_source=notifications\u0026email_token=AFTOJK6KFEMB4DYOIRXF4PTP6553XA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6WT2OQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d27843b4353c_7fd23fa074ccd964586615--


From nobody Thu Jul 11 12:49:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 15B4912008B for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 12:49:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9cNg2tAFsLwt for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 12:49: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 45EE1120131 for <quic-issues@ietf.org>; Thu, 11 Jul 2019 12:49:45 -0700 (PDT)
Date: Thu, 11 Jul 2019 12:49:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562874583; bh=iSCbvE1M1E1HHsSKa2PxhCDOiPuGWh4NiQWyg/+1j34=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0JHWQboiuex1Bl1gUVTvB4oto9KT5s2amhSOuL9WGCVLUAbjQu+fOYuTWs2WuNNvx K+OIaBZGpRhocpToOZVNgrGQst+c+BismR0q2ajennHnTHTMQe1xL4tXqP+qmw1ieq 9ouozoePfwY05ZDEN8C3OPQnWx1kzQoMLOJFO/Yk=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6QZNTZ2EJQUZHP4GV3GTCVPEVBNHHBSQ7R3A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2541/510628871@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2541@github.com>
References: <quicwg/base-drafts/issues/2541@github.com>
Subject: Re: [quicwg/base-drafts] Clients cannot abandon Initial packets while server can still send initial close (#2541)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2792d7d1132_1df93fc2700cd95c47732f"; 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/TL8BEof_Zjnfhjrp33ow2AhaCqI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 19:49:47 -0000

----==_mimepart_5d2792d7d1132_1df93fc2700cd95c47732f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This issue should now be resolved by #2688.
@mjoras can you please confirm if you think the issue is now resolved, and close it if it 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/2541#issuecomment-510628871
----==_mimepart_5d2792d7d1132_1df93fc2700cd95c47732f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This issue should now be resolved by <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="442661902" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2688" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2688/hovercard" href="https://github.com/quicwg/base-drafts/pull/2688">#2688</a>.<br>
<a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=6666676" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mjoras">@mjoras</a> can you please confirm if you think the issue is now resolved, and close it if it 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/2541?email_source=notifications&amp;email_token=AFTOJK27D5HY7L7TRNDHYTTP66FFPA5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXZIBY#issuecomment-510628871">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MKDFWUJD3MCXDH6DP66FFPANCNFSM4HAIOPVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6MWLVJLP6RWMUNS6TP66FFPA5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXZIBY.gif" height="1" width="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/2541?email_source=notifications\u0026email_token=AFTOJK27D5HY7L7TRNDHYTTP66FFPA5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXZIBY#issuecomment-510628871",
"url": "https://github.com/quicwg/base-drafts/issues/2541?email_source=notifications\u0026email_token=AFTOJK27D5HY7L7TRNDHYTTP66FFPA5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZXZIBY#issuecomment-510628871",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2792d7d1132_1df93fc2700cd95c47732f--


From nobody Thu Jul 11 16:33:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0E71212016B for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 16:33:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 UBPoQ4P1HoYq for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 16:33: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 84118120159 for <quic-issues@ietf.org>; Thu, 11 Jul 2019 16:33:25 -0700 (PDT)
Date: Thu, 11 Jul 2019 16:33:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562888004; bh=aEWoWwPew0XCI9/fUTHsFuG2DwmTU9jhMGwXxVzs+vk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=YAuEE8bGuDQ86A9F4s6VIcf1s9F2smo587hDskauC74a8Geyf4t5YwWJhmeYikZxQ gV1FmfNofn1xQh91A/F4aQppiUk1q/6EHFrFFFZI6jX+Sb4xt6efotrh9dgH03KyZX /xNBQGoStgQ0Uho0bSdy5ARnQEd9ZpQ9wzqBBkAU=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3NUOPLVHZO3JVEDJV3GT44JEVBNHHBXWBNLI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2891@github.com>
Subject: [quicwg/base-drafts] qpack: fix reference to blocked-streams section (#2891)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d27c7443100e_5cdc3fc844acd9642150817"; 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/zb9UaIDYzuoSn-WqS1IXIbFDI6w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 11 Jul 2019 23:33:28 -0000

----==_mimepart_5d27c7443100e_5cdc3fc844acd9642150817
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/2891

-- Commit Summary --

  * qpack: fix reference to blocked-streams section

-- File Changes --

    M draft-ietf-quic-qpack.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2891.patch
https://github.com/quicwg/base-drafts/pull/2891.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/2891

----==_mimepart_5d27c7443100e_5cdc3fc844acd9642150817
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/2891'>https://github.com/quicwg/base-drafts/pull/2891</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>qpack: fix reference to blocked-streams section</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2891/files#diff-0">draft-ietf-quic-qpack.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2891.patch'>https://github.com/quicwg/base-drafts/pull/2891.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2891.diff'>https://github.com/quicwg/base-drafts/pull/2891.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/2891?email_source=notifications&amp;email_token=AFTOJKYU36FS3GXJKD7DBCTP667MJA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YFVNA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6W2TKR5DTJCOKPT2DP667MJANCNFSM4IBZKZDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYS74FZL4ZAMU6OYP3P667MJA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YFVNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2891?email_source=notifications\u0026email_token=AFTOJKYU36FS3GXJKD7DBCTP667MJA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YFVNA",
"url": "https://github.com/quicwg/base-drafts/pull/2891?email_source=notifications\u0026email_token=AFTOJKYU36FS3GXJKD7DBCTP667MJA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YFVNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d27c7443100e_5cdc3fc844acd9642150817--


From nobody Thu Jul 11 17:39:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A6DCF1200C7 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 17:39:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9h9FNZubNtHY for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 17:39:54 -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 8238E120073 for <quic-issues@ietf.org>; Thu, 11 Jul 2019 17:39:54 -0700 (PDT)
Date: Thu, 11 Jul 2019 17:39:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562891993; bh=nbr6ajitB/SjKyscSxDZr45BO20xp4M5mkiiNBh38+U=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Krq1adXLFtjr2DjA8jjUtgYF1/eiWd6IQzO4c0FozMIIJ1IeTF1JEyrd9kVDH88YV E9xSRlFWJymOH0skH2+j5Oj1+HnRTRm9XNQ0cf+mD29HDt9/Ucw+7pn1oAeHH/wykc GpARPaNN4Ow92tncFeKJk7KpFrA8hXrXsuBi9cgc=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2OWULYLVJZ5ETKH553GUEVTEVBNHHBXWDFAA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2892@github.com>
Subject: [quicwg/base-drafts] QPACK Required Insert Count decoding pseudocode does not enforce that encoding is valid (#2892)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d27d6d962632_76a93f90a0acd968208124c"; 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/v0gpCyDZvKUkqVrl-CEKz11_Yyc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 00:39:57 -0000

----==_mimepart_5d27d6d962632_76a93f90a0acd968208124c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Consider the following example:
MaxEntries = 8
TotalNumberOfInserts = 4
EncInsertCount = 1

Applying the decoder pseudocode yields ReqInsertCount = 0 without signalling an error.  However, the encoder should have encoded that as EncInsertCount = 0, therefore the decoder should signal an error according to the text: "If the decoder encounters a value of EncodedInsertCount that could not have been produced by a conformant encoder, it MUST treat this as a connection error of type HTTP_QPACK_DECOMPRESSION_FAILED."

The text is considered normative and the pseudocode is not.  To help decoder implementations be conformant, the pseudocode should be updated to signal an error in this case.  Adding the following two lines would be a correct solution:

    if ReqInsertCount == 0:
      Error

However, this introduces an extra branch.  It would be nice to find a more elegant decoding algorithm.

-- 
You are receiving 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/2892
----==_mimepart_5d27d6d962632_76a93f90a0acd968208124c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Consider the following example:<br>
MaxEntries = 8<br>
TotalNumberOfInserts = 4<br>
EncInsertCount = 1</p>
<p>Applying the decoder pseudocode yields ReqInsertCount = 0 without signalling an error.  However, the encoder should have encoded that as EncInsertCount = 0, therefore the decoder should signal an error according to the text: "If the decoder encounters a value of EncodedInsertCount that could not have been produced by a conformant encoder, it MUST treat this as a connection error of type HTTP_QPACK_DECOMPRESSION_FAILED."</p>
<p>The text is considered normative and the pseudocode is not.  To help decoder implementations be conformant, the pseudocode should be updated to signal an error in this case.  Adding the following two lines would be a correct solution:</p>
<pre><code>if ReqInsertCount == 0:
  Error
</code></pre>
<p>However, this introduces an extra branch.  It would be nice to find a more elegant decoding algorithm.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2892?email_source=notifications&amp;email_token=AFTOJK7HDT27ONU7527M6XTP67HFTA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YMUAA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3AKPF7DJCB4GQWTALP67HFTANCNFSM4IB3ZMTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK74FV2MQ4UDYXWAFQLP67HFTA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YMUAA.gif" height="1" width="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/2892?email_source=notifications\u0026email_token=AFTOJK7HDT27ONU7527M6XTP67HFTA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YMUAA",
"url": "https://github.com/quicwg/base-drafts/issues/2892?email_source=notifications\u0026email_token=AFTOJK7HDT27ONU7527M6XTP67HFTA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G6YMUAA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d27d6d962632_76a93f90a0acd968208124c--


From nobody Thu Jul 11 17:51:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 682C4120155 for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 17:51:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZqNYnYzC0cwT for <quic-issues@ietfa.amsl.com>; Thu, 11 Jul 2019 17:51: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 6C8C012011B for <quic-issues@ietf.org>; Thu, 11 Jul 2019 17:51:17 -0700 (PDT)
Date: Thu, 11 Jul 2019 17:51:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562892676; bh=3ckQFBbodJrRdoeEifzeXs4J1nPOyMEtj7dh6KbYqYQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gCQ/5rWrmd84BoH/hi8UTfX3gTNtaJQzfxURQeMrt3Ge4aR+4u/ochMuz46gP5SFK K/ikzLgrDSe/HBWp3Esjn7KS7XUvn1es8QrTAP31KPL+kV4EsJSWY2gZ0A0XHnYg4Q mIX5fqrwxLMHGRwQs7VCvohPk0j9tSGTLu1W2I1w=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FZ7KJ2Z3UOACJJDF3GUGAJEVBNHHBXWDFAA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2892/510703676@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2892@github.com>
References: <quicwg/base-drafts/issues/2892@github.com>
Subject: Re: [quicwg/base-drafts] QPACK Required Insert Count decoding pseudocode does not enforce that encoding is valid (#2892)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d27d98421abf_4c1e3f9c9bacd95c27658f9"; 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/ZAIsp1HkNfWauB9X7rKAucsMTNc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 00:51:20 -0000

----==_mimepart_5d27d98421abf_4c1e3f9c9bacd95c27658f9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Another bogus encoder output is:
MaxEntries = 8
TotalNumberOfInserts = 8
EncInsertCount = 1

Now MaxValue = 16, MaxWrapped = 16, so `if ReqInsertCount > MaxValue` branch is hit.  ReqInsertCount ends up being 0, just like above, so EncInsertCount should have been 0.  This particular case can be handled by replacing `if ReqInsertCount < FullRange` by `if ReqInsertCount <= FullRange`, but this does not fix the first test case 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/issues/2892#issuecomment-510703676
----==_mimepart_5d27d98421abf_4c1e3f9c9bacd95c27658f9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Another bogus encoder output is:<br>
MaxEntries = 8<br>
TotalNumberOfInserts = 8<br>
EncInsertCount = 1</p>
<p>Now MaxValue = 16, MaxWrapped = 16, so <code>if ReqInsertCount &gt; MaxValue</code> branch is hit.  ReqInsertCount ends up being 0, just like above, so EncInsertCount should have been 0.  This particular case can be handled by replacing <code>if ReqInsertCount &lt; FullRange</code> by <code>if ReqInsertCount &lt;= FullRange</code>, but this does not fix the first test case above.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2892?email_source=notifications&amp;email_token=AFTOJKYVPBEVRMLJDGGL5V3P67IQJA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZYLQPA#issuecomment-510703676">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WNZRWE3JUIUZUJIDP67IQJANCNFSM4IB3ZMTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4QYBNBXXB5JWKUIV3P67IQJA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZYLQPA.gif" height="1" width="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/2892?email_source=notifications\u0026email_token=AFTOJKYVPBEVRMLJDGGL5V3P67IQJA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZYLQPA#issuecomment-510703676",
"url": "https://github.com/quicwg/base-drafts/issues/2892?email_source=notifications\u0026email_token=AFTOJKYVPBEVRMLJDGGL5V3P67IQJA5CNFSM4IB3ZMTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZYLQPA#issuecomment-510703676",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d27d98421abf_4c1e3f9c9bacd95c27658f9--


From nobody Fri Jul 12 13:52:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 60136120167 for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:52:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 YUOWTVcgjVfg for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:52: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 7A43812006B for <quic-issues@ietf.org>; Fri, 12 Jul 2019 13:52:47 -0700 (PDT)
Date: Fri, 12 Jul 2019 13:52:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562964765; bh=T3CuKeSK2xKCPwmMQN8Jqr/x7jLbF5ByChClqmI7J1U=; h=Date:From:To:Subject:From; b=qtNSLII6p2WG2ANo6MsVMKXQtNg3p8z8jlGUHk5zXoHrUgeRD8WGlleu4BtAJqaGU rTVzhg8hPYEOTyhZOBclRA2P9aZ/Kss8oxfdStm/gkn9WJPyEfVF83o4Ys+JoTt4WQ YG5J1llEyVjiQWhHPV7SJ6ipgI+l5H8s0/5ptNDQ=
From: Dmitri Tikhonov <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/8791dd-212169@github.com>
Subject: [quicwg/base-drafts] 212169: qpack: fix reference to blocked-streams 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/IwU4wHbzst_cKxIu3y5euS-_mcg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 20:52:49 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 212169ad443ebd496c4b0452fefd1223d5c9c13d
      https://github.com/quicwg/base-drafts/commit/212169ad443ebd496c4b0452fefd1223d5c9c13d
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2019-07-12 (Fri, 12 Jul 2019)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  qpack: fix reference to blocked-streams section



From nobody Fri Jul 12 13:53:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 62931120167 for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:52:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JJMQ7c8qBt6X for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:52:55 -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 61BE91201DC for <quic-issues@ietf.org>; Fri, 12 Jul 2019 13:52:55 -0700 (PDT)
Date: Fri, 12 Jul 2019 13:52:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562964774; bh=NQiFCwhRohdR2Evh3UkhDr6e0OOQCBQYnbvBNpnV8WM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uo+H5DOdjZNEj9Y819W4Locbktotywh7OLBABi4oDW4mtlhKaNga5fzr23uBc2kx0 Jp9tmUoMid+0oXxT7hIPdOhDwSRnCDlL5PamdcaPh566VCC9RnNTxZXTM/P9CKuK3R solWvf7YkU4mpG/Q7sm6xZ4nPiRBPQQ6TDD/UdLw=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYRJQT5WJR4SNOVR2V3GYS2NEVBNHHBXWBNLI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2891/issue_event/2480167270@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2891@github.com>
References: <quicwg/base-drafts/pull/2891@github.com>
Subject: Re: [quicwg/base-drafts] qpack: fix reference to blocked-streams section (#2891)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d28f32653872_49d53f84f80cd96c537984"; 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/uGxVdo5UzfUdJvSumawknt2wPQI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 20:52:58 -0000

----==_mimepart_5d28f32653872_49d53f84f80cd96c537984
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2891 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/2891#event-2480167270
----==_mimepart_5d28f32653872_49d53f84f80cd96c537984
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467152218" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2891" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2891/hovercard" href="https://github.com/quicwg/base-drafts/pull/2891">#2891</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/2891?email_source=notifications&amp;email_token=AFTOJKYFQQB6DFWOIFFQQC3P7DVKNA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPKFSZQ#event-2480167270">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJ4HWWB7T372PGFKDP7DVKNANCNFSM4IBZKZDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4NPLMNYOU4HNMKJTDP7DVKNA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPKFSZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2891?email_source=notifications\u0026email_token=AFTOJKYFQQB6DFWOIFFQQC3P7DVKNA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPKFSZQ#event-2480167270",
"url": "https://github.com/quicwg/base-drafts/pull/2891?email_source=notifications\u0026email_token=AFTOJKYFQQB6DFWOIFFQQC3P7DVKNA5CNFSM4IBZKZDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPKFSZQ#event-2480167270",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d28f32653872_49d53f84f80cd96c537984--


From nobody Fri Jul 12 13:54:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1DFBB120331 for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:54:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id juDipSn1xEAF for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:54: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 2E10D1201DC for <quic-issues@ietf.org>; Fri, 12 Jul 2019 13:54:07 -0700 (PDT)
Date: Fri, 12 Jul 2019 13:54:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562964845; bh=gQMoYmz10cDYqC7slKFwTsR8sif2zgIa3OfHm1DkZr4=; h=Date:From:To:Subject:From; b=gXp5incQNVPlfMNL1gRByDEjExacmq4ydAbUcUlV2mCPWYEGKdN1N+2i576gk1DAa +4L7+wbz+9QmcsvuFDDl7K2UQ2Upe/t3o3y8a9VUr0oY4cdAlT29ChA/mf2KscuIrV chIt8wXtnjb4F7gQGFU7fmkGCjdP7MUh86aUOOEw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c783a9-137c6b@github.com>
Subject: [quicwg/base-drafts] 137c6b: Script updating gh-pages from 212169ad. [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/RVVhfKqLtbV9aI60-dmYmFYoSp8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 20:54:09 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 137c6b2179398a7be80eb94900873cd518d592a6
      https://github.com/quicwg/base-drafts/commit/137c6b2179398a7be80eb94900873cd518d592a6
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-12 (Fri, 12 Jul 2019)

  Changed paths:
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-http.html
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-http.txt
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-invariants.html
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-invariants.txt
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-qpack.html
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-qpack.txt
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-recovery.html
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-recovery.txt
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-tls.html
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-tls.txt
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-transport.html
    R DaanDeMeyer-specify-data-before-headers-error/draft-ietf-quic-transport.txt
    R DaanDeMeyer-specify-data-before-headers-error/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 same-ch-retry/draft-ietf-quic-http.html
    R same-ch-retry/draft-ietf-quic-http.txt
    R same-ch-retry/draft-ietf-quic-invariants.html
    R same-ch-retry/draft-ietf-quic-invariants.txt
    R same-ch-retry/draft-ietf-quic-qpack.html
    R same-ch-retry/draft-ietf-quic-qpack.txt
    R same-ch-retry/draft-ietf-quic-recovery.html
    R same-ch-retry/draft-ietf-quic-recovery.txt
    R same-ch-retry/draft-ietf-quic-tls.html
    R same-ch-retry/draft-ietf-quic-tls.txt
    R same-ch-retry/draft-ietf-quic-transport.html
    R same-ch-retry/draft-ietf-quic-transport.txt
    R same-ch-retry/index.html

  Log Message:
  -----------
  Script updating gh-pages from 212169ad. [ci skip]



From nobody Fri Jul 12 13:56:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1D79E120331 for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:56:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RjbrgBRsZS1E for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 13:56:08 -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 6BE901201DC for <quic-issues@ietf.org>; Fri, 12 Jul 2019 13:56:08 -0700 (PDT)
Date: Fri, 12 Jul 2019 13:56:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562964967; bh=cnxq6EZcTTD2f2OvbikQJ1z8wjU7QEQnO58NgL7JRik=; h=Date:From:To:Subject:From; b=BEAEmYfO6ECqirCmNdPBQNrRkW05xhuwYEEpfd/MhZOfD5LHi8i9IlcmXsZ4zu1F2 sKjvTlXZ7/jGPbIZSOXgGmbMol/9RdR7klC19nYnRdoYKbzFSMGJWxAQby2QvD0I7A 9+jwm41p7tvA4sQCXMzZ/nwUMFQFsnTXTKHSRlN4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/137c6b-e0a3ed@github.com>
Subject: [quicwg/base-drafts] e0a3ed: Script updating issues at 2019-07-12T20:55:59Z. [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/6sOzvEbMoCvCsGXyAPwLJF0odUw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 20:56:10 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e0a3edd3bb8912f0645925b0d2576c425e596e14
      https://github.com/quicwg/base-drafts/commit/e0a3edd3bb8912f0645925b0d2576c425e596e14
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-12 (Fri, 12 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-12T20:55:59Z. [ci skip]



From nobody Fri Jul 12 15:43:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3D09F120147 for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 15:43:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, 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 dRwRcacSyljK for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 15:43:06 -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 9131312009E for <quic-issues@ietf.org>; Fri, 12 Jul 2019 15:43:06 -0700 (PDT)
Date: Fri, 12 Jul 2019 15:43:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562971384; bh=2Yz1rc9zz00WV+uY/1CHPKfb/+F27NuIu7YpVDi9zZw=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=u4Suq6xXoiygGJN1pP+Iv+4ejwJWrX9unPy+PBm5ETAC6sC7WE9G8QUojkiA6M5Xw 1FBqQZqd7WYg02bRsuaDLgeRNtgSdVvNNcxb+B10vE5E5wMPfkgUoriN1oS27BQxFS L5eQObTu6A6cuFPtr4FkWZqwJkp22kcQAv0I4Css=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73ICM3Q5V26RTZAKV3GY7XREVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893@github.com>
Subject: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d290cf896450_306d3fdc2b4cd96011846f1"; 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/AUC7HomvIyc9kOK9CYPcXqPuiww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 22:43:09 -0000

----==_mimepart_5d290cf896450_306d3fdc2b4cd96011846f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Remove connection error response to a packets from a different source address when an endpoint has sent `disable_migration`, clarify an endpoints options when prohibited packets are received, rename `disable_migration` to `disable_active_migration`, and remove `INVALID_MIGRATION` error code.

Closes #2342, #2389.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2893

-- Commit Summary --

  * Remove connection error response to a packets from a different source address when an endpoint has sent disable_migration, clarify an endpoints options when prohibited packets are received, rename disable_migration to disable_active_migration, and remove INVALID_MIGRATION error code.
  * Rewrap long line

-- File Changes --

    M draft-ietf-quic-transport.md (54)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2893.patch
https://github.com/quicwg/base-drafts/pull/2893.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/2893

----==_mimepart_5d290cf896450_306d3fdc2b4cd96011846f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Remove connection error response to a packets from a different source address when an endpoint has sent <code>disable_migration</code>, clarify an endpoints options when prohibited packets are received, rename <code>disable_migration</code> to <code>disable_active_migration</code>, and remove <code>INVALID_MIGRATION</code> error code.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2342.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="400389101" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2342" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2342/hovercard" href="https://github.com/quicwg/base-drafts/issues/2342">#2342</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="404633768" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2389" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2389/hovercard" href="https://github.com/quicwg/base-drafts/issues/2389">#2389</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/2893'>https://github.com/quicwg/base-drafts/pull/2893</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove connection error response to a packets from a different source address when an endpoint has sent disable_migration, clarify an endpoints options when prohibited packets are received, rename disable_migration to disable_active_migration, and remove INVALID_MIGRATION error code.</li>
  <li>Rewrap long line</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2893/files#diff-0">draft-ietf-quic-transport.md</a>
    (54)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2893.patch'>https://github.com/quicwg/base-drafts/pull/2893.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2893.diff'>https://github.com/quicwg/base-drafts/pull/2893.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/2893?email_source=notifications&amp;email_token=AFTOJK4VNNTD4BZJ6JHFWULP7ECHRA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G67NHUQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK624K4FDK7SEQJLYQ3P7ECHRANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ZWB7I4KCDV66V7YDP7ECHRA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G67NHUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK4VNNTD4BZJ6JHFWULP7ECHRA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G67NHUQ",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK4VNNTD4BZJ6JHFWULP7ECHRA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G67NHUQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d290cf896450_306d3fdc2b4cd96011846f1--


From nobody Fri Jul 12 15:46:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0152D120147 for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 15:46:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4voYzPt7YNsx for <quic-issues@ietfa.amsl.com>; Fri, 12 Jul 2019 15:46: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 DF6C712009E for <quic-issues@ietf.org>; Fri, 12 Jul 2019 15:46:36 -0700 (PDT)
Date: Fri, 12 Jul 2019 15:46:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1562971595; bh=sPOUUV83JC4goHGiCYIJoYL5fGS4x6C4MNMRS3/4acw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OIRxDusA7pi0ozxc/J+Oj2ePy5ovdHgW3g/xZxAtH8oCJk9gR2DLPx1LeZ6miXSu9 5agRLkfx69PipexwzsQpyMyHdbJezeqB3qP/9LRSTsy2w9rwacFHUcHrCwPmlBnypZ EG8774g5Wr1Hzv4gGfZ028+OKLqw0qNEiwohjdRI=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK553YYDH24KE6HUOXF3GZAEXEVBNHHBOSK35E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2143/511055734@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2143@github.com>
References: <quicwg/base-drafts/issues/2143@github.com>
Subject: Re: [quicwg/base-drafts] Be more conservative about migration? (#2143)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d290dcb70bb6_51f13f84f80cd96c3189058"; 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/J-zzurlkOCZ8KO4lqveIQhPLKzQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 12 Jul 2019 22:46:39 -0000

----==_mimepart_5d290dcb70bb6_51f13f84f80cd96c3189058
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Just to clarify what text I'm adding here, this is documenting our security stance towards attacks against migration, which things we think should be possible and which things we think should not be possible. (Which ekr can continue on into a section for QUIC in general.)

-- 
You are receiving 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/2143#issuecomment-511055734
----==_mimepart_5d290dcb70bb6_51f13f84f80cd96c3189058
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Just to clarify what text I'm adding here, this is documenting our security stance towards attacks against migration, which things we think should be possible and which things we think should not be possible. (Which ekr can continue on into a section for QUIC in general.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2143?email_source=notifications&amp;email_token=AFTOJK5LE55SJXPZYK3PSBLP7ECUXA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ3BO5Q#issuecomment-511055734">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6EBNLQ6W2BDAPUIBTP7ECUXANCNFSM4GKGTPSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ43JEWXZ2XZESM2ELP7ECUXA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ3BO5Q.gif" height="1" width="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/2143?email_source=notifications\u0026email_token=AFTOJK5LE55SJXPZYK3PSBLP7ECUXA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ3BO5Q#issuecomment-511055734",
"url": "https://github.com/quicwg/base-drafts/issues/2143?email_source=notifications\u0026email_token=AFTOJK5LE55SJXPZYK3PSBLP7ECUXA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ3BO5Q#issuecomment-511055734",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d290dcb70bb6_51f13f84f80cd96c3189058--


From nobody Sat Jul 13 04:00:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BAB7F120103 for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:00:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id r54aM-pRrpV0 for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:00:03 -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 0A7B7120090 for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:00:02 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:00:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563015601; bh=ymAdbSxQJtKs+CmYofB//sC7vRJvpI8FlYaeZ2aEbnA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=l5KtmxOc9lmfrokmfZdpgxQd5Y2QfhYLB/HRh1xwqefDsywKTyX6rSPbP9hshmtPA 6LQKVpwRt/zEr+XQpR7kA823+anuMOcSIVl3YBFljsJCTJ/jvudsiGoYl0JpyQ2PLA D0cEYPCZ/N+FimGmj3WR3y0F+7FluvifDQcEwAg0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JGWXHJ27QNYVUHNF3G3WDDEVBNHHBXYFAF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2894@github.com>
Subject: [quicwg/base-drafts] In Initial and Handshake packets, knowing undecryptable packets could accelerate handshakes with loss (#2894)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d29b9b16861a_2fe43ff6a96cd95c10706d4"; 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/EO_xHapdHEMXO9Xr6dh72ieOvSc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:00:06 -0000

----==_mimepart_5d29b9b16861a_2fe43ff6a96cd95c10706d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Currently Initial and Handshake packets include ACK frames, but the ack_delay is now unused when ACK frames are sent at those encryption levels.  We still have the ack_delay field, it just has no meaning and SHOULD be set to 0.
https://tools.ietf.org/html/draft-ietf-quic-transport-22#section-19.3

We could use the field to represent the number of undecryptable packets.  If we also changed the ack frame to allow 0 ack ranges(see below), then we could indicate a packet was received, but it was undecryptable early in the handshake.

This provides a richer signal than the previously proposed EMPTY_ACK frame, but should be optional to support in my opinion.  ie: The handshake will never rely on this field.

I expect this could be very useful for debugging as well.

Current Ack Frame format:

  0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                     Largest Acknowledged (i)                ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                          ACK Delay (i)                      ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                       ACK Range Count (i)                   ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                       First ACK Range (i)                   ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                          ACK Ranges (*)                     ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                          [ECN Counts]                       ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+


Proposed ACK frame format(so 0 ranges can be represented):
  0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                     ACK Delay / Undecryptable Packets (i)            ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                       ACK Range Count (i)                   ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                          ACK Ranges (*)                     ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                          [ECN Counts]                       ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

I thought removing Largest Acknowledged would be referenced elsewhere in the draft, but I can't find it anywhere else in transport, so that's not an issue.

If this seems like an idea people want to punt to v2, I'm fine with that, but I think it's worth considering.

-- 
You are receiving 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/2894
----==_mimepart_5d29b9b16861a_2fe43ff6a96cd95c10706d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Currently Initial and Handshake packets include ACK frames, but the ack_delay is now unused when ACK frames are sent at those encryption levels.  We still have the ack_delay field, it just has no meaning and SHOULD be set to 0.<br>
<a href="https://tools.ietf.org/html/draft-ietf-quic-transport-22#section-19.3" rel="nofollow">https://tools.ietf.org/html/draft-ietf-quic-transport-22#section-19.3</a></p>
<p>We could use the field to represent the number of undecryptable packets.  If we also changed the ack frame to allow 0 ack ranges(see below), then we could indicate a packet was received, but it was undecryptable early in the handshake.</p>
<p>This provides a richer signal than the previously proposed EMPTY_ACK frame, but should be optional to support in my opinion.  ie: The handshake will never rely on this field.</p>
<p>I expect this could be very useful for debugging as well.</p>
<p>Current Ack Frame format:</p>
<p>0                   1                   2                   3<br>
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                     Largest Acknowledged (i)                ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                          ACK Delay (i)                      ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                       ACK Range Count (i)                   ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                       First ACK Range (i)                   ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                          ACK Ranges (*)                     ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                          [ECN Counts]                       ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</p>
<p>Proposed ACK frame format(so 0 ranges can be represented):<br>
0                   1                   2                   3<br>
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                     ACK Delay / Undecryptable Packets (i)            ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                       ACK Range Count (i)                   ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                          ACK Ranges (*)                     ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<br>
|                          [ECN Counts]                       ...<br>
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</p>
<p>I thought removing Largest Acknowledged would be referenced elsewhere in the draft, but I can't find it anywhere else in transport, so that's not an issue.</p>
<p>If this seems like an idea people want to punt to v2, I'm fine with that, but I think it's worth considering.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2894?email_source=notifications&amp;email_token=AFTOJK3QVSZGUUEFZC4YSOLP7GYTDA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AUAXQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4Y72NLFSMN7OCCJD3P7GYTDANCNFSM4IC25IVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2X3JNDOGNSLCIFG63P7GYTDA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AUAXQ.gif" height="1" width="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/2894?email_source=notifications\u0026email_token=AFTOJK3QVSZGUUEFZC4YSOLP7GYTDA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AUAXQ",
"url": "https://github.com/quicwg/base-drafts/issues/2894?email_source=notifications\u0026email_token=AFTOJK3QVSZGUUEFZC4YSOLP7GYTDA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AUAXQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d29b9b16861a_2fe43ff6a96cd95c10706d4--


From nobody Sat Jul 13 04:18:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A6F9D1201E5 for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:18:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MEyALWnUrxVH for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:18: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 4CD7A1201DA for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:18:33 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:18:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563016712; bh=T6fH/4kgXZxn3Y6pVmx4FNqFrsdhBBdBHO92QHmndsE=; h=Date:From:To:Subject:From; b=A+iOfId4KOFEChDTxoub98EHG1sPC0eWRBa9BQdKbYrB7CDXGWPGP9ZLgAhrx8fJO uYnVRToZRTCHU2pD3ibxC1cEVOBB5cwTdzb3ltAGw/dTpGbHEttVVSheynOPM9Qefd wLOPcq4VYsJIUwgnWPtK/jt+j3XoB//79pUKwPSM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-merge-cto-pto/fb1f32-d3adee@github.com>
Subject: [quicwg/base-drafts] d3adee: Ryan's suggestion
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S5ppmZAKUKOb1CmR337AM3HSdho>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:18:35 -0000

  Branch: refs/heads/ianswett-merge-cto-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8
      https://github.com/quicwg/base-drafts/commit/d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-13 (Sat, 13 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Ryan's suggestion



From nobody Sat Jul 13 04:18:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E1F3B1201DA for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:18:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lvMRIy1FXtWe for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:18: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 18D7C12019F for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:18:41 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:18:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563016719; bh=mg9KnsHVQLyDCWlCQ1Zem8SaI191UtTV6YSEwHRRCOU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NwcMgf/z3Wiqx5jzfmKETuYj0ZwLp+YWrnDFtRGiR6PiUqZnl2Q85y8x2pjmYPmo+ 03MBViBsl38wrG9pv/hvakaqnV+VVYRfBccvQXiZljLLbfnFsK0eVnBZXEljLTh7Lm KwU7Z73nw0o/blOwC6mxaBP2Cs70jsNb9ZNlJy7A=
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/2806/push/3813181780@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d29be0f9228c_4d8f3fb184ecd96462318b"; 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/iBFjySn4-Dhk2YnSq7DmT3gA3Ds>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:18:43 -0000

----==_mimepart_5d29be0f9228c_4d8f3fb184ecd96462318b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8  Ryan's suggestion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2806/files/fb1f327239d8bc3a8c886c482336a85d0e0a73f1..d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8

----==_mimepart_5d29be0f9228c_4d8f3fb184ecd96462318b
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/d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8">d3adee4</a>  Ryan&#39;s suggestion</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/2806/files/fb1f327239d8bc3a8c886c482336a85d0e0a73f1..d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8?email_source=notifications&amp;email_token=AFTOJK5MXPAMQXCOG3YWM6TP7G2Y7A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTHAYTGMJYGE3TQMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ENAXRAVTHWH7627DP7G2Y7ANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7VDBQRXJQASSAWOZTP7G2Y7A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTHAYTGMJYGE3TQMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806/files/fb1f327239d8bc3a8c886c482336a85d0e0a73f1..d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8?email_source=notifications\u0026email_token=AFTOJK5MXPAMQXCOG3YWM6TP7G2Y7A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTHAYTGMJYGE3TQMA",
"url": "https://github.com/quicwg/base-drafts/pull/2806/files/fb1f327239d8bc3a8c886c482336a85d0e0a73f1..d3adee48beb3b2ad53336c7bdb8ab1f835c8ecc8?email_source=notifications\u0026email_token=AFTOJK5MXPAMQXCOG3YWM6TP7G2Y7A5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4DSNJRHE2DEOKQOVZWQIZTHAYTGMJYGE3TQMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d29be0f9228c_4d8f3fb184ecd96462318b--


From nobody Sat Jul 13 04:19:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 09C951201DA for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:19:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Y2wAreYZ6Ovb for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:19:48 -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 655C912019F for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:19:48 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:19:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563016787; bh=AtUPnsoCXcOCSkpd7aQG6E5zRsiOP/UXjCRTnyYcYQ0=; h=Date:From:To:Subject:From; b=jx0DbkhgFItzL730ENeJBezVnd5E0aG2I9bkO0DQEO1XqvKlqcCSwvHRSr4A6O2Wh XWEnpQM1xnuCW9EVzAGkSNK4rxOygstJm0T3iOnmgVo4LdxZp0tKOZUg+/4TS9BB/+ yr3wQ4WAo6AY8Macaq+C4brsaHFWmskFPCTycGlM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e0a3ed-afa15f@github.com>
Subject: [quicwg/base-drafts] afa15f: Script updating gh-pages from d3adee48. [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/j8wLo3ZIrzjg3vM-hMXx1q2DeQY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:19:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: afa15ff737f268954b1599aa0aaedfd4f30d76fe
      https://github.com/quicwg/base-drafts/commit/afa15ff737f268954b1599aa0aaedfd4f30d76fe
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-13 (Sat, 13 Jul 2019)

  Changed paths:
    M ianswett-merge-cto-pto/draft-ietf-quic-http.html
    M ianswett-merge-cto-pto/draft-ietf-quic-http.txt
    M ianswett-merge-cto-pto/draft-ietf-quic-invariants.html
    M ianswett-merge-cto-pto/draft-ietf-quic-invariants.txt
    M ianswett-merge-cto-pto/draft-ietf-quic-qpack.html
    M ianswett-merge-cto-pto/draft-ietf-quic-qpack.txt
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.html
    M ianswett-merge-cto-pto/draft-ietf-quic-recovery.txt
    M ianswett-merge-cto-pto/draft-ietf-quic-tls.html
    M ianswett-merge-cto-pto/draft-ietf-quic-tls.txt
    M ianswett-merge-cto-pto/draft-ietf-quic-transport.html
    M ianswett-merge-cto-pto/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d3adee48. [ci skip]



From nobody Sat Jul 13 04:21:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DF69112019F for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:21:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i735GhDIhHsQ for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:21: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 8001112019C for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:21:36 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:21:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563016895; bh=BMB4z6nw4DDVb+eIpWzMb19dBah9GV7PYO20jM35iKk=; h=Date:From:To:Subject:From; b=O4QPdMQZFovw0Eg4vqCoT90Vtt0CHZNz9oRL2hDINonOBiWN9tSEF2jXqMfPoHjh4 5AXHgWljhY7opL1gUof5Pf2gWEp6k5uyX14ZFdbgAWNmI/SXvg67fGghWo0KYlEyoY ficYeEotH3o7CS35OYsfWEZlhUai5J1bXM5jd4vQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/afa15f-4f946e@github.com>
Subject: [quicwg/base-drafts] 4f946e: Script updating issues at 2019-07-13T11:21:28Z. [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/qutWacGrvvAT0zLnoUIYRysV1ms>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:21:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4f946e4d1e79eec4df940d2328d868fadf938863
      https://github.com/quicwg/base-drafts/commit/4f946e4d1e79eec4df940d2328d868fadf938863
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-13 (Sat, 13 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-13T11:21:28Z. [ci skip]



From nobody Sat Jul 13 04:23:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5380E12019F for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:23:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ceoMjq4YYXHi for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:23:02 -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 6859312019C for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:23:02 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:23:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563016981; bh=3TfGi+W+KYGFguuR3PpCLKIwZxp06BMl4K3gaErgZtQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I9wbyRNhFpm4mJmPFUaAAiJbu18mS+/q+FbynIh0X09r7aTwviBkkDPCyeJHo5/DT u3CJmMsygYjXUYhcqb2xAGBzhByDBr9lYZbuM49fGR1OL+zat5QH3TLWQevqOKBH3I xtMArvGpn8YA3AqmECqTzsnFBeZmBu6f591IQ1AE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XSGM2WCHX57ISSB53G3YZLEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/261537548@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d29bf1554a9d_3b523fef412cd95c292961"; 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/K2Y0h8HILzE5XXkB_zqU1dZSkZ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:23:05 -0000

----==_mimepart_5d29bf1554a9d_3b523fef412cd95c292961
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.

Thanks Ryan, I took your editorial suggestion, I can file an issue for the last comment.

>  ## Probe Timeout {#pto}
 
-A Probe Timeout (PTO) triggers a probe packet when ack-eliciting data is in
-flight but an acknowledgement is not received within the expected period of
-time.  A PTO enables a connection to recover from loss of tail packets or acks.
-The PTO algorithm used in QUIC implements the reliability functions of Tail Loss
-Probe {{?TLP=I-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}}, RTO {{?RFC5681}} and
+A Probe Timeout (PTO) triggers sending one or two probe packets when

It's 1 or 2 because some impls only do 1 packet PTO(TLP).  I could recommend two packets during the handshake, in order to speed handshake completion?

It actually should be datagrams, but I'm inclined to change that in a follow-up, rather that burying it in this change?

> +data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an
+acknowledgement, they may never be acknowledged, but they are removed from
+bytes in flight when the client gets Handshake keys and the Initial keys are
+discarded.

True, we recommend that elsewhere.  I think we should change that in a follow-up though, since it's not directly related to 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/2806#pullrequestreview-261537548
----==_mimepart_5d29bf1554a9d_3b523fef412cd95c292961
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<p>Thanks Ryan, I took your editorial suggestion, I can file an issue for the last comment.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r303201681">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  ## Probe Timeout {#pto}
 
-A Probe Timeout (PTO) triggers a probe packet when ack-eliciting data is in
-flight but an acknowledgement is not received within the expected period of
-time.  A PTO enables a connection to recover from loss of tail packets or acks.
-The PTO algorithm used in QUIC implements the reliability functions of Tail Loss
-Probe {{?TLP=I-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}}, RTO {{?RFC5681}} and
+A Probe Timeout (PTO) triggers sending one or two probe packets when
</pre>
<p>It's 1 or 2 because some impls only do 1 packet PTO(TLP).  I could recommend two packets during the handshake, in order to speed handshake completion?</p>
<p>It actually should be datagrams, but I'm inclined to change that in a follow-up, rather that burying it in this change?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r303201868">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an
+acknowledgement, they may never be acknowledged, but they are removed from
+bytes in flight when the client gets Handshake keys and the Initial keys are
+discarded.
</pre>
<p>True, we recommend that elsewhere.  I think we should change that in a follow-up though, since it's not directly related to 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/2806?email_source=notifications&amp;email_token=AFTOJK2VRHSNWAOXAPM64ULP7G3JLA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LL6DA#pullrequestreview-261537548">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3G5CSJDMZLVNHI4J3P7G3JLANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4XU3GALLTLXDTCHX3P7G3JLA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LL6DA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK2VRHSNWAOXAPM64ULP7G3JLA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LL6DA#pullrequestreview-261537548",
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJK2VRHSNWAOXAPM64ULP7G3JLA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LL6DA#pullrequestreview-261537548",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d29bf1554a9d_3b523fef412cd95c292961--


From nobody Sat Jul 13 04:31:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7567C12019F for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:31:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id z4-rZMSZFJiK for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:31:23 -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 8480912019C for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:31:23 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:31:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563017482; bh=hUhFl/limyUsULHEx5CA1cE6J3U52o/OpG09PJ1T3ZU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=taDW5y3xD5MWWsK6aOSE0/ckkEjWEXy6Zru9TfaXSzQ0lHEXkcD3fhr1Wln7jg8qO Ucc3LzyO0cULETdgELQSlvnBUurq2SA+wRyupHTj5BS9/6OOT+HfmTOFp+QBK9E3f7 m66JNudsBIOLOHifzPm66wrNLeQP+RRDqOox9unA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYEZRT5FPWN7HIFNCN3G3ZYVEVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2895@github.com>
Subject: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d29c10a4952a_eb43fcaef0cd95c2660bf"; 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/pUP6u4Q78uIpjzxi0POima8gM3M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:31:26 -0000

----==_mimepart_5d29c10a4952a_eb43fcaef0cd95c2660bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

When there is nothing to send today, the text says you can send a PADDING only packet.

These packets will be removed from flight when Initial keys are dropped, but it may never be acknowledged, which loses some congestion control signal, including RTT measurements.

For PTO, we decided you always send a PING if PTO expires and there's nothing to send.  It seems like we should say the same for the handshake case now that it's part of PTO?

This came from Ryan's comment on #2806 

-- 
You are receiving 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/2895
----==_mimepart_5d29c10a4952a_eb43fcaef0cd95c2660bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>When there is nothing to send today, the text says you can send a PADDING only packet.</p>
<p>These packets will be removed from flight when Initial keys are dropped, but it may never be acknowledged, which loses some congestion control signal, including RTT measurements.</p>
<p>For PTO, we decided you always send a PING if PTO expires and there's nothing to send.  It seems like we should say the same for the handshake case now that it's part of PTO?</p>
<p>This came from Ryan's comment on <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</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/2895?email_source=notifications&amp;email_token=AFTOJK25NE7NF4A22S5GGQLP7G4IVA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AVLNA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72RD2ASAQWBNBDV43P7G4IVANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYKTKLTD4XVB2SJYOLP7G4IVA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AVLNA.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJK25NE7NF4A22S5GGQLP7G4IVA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AVLNA",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJK25NE7NF4A22S5GGQLP7G4IVA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7AVLNA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d29c10a4952a_eb43fcaef0cd95c2660bf--


From nobody Sat Jul 13 04:31:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 90E7312019F for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04:31:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lfi2i8sfvWnJ for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 04: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 A865012019C for <quic-issues@ietf.org>; Sat, 13 Jul 2019 04:31:51 -0700 (PDT)
Date: Sat, 13 Jul 2019 04:31:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563017510; bh=PirVb1C35ie4qrUVKBBbt2scspHMHda2ur1u2kFmRnM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nALY0q5vN41vqlkVYe3affcbjSjhNy+7qmzZGcBdiVHWMO2MYqdMpSi1nxzRxeH+d YNtGG83+eTY7JICt5LbBm+vI8EAGwfie4D2xEndIAReApsETIMRW/pAs6Y4jnBW0Vh uySr1Tllyxrw95CnWsgmxSPu5KfQdWRRg1P1x1E0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46O5Z4ZGNODKYMDCF3G3Z2NEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/review/261538153@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d29c12664459_4b8c3f8042acd96839749d"; 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/AJ1vbKMZyZmuT24AsHXz-iRUvfQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Jul 2019 11:31:54 -0000

----==_mimepart_5d29c12664459_4b8c3f8042acd96839749d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> +data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an
+acknowledgement, they may never be acknowledged, but they are removed from
+bytes in flight when the client gets Handshake keys and the Initial keys are
+discarded.

#2895 filed

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2806#discussion_r303202308
----==_mimepart_5d29c12664459_4b8c3f8042acd96839749d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2806#discussion_r303202308">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
+data has been received from the client.
+
+Because the server could be blocked until more packets are received, the client
+MUST ensure that the retransmission timer is set if the client does not yet
+have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
+it is possible that the client may not have any crypto data to retransmit.
+However, the client MUST send a new packet, containing only PADDING frames if
+necessary, to allow the server to continue sending data. If Handshake keys
+are available to the client, it MUST send a Handshake packet, and otherwise
+it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+
+Because Initial packets only containing PADDING do not elicit an
+acknowledgement, they may never be acknowledged, but they are removed from
+bytes in flight when the client gets Handshake keys and the Initial keys are
+discarded.
</pre>
<p><a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467708634" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2895" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2895/hovercard" href="https://github.com/quicwg/base-drafts/issues/2895">#2895</a> filed</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications&amp;email_token=AFTOJKZXYILZ5TWNKG5LZYDP7G4KNA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LMC2I#discussion_r303202308">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYRTFL2KFRE2HMG6T3P7G4KNANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZXRIUXXUMM2STQNCLP7G4KNA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LMC2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJKZXYILZ5TWNKG5LZYDP7G4KNA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LMC2I#discussion_r303202308",
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJKZXYILZ5TWNKG5LZYDP7G4KNA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6LMC2I#discussion_r303202308",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d29c12664459_4b8c3f8042acd96839749d--


From nobody Sat Jul 13 23:19:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 20EE01201E4 for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 23:19:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id C41n7fI7-B1A for <quic-issues@ietfa.amsl.com>; Sat, 13 Jul 2019 23:19: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 2BAC31201DD for <quic-issues@ietf.org>; Sat, 13 Jul 2019 23:19:20 -0700 (PDT)
Date: Sat, 13 Jul 2019 23:19:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563085159; bh=w5YnkBZ0hG+8n9++g2njhjiHDRsuAS/tQyh5sV6faGM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=B3+6MK9WNqtpMEZYGVEZf3PEqsNI7tXUMHG0tdid4Odo67X2D/S0o5rgleGjJnNYA PfCKiLXXCbAFjHgJ+Ze5/ZUN9Ho+3PFaL05PNv/smu4Kiw6VjeZUi/ofwp3uBcjbJk w0zCpofiazBi/G6NFKryHuB++2hHBqLmeEGmQScg=
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ7DOQVFY43O5MGIGN3G756PEVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/511176770@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2ac9674613c_57b53f906eecd9649880e7"; 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/p-B-R4_Zg3KLbDDnjpRBmnx-f4Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 06:19:22 -0000

----==_mimepart_5d2ac9674613c_57b53f906eecd9649880e7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If I understand the issue correctly, the problem is that server drops handshake key too early before client gets ack for its last handshake flight.  Server can ack any client Short packet without client last Handshake flight.  That means that sending any ack-eliciting 1RTT packet from client do not fix this issue.  Coalescing missing Handshake and Short packet would suffer MTU overflow as disscused in PR.
I think server has to wait for client's confirmation of handshake before confirming handshake.  It might be good idea to reconsider explicit signal again?


-- 
You are receiving 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/2863#issuecomment-511176770
----==_mimepart_5d2ac9674613c_57b53f906eecd9649880e7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If I understand the issue correctly, the problem is that server drops handshake key too early before client gets ack for its last handshake flight.  Server can ack any client Short packet without client last Handshake flight.  That means that sending any ack-eliciting 1RTT packet from client do not fix this issue.  Coalescing missing Handshake and Short packet would suffer MTU overflow as disscused in PR.<br>
I think server has to wait for client's confirmation of handshake before confirming handshake.  It might be good idea to reconsider explicit signal again?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2863?email_source=notifications&amp;email_token=AFTOJK3JVSCTP4A3UWPRQVLP7LAOPA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ37AQQ#issuecomment-511176770">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VSKXMAFYCNNS5QF3P7LAOPANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KWWYWLXKDJO4UJ6DP7LAOPA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ37AQQ.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJK3JVSCTP4A3UWPRQVLP7LAOPA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ37AQQ#issuecomment-511176770",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJK3JVSCTP4A3UWPRQVLP7LAOPA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ37AQQ#issuecomment-511176770",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2ac9674613c_57b53f906eecd9649880e7--


From nobody Sun Jul 14 15:38:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AEBD1120121 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:38:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MZeDHJIwpTu for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:38: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 1B4B212006B for <quic-issues@ietf.org>; Sun, 14 Jul 2019 15:38:01 -0700 (PDT)
Date: Sun, 14 Jul 2019 15:38:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563143880; bh=ctrgxHz5XDtxQ2SmzpnC8Zc/WpYl7BO8Smns3XqMwl0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2H/GfWXFBd0+X+Xdgz3vMaBTd02eqFmZ3neG4qegSazk7Skeh2bEM/GLsLNnuL8zX +89v9R+un1MaL9Py9DdR0Wzt3lRQ5lnT21H1BkSk+oRV2XMvmKcFGA+afhraDjDalB 7MlL8CTeWVE869vFMJO6X4mWPO2GJoG+ltgBa8co=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4WSYE73ZM3744SKHN3HDQUREVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/261602426@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2baec8f615_297e3fcf454cd96c208655"; 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/UDKHwUqsZ8jb7iEiD5r0R38AUxc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 22:38:03 -0000

----==_mimepart_5d2baec8f615_297e3fcf454cd96c208655
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -391,6 +391,15 @@ sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
 in any received 1-RTT ACK frame: once the latter is higher than or equal to the
 former, the handshake is confirmed.
 
+Note:
+
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an endpoint,
+  the handshake might never be confirmed by an endpoint.  If the peer does
+  confirm the handshake, this could result in perpetual retransmission of
+  Handshake packets, which cannot be acknowledged.  To avoid this problem, in

It's definitely packets in this case.  The content isn't relevant to the point, it's that they won't/can't be acknowledged.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881#discussion_r303264506
----==_mimepart_5d2baec8f615_297e3fcf454cd96c208655
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2881#discussion_r303264506">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -391,6 +391,15 @@ sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
 in any received 1-RTT ACK frame: once the latter is higher than or equal to the
 former, the handshake is confirmed.
 
+Note:
+
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an endpoint,
+  the handshake might never be confirmed by an endpoint.  If the peer does
+  confirm the handshake, this could result in perpetual retransmission of
+  Handshake packets, which cannot be acknowledged.  To avoid this problem, in
</pre>
<p>It's definitely packets in this case.  The content isn't relevant to the point, it's that they won't/can't be acknowledged.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications&amp;email_token=AFTOJK4QU7LK5FNE4GAMVMLP7OTERA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L3Y6Q#discussion_r303264506">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5GW4DOLMSEBQZ2JVLP7OTERANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ZQF56XFGQ6ITCA7TP7OTERA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L3Y6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4QU7LK5FNE4GAMVMLP7OTERA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L3Y6Q#discussion_r303264506",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4QU7LK5FNE4GAMVMLP7OTERA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L3Y6Q#discussion_r303264506",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2baec8f615_297e3fcf454cd96c208655--


From nobody Sun Jul 14 15:40:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 93225120158 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:40:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 c9kQIJwcgMCw for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:40:15 -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 0C31B12006B for <quic-issues@ietf.org>; Sun, 14 Jul 2019 15:40:15 -0700 (PDT)
Date: Sun, 14 Jul 2019 15:40:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563144014; bh=dvFpUmquLu0mWPl1nEgvzYmOEBW9wc7UCpeLkx6VPec=; h=Date:From:To:Subject:From; b=IpaatIxEXAcoRZSGCdJVoTOm1Tvh1qQilhpOja09BHsQYuHVeQkW3UkDjrJrvupNS QGwhae8A5X6YRd5b+FHlPTB4xKwzVeyNTQW7LVBlcrWJyRpruV4wzEGz+5uTuylKRt bhmVov/6KRpMT/aCkw0VRBmF7JxVhbdRuVbbVhn0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/795a4d-7ec975@github.com>
Subject: [quicwg/base-drafts] 7ec975: unacknowledged CRYPTO data
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SEOfUmFjByKd8Q-h53LEF9WTbF8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 22:40:17 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7ec975789ec99f28ff853961624641ea0fb06f23
      https://github.com/quicwg/base-drafts/commit/7ec975789ec99f28ff853961624641ea0fb06f23
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-15 (Mon, 15 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  unacknowledged CRYPTO data



From nobody Sun Jul 14 15:40:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 65986120158 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:40:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id S1_0qO4-5Jyg for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:40:23 -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 C868512006B for <quic-issues@ietf.org>; Sun, 14 Jul 2019 15:40:22 -0700 (PDT)
Date: Sun, 14 Jul 2019 15:40:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563144021; bh=AZhmcP9KpkG/Ypc+dHqGe62KiS0h16B+0eXICkIti2g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tUXFGMfgwtgzUrK+PtlKM8geChapacfpVv6+iTCpM/GgXVm0kalrmZMHFxiU00rHS k04e5I1VQSHAX3otWmfWXV+5dDLXeLg9Iea6H/gZM08IyNQdrJ1juF1pfJFRrIyHeg 3c9cJSHP9GIjm0KarlZ2xQOT4AdcyUiZTPlutNcI=
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/2881/push/3815567147@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2baf55d6ade_153d3fa49d8cd968170560"; 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/ByBM2RjyRyfZcDrYanRAc-_GQo0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 22:40:24 -0000

----==_mimepart_5d2baf55d6ade_153d3fa49d8cd968170560
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

7ec975789ec99f28ff853961624641ea0fb06f23  unacknowledged CRYPTO data


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881/files/795a4d98354adacf727b0e41bf8ddb70f7921644..7ec975789ec99f28ff853961624641ea0fb06f23

----==_mimepart_5d2baf55d6ade_153d3fa49d8cd968170560
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/7ec975789ec99f28ff853961624641ea0fb06f23">7ec9757</a>  unacknowledged CRYPTO data</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/2881/files/795a4d98354adacf727b0e41bf8ddb70f7921644..7ec975789ec99f28ff853961624641ea0fb06f23?email_source=notifications&amp;email_token=AFTOJK2H46KLO7NXZZO3M2DP7OTNLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAYTKNJWG4YTINY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2S37ROVH24A7NKM23P7OTNLANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK74JBUBBZCGX4LBDWDP7OTNLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAYTKNJWG4YTINY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881/files/795a4d98354adacf727b0e41bf8ddb70f7921644..7ec975789ec99f28ff853961624641ea0fb06f23?email_source=notifications\u0026email_token=AFTOJK2H46KLO7NXZZO3M2DP7OTNLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAYTKNJWG4YTINY",
"url": "https://github.com/quicwg/base-drafts/pull/2881/files/795a4d98354adacf727b0e41bf8ddb70f7921644..7ec975789ec99f28ff853961624641ea0fb06f23?email_source=notifications\u0026email_token=AFTOJK2H46KLO7NXZZO3M2DP7OTNLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAYTKNJWG4YTINY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2baf55d6ade_153d3fa49d8cd968170560--


From nobody Sun Jul 14 15:42:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0C3BD120158 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:42:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LDhzYYktU8gw for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:42:03 -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 5071E12006B for <quic-issues@ietf.org>; Sun, 14 Jul 2019 15:42:03 -0700 (PDT)
Date: Sun, 14 Jul 2019 15:42:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563144122; bh=+Ik1WcEfdZ7jNR6iJRFGZStLkHbeBvDTov2FlOMmsjE=; h=Date:From:To:Subject:From; b=rQU4JbzCTaJ8OfDZthImbTpnb2c9VwuCqF4B8SxGkbC/I4nbLYxV7WTQ8hjkWxOwn UsrdeOIMftUfMwJNhKWaFWgljRmxKEr6iH3hu4ECrbe9gSu8c0NpHh/V8uRxGXrGPs XnoTU1R/d9WqJmW1wbCN0itWfq4J39C/3iItUUe4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4f946e-caf2f6@github.com>
Subject: [quicwg/base-drafts] caf2f6: Script updating gh-pages from 7ec97578. [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/C1PljUBdFZ-ycIH31NOwhlyhoJU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 22:42:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: caf2f6dc582991829a86d605b5abb673210ccb54
      https://github.com/quicwg/base-drafts/commit/caf2f6dc582991829a86d605b5abb673210ccb54
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-14 (Sun, 14 Jul 2019)

  Changed paths:
    R ianswett-platform-delay/draft-ietf-quic-http.html
    R ianswett-platform-delay/draft-ietf-quic-http.txt
    R ianswett-platform-delay/draft-ietf-quic-invariants.html
    R ianswett-platform-delay/draft-ietf-quic-invariants.txt
    R ianswett-platform-delay/draft-ietf-quic-qpack.html
    R ianswett-platform-delay/draft-ietf-quic-qpack.txt
    R ianswett-platform-delay/draft-ietf-quic-recovery.html
    R ianswett-platform-delay/draft-ietf-quic-recovery.txt
    R ianswett-platform-delay/draft-ietf-quic-tls.html
    R ianswett-platform-delay/draft-ietf-quic-tls.txt
    R ianswett-platform-delay/draft-ietf-quic-transport.html
    R ianswett-platform-delay/draft-ietf-quic-transport.txt
    R ianswett-platform-delay/index.html
    M index.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.html
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.html
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.html
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.html
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 7ec97578. [ci skip]



From nobody Sun Jul 14 15:43:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B44C5120158 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:43:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2tH-21Xx--hX for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 15:43:56 -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 7616A12006B for <quic-issues@ietf.org>; Sun, 14 Jul 2019 15:43:56 -0700 (PDT)
Date: Sun, 14 Jul 2019 15:43:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563144235; bh=4POTsuz58KyWq57tHkqxwxe9O2WL9b/rTY/1lIaBMh4=; h=Date:From:To:Subject:From; b=O469msXjuciWx6hNtKP64H0q0fnXm8YGUM7lLtI0FDP4aY+pTzVye0qpDHb0a1SbP 1jo+33R1zy10xynZiNCYaPsbGtp9w5wT/HQFndAlOg6JoajcM5jy82LL5Ai4AKCGbP RVWWXVCB5vzoUjlCw255LTq5AH21iglE5wk8oFbk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/caf2f6-378c70@github.com>
Subject: [quicwg/base-drafts] 378c70: Script updating issues at 2019-07-14T22:43:49Z. [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/3kRbEEHLmnXgewfyVMtgxZQldJ0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 22:43:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 378c70b5ce73ff7e3c4013aac24b11b091e63ef3
      https://github.com/quicwg/base-drafts/commit/378c70b5ce73ff7e3c4013aac24b11b091e63ef3
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-14 (Sun, 14 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-14T22:43:49Z. [ci skip]



From nobody Sun Jul 14 16:57:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 61EDA1202A5 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 16:57:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 9l_5XC9C9R-o for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 16:57:56 -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 F12581202A4 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 16:57:55 -0700 (PDT)
Date: Sun, 14 Jul 2019 16:57:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563148675; bh=ms3WR3PIjgT5yqTrGlFQodKPli2PMouhKvUzu2YpMcg=; h=Date:From:To:Subject:From; b=NkV+81y2A9hBbVURuCYg+adQRh4vegDYaW1CpJdAk561GbBsUhgjxs+QBtc+EuhhT JMEmYEwAd/cEUkfGbMEL1lFVO4tz+PXMcV+Ix6dseRiaSu8OesddgpHLGyGk6tJwK6 /KA13wgwc7yrF7pjchGgsDllWucwSTxpbF9xYWsw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/issue2890/000000-5c2515@github.com>
Subject: [quicwg/base-drafts] 5c2515: Move wasteful packet stuff 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/ZaWeG_CauCdbqkDjigTnCdAeBWI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 23:57:57 -0000

  Branch: refs/heads/issue2890
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5c25156f1cd020c1dfe812841b2c24bca34280f4
      https://github.com/quicwg/base-drafts/commit/5c25156f1cd020c1dfe812841b2c24bca34280f4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-15 (Mon, 15 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Move wasteful packet stuff to -transport

Issue #2890 observes that this text mentions HTTP/2, which isn't
necessary.  In reviewwing it, I noticed that this talks about messages
that do nothing, but not really about messages that do little (or that
can be reversed to have net zero effect).  So I expanded the text a
little.

Closes #2890.



From nobody Sun Jul 14 16:59:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 011081202A4 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 16:59:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MoucQK_Z-m7p for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 16:59: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 6C2281202A1 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 16:59:10 -0700 (PDT)
Date: Sun, 14 Jul 2019 16:59:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563148749; bh=cy0z7xdD3jj9ajjJB0kztra4JxEctDtyNZtKXX4EZKo=; h=Date:From:To:Subject:From; b=1efArcUdOUn+D5+pIr02u30upMcYuD/WQ/csM7wNksS6pIokYjhT7vl0STDcKLZY2 4mFnnyYzQ8xOuLphxn1fsTC4ZilVjudaEkjjn6djb9XGKNqAZs0iFnyBwDmJCbUysy SJND+If6Z9QIpAT/Eg8r7gPfQH6f8W+6vHb030kE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/378c70-f2329f@github.com>
Subject: [quicwg/base-drafts] f2329f: Script updating gh-pages from 5c25156f. [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/XwkFonsX02B2hG8BBFC_NqvYjgc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Jul 2019 23:59:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f2329f38dd8a0e1d48fa1c7ccf8919b923bafde5
      https://github.com/quicwg/base-drafts/commit/f2329f38dd8a0e1d48fa1c7ccf8919b923bafde5
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-14 (Sun, 14 Jul 2019)

  Changed paths:
    M index.html
    A issue2890/draft-ietf-quic-http.html
    A issue2890/draft-ietf-quic-http.txt
    A issue2890/draft-ietf-quic-invariants.html
    A issue2890/draft-ietf-quic-invariants.txt
    A issue2890/draft-ietf-quic-qpack.html
    A issue2890/draft-ietf-quic-qpack.txt
    A issue2890/draft-ietf-quic-recovery.html
    A issue2890/draft-ietf-quic-recovery.txt
    A issue2890/draft-ietf-quic-tls.html
    A issue2890/draft-ietf-quic-tls.txt
    A issue2890/draft-ietf-quic-transport.html
    A issue2890/draft-ietf-quic-transport.txt
    A issue2890/index.html

  Log Message:
  -----------
  Script updating gh-pages from 5c25156f. [ci skip]



From nobody Sun Jul 14 17:00:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C5AAA1202A4 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:00:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 fJ3CRxtwn0gq for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:00: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 8B27F1202A1 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 17:00:16 -0700 (PDT)
Date: Sun, 14 Jul 2019 17:00:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563148815; bh=bO5+En65hj5DfzSR2vue/a1kc0U4g7BAjNRxlEdxLN0=; h=Date:From:To:Subject:From; b=Fvn6TowhsWw1OXPPMPOPN8SMaaqjLcq1cKFWzmvLaiXD11YNqBSYPrwWYKodq4iub s8zdZdtyGcab0VataUIxqib7nRwI+0mEU2vnsKRvckuuCgBnl4DNJRM6LtVz34W81/ fIE1eslIRVj3a8h1zjliWeTo1XpvO2yTZ9ho5NzY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/issue2890/5c2515-f29928@github.com>
Subject: [quicwg/base-drafts] f29928: Tweak language more
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ikhng2ZUiqE95b68YF8oK5pE7XQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 00:00:18 -0000

  Branch: refs/heads/issue2890
  Home:   https://github.com/quicwg/base-drafts
  Commit: f2992808f37445b69db10f7921b34562682fb5a0
      https://github.com/quicwg/base-drafts/commit/f2992808f37445b69db10f7921b34562682fb5a0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-15 (Mon, 15 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Tweak language more



From nobody Sun Jul 14 17:00:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1436B1202A4 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:00:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, 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 F24Iee4WDfEc for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:00:31 -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 5C1F91202A1 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 17:00:31 -0700 (PDT)
Date: Sun, 14 Jul 2019 17:00:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563148830; bh=LQsWI9z/mwnRz8PECrbEjLXMavMX+iFuaMUOvXg52jg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=EYJtvnJeYIYlbCxrSr88WvFOZZgS2SMh/F6wv3Im8o+zoItbsz27yxr/gKPrrDBV4 5vIosxNDEuBgZaImBjildqZBGb8JfaXE4p97noDFcpFYWj/+rhfj1zqJAP/6Bkzzhm cFuRCcIjev6idMbMj4IyqoMhjTNdHiPvPoYJI0P0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3QLVPPGYBLKCKEXAF3HD2J5EVBNHHBXY4S7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2896@github.com>
Subject: [quicwg/base-drafts] Move wasteful packet stuff to -transport (#2896)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2bc21ea0d60_d433f9260acd96018414d"; 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/G43AdABXr0PyxB2B2SWHz-ZXS-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: Mon, 15 Jul 2019 00:00:33 -0000

----==_mimepart_5d2bc21ea0d60_d433f9260acd96018414d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Issue #2890 observes that this text mentions HTTP/2, which isn't
necessary.  In reviewing it, I noticed that this talks about messages
that do nothing, but not really about messages that do little (or that
can be reversed to have net zero effect).  So I expanded the text a
little.

Closes #2890.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2896

-- Commit Summary --

  * Move wasteful packet stuff to -transport
  * Tweak language more

-- File Changes --

    M draft-ietf-quic-tls.md (14)
    M draft-ietf-quic-transport.md (25)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2896.patch
https://github.com/quicwg/base-drafts/pull/2896.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/2896

----==_mimepart_5d2bc21ea0d60_d433f9260acd96018414d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Issue <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467050141" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2890" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2890/hovercard" href="https://github.com/quicwg/base-drafts/issues/2890">#2890</a> observes that this text mentions HTTP/2, which isn't<br>
necessary.  In reviewing it, I noticed that this talks about messages<br>
that do nothing, but not really about messages that do little (or that<br>
can be reversed to have net zero effect).  So I expanded the text a<br>
little.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2890.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467050141" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2890" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2890/hovercard" href="https://github.com/quicwg/base-drafts/issues/2890">#2890</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/2896'>https://github.com/quicwg/base-drafts/pull/2896</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Move wasteful packet stuff to -transport</li>
  <li>Tweak language more</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2896/files#diff-0">draft-ietf-quic-tls.md</a>
    (14)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2896/files#diff-1">draft-ietf-quic-transport.md</a>
    (25)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2896.patch'>https://github.com/quicwg/base-drafts/pull/2896.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2896.diff'>https://github.com/quicwg/base-drafts/pull/2896.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/2896?email_source=notifications&amp;email_token=AFTOJK4445FXMDRVDZVMF2DP7O4Z5A5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7DSL5Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4Y4NTH4X4S4JN3TMDP7O4Z5ANCNFSM4IDSJVKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXL3KPJIKHYOEHNUTP7O4Z5A5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7DSL5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJK4445FXMDRVDZVMF2DP7O4Z5A5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7DSL5Q",
"url": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJK4445FXMDRVDZVMF2DP7O4Z5A5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7DSL5Q",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2bc21ea0d60_d433f9260acd96018414d--


From nobody Sun Jul 14 17:01:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DF5A01202A5 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:01:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FSvzwpl1Nhgc for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:01:38 -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 6D3951202A4 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 17:01:38 -0700 (PDT)
Date: Sun, 14 Jul 2019 17:01:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563148897; bh=b83O1VpN+fnmEMWXGDkpBKvgMFvHVoHsu0aD8So7lPY=; h=Date:From:To:Subject:From; b=m8I7FG86+ZZE6kZWIH5FYDqKY/QG8Uqx16BHoyyXMdSkufed8z9wsR4weo+nAC8De p2vhjoaFX72MAR/4nE2EJNPU7zzpcwQIQhd6BxLG39itW724GEl5wmICss/AJ+XCl8 I6gwpovql4/EBalgTJNmTJqm5v191HFhtei4Qhl4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f2329f-0fa949@github.com>
Subject: [quicwg/base-drafts] 0fa949: Script updating gh-pages from f2992808. [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/w_BlJDloA4_tiVdTLZq0yl16oTE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 00:01:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0fa9493dc010e33b0cc056e141c79deaebe66c69
      https://github.com/quicwg/base-drafts/commit/0fa9493dc010e33b0cc056e141c79deaebe66c69
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-15 (Mon, 15 Jul 2019)

  Changed paths:
    M index.html
    M issue2890/draft-ietf-quic-http.html
    M issue2890/draft-ietf-quic-http.txt
    M issue2890/draft-ietf-quic-invariants.html
    M issue2890/draft-ietf-quic-invariants.txt
    M issue2890/draft-ietf-quic-qpack.html
    M issue2890/draft-ietf-quic-qpack.txt
    M issue2890/draft-ietf-quic-recovery.html
    M issue2890/draft-ietf-quic-recovery.txt
    M issue2890/draft-ietf-quic-tls.html
    M issue2890/draft-ietf-quic-tls.txt
    M issue2890/draft-ietf-quic-transport.html
    M issue2890/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from f2992808. [ci skip]



From nobody Sun Jul 14 17:01:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3A03F1202A4 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:01:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id as42wnG1qSUb for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:01: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 9FADB1202A1 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 17:01:54 -0700 (PDT)
Date: Sun, 14 Jul 2019 17:01:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563148913; bh=KwaoZhmt+uoxZED3YpB8SIOOvFHaEbAYPwwqSsIA0P4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rjCtAZ7ib3NYy26B0pSBhMsUdB6+Yzhq+sfE50fQPJ0bCLgrHVvGi8RzCx+1IsrjF 5van1vLzgh3QIb9iUoFAUDRBWy8P4bGpq6HQC3/CYCsow48wh5z56MPuTcGABuf02Q pnumyCipIXqV0T1+3zw0gJjHCruXqn0hPHL2ENEY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5S4DUKPUYMPVZ34OV3HD2PDEVBNHHBXVU6TU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2890/511246089@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2890@github.com>
References: <quicwg/base-drafts/issues/2890@github.com>
Subject: Re: [quicwg/base-drafts] HTTP/2 in Peer Denial of Service? (#2890)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2bc271bd693_23c93fec2a6cd968410045"; 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/http1YDQI8Q8iPON1G12YYk_rJ0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 00:01:56 -0000

----==_mimepart_5d2bc271bd693_23c93fec2a6cd968410045
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That mention of h2 was a mistake.

I've made a few changes after reviewing this.

(The `{#useless}` thing is a joke.)

-- 
You are receiving 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/2890#issuecomment-511246089
----==_mimepart_5d2bc271bd693_23c93fec2a6cd968410045
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That mention of h2 was a mistake.</p>
<p>I've made a few changes after reviewing this.</p>
<p>(The <code>{#useless}</code> thing is a joke.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2890?email_source=notifications&amp;email_token=AFTOJK6J75NRXBVCBXHU7CDP7O47DA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4P6CI#issuecomment-511246089">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6S7BWDBWUHSGGSED3P7O47DANCNFSM4IBRC5OA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4TO2UCZUYNSRK6WWTP7O47DA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4P6CI.gif" height="1" width="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/2890?email_source=notifications\u0026email_token=AFTOJK6J75NRXBVCBXHU7CDP7O47DA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4P6CI#issuecomment-511246089",
"url": "https://github.com/quicwg/base-drafts/issues/2890?email_source=notifications\u0026email_token=AFTOJK6J75NRXBVCBXHU7CDP7O47DA5CNFSM4IBRC5OKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4P6CI#issuecomment-511246089",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2bc271bd693_23c93fec2a6cd968410045--


From nobody Sun Jul 14 17:08:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 723CC1202A4 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:08:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OKpFTeOrVGsk for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:08: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 681041202A1 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 17:08:55 -0700 (PDT)
Date: Sun, 14 Jul 2019 17:08:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563149334; bh=v5FWO+WaRHaPNnwziV6PskgKZ1PBH7jJakKyA8bznHU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d0gT4webON1u5JNV9SI90snDDKJuf69QXKJ5Von07Qop/LiPzMYxvbaHOtfV7fwW+ k0g2i7Y5Js0vtzePt+E7uTTlf3O3rtaLBFltHCl3voJzbFU70edZeHMrrkLcYD/8Os k/yjwGDLqaQ7l56KcNFaBiHb+Od+svjJ2xO0ZWKg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4AOLUD7KM3FQPWC6V3HD3JNEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/review/261606178@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2bc4165f22e_17b03fac40ccd96444023"; 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/Sr2-4u-GpL0qWkhLmjkQA-FlZY4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 00:08:57 -0000

----==_mimepart_5d2bc4165f22e_17b03fac40ccd96444023
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson requested changes on this pull request.

In reviewing this, and in light of the changes in #2851, I'm no longer clear on what value this transport parameter provides.  It seems like the benefit extends only to the ability to not implement path validation or providing extra connection IDs.

I don't think that we should be encouraging implementations to not implement providing of new connection IDs.  So that leaves implementing path validation.  We should probably discuss that more.

All of that need not block this change.  With the removal of that sentence, it looks good to go.

> -Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer's address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
+due to spoofed addresses or other manipulation of observed traffic. An endpoint
+MUST NOT actively initiate migration if its peer supplies a zero-length
+connection ID as packets without a Destination Connection ID cannot be
+attributed to a connection based on address tuple.

With the change in #2851, we don't need this last sentence.  The point there is that source addresses aren't allowed to be used in routing of packets, so we don't need to worry about forbidding migration in that 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/2893#pullrequestreview-261606178
----==_mimepart_5d2bc4165f22e_17b03fac40ccd96444023
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> requested changes on this pull request.</p>

<p>In reviewing this, and in light of the changes in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461188950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2851" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2851/hovercard" href="https://github.com/quicwg/base-drafts/pull/2851">#2851</a>, I'm no longer clear on what value this transport parameter provides.  It seems like the benefit extends only to the ability to not implement path validation or providing extra connection IDs.</p>
<p>I don't think that we should be encouraging implementations to not implement providing of new connection IDs.  So that leaves implementing path validation.  We should probably discuss that more.</p>
<p>All of that need not block this change.  With the removal of that sentence, it looks good to go.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2893#discussion_r303267609">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer&#39;s address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
+due to spoofed addresses or other manipulation of observed traffic. An endpoint
+MUST NOT actively initiate migration if its peer supplies a zero-length
+connection ID as packets without a Destination Connection ID cannot be
+attributed to a connection based on address tuple.
</pre>
<p>With the change in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461188950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2851" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2851/hovercard" href="https://github.com/quicwg/base-drafts/pull/2851">#2851</a>, we don't need this last sentence.  The point there is that source addresses aren't allowed to be used in routing of packets, so we don't need to worry about forbidding migration in that 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/2893?email_source=notifications&amp;email_token=AFTOJKY4ZTSV7AZRD7D4M5TP7O5ZNA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L4WIQ#pullrequestreview-261606178">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTRYMEJT4YAFNCRQLP7O5ZNANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7XBS5MZPE2BZTLHA3P7O5ZNA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L4WIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJKY4ZTSV7AZRD7D4M5TP7O5ZNA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L4WIQ#pullrequestreview-261606178",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJKY4ZTSV7AZRD7D4M5TP7O5ZNA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6L4WIQ#pullrequestreview-261606178",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2bc4165f22e_17b03fac40ccd96444023--


From nobody Sun Jul 14 17:13:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 835641202A4 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:13:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 NM9CrcSaHBl7 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:13: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 22B4F1202A5 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 17:13:11 -0700 (PDT)
Date: Sun, 14 Jul 2019 17:13:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563149590; bh=U1MB0F/koInFpVLwjiAHCunrDhImPXPLqyZIjONtue8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qybJHIeKx8+LqCC7DF6fAC+1hRZxLlph95XyupLPDWDp1WXU3pqUysHrqPvRbm8gZ rBZkjXfstHx1j/AUArb+JhEjFgI8HJJaYxD2dosafJ10J+G/1VauV9YUQaqJRr7sWW atyyf1RSqgcI4pMLEkljP6oQBgza5fE1PFvxYqV0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25LJEHTEPWOQDDTB53HD3ZNEVBNHHBXYFAF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2894/511246804@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2894@github.com>
References: <quicwg/base-drafts/issues/2894@github.com>
Subject: Re: [quicwg/base-drafts] In Initial and Handshake packets, knowing undecryptable packets could accelerate handshakes with loss (#2894)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2bc51630d26_113a3ffb0cccd96c2256e0"; 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/fdWbidQ-iaCEWy0mFAQ8R38tCv4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 00:13:13 -0000

----==_mimepart_5d2bc51630d26_113a3ffb0cccd96c2256e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't get how the removal of Largest Acknowledged would work.  We use that as an anchor point for the ACK frame, but without it you need to start at 0.  Then you need to allow the first range (or gap, depending on where you want to start) be zero-length.  It's not really that simple.

This smells a lot like a v2 issue 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/issues/2894#issuecomment-511246804
----==_mimepart_5d2bc51630d26_113a3ffb0cccd96c2256e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't get how the removal of Largest Acknowledged would work.  We use that as an anchor point for the ACK frame, but without it you need to start at 0.  Then you need to allow the first range (or gap, depending on where you want to start) be zero-length.  It's not really that simple.</p>
<p>This smells a lot like a v2 issue 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/issues/2894?email_source=notifications&amp;email_token=AFTOJKYBYNGCTU3T63C5GJLP7O6JNA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QDVA#issuecomment-511246804">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26A5NZR2CYAYHALVDP7O6JNANCNFSM4IC25IVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3B736F4WCNPCIKRGTP7O6JNA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QDVA.gif" height="1" width="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/2894?email_source=notifications\u0026email_token=AFTOJKYBYNGCTU3T63C5GJLP7O6JNA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QDVA#issuecomment-511246804",
"url": "https://github.com/quicwg/base-drafts/issues/2894?email_source=notifications\u0026email_token=AFTOJKYBYNGCTU3T63C5GJLP7O6JNA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QDVA#issuecomment-511246804",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2bc51630d26_113a3ffb0cccd96c2256e0--


From nobody Sun Jul 14 17:15:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B1E751202A4 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:15:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 950SP5lCwaZY for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 17:15: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 435B81202A1 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 17:15:49 -0700 (PDT)
Date: Sun, 14 Jul 2019 17:15:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563149748; bh=mbmZibsnecgoLkTYKDAg6iJI8wYX4BCTSgiG0o/rIQg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KQ9FTEcXyNhUDLnoMzxBNeux7CvYMKEHsC2MsBHqmTqgUj4eqoY3g/4YFwc77sz9g bTuiydmwCCcPSMGwwxjMgBDz4ySlKfUSo5cDnFnckbjdwNRRig6DIxpBb19GRx8GhA 4s9a4tqnPCuxlv3Ps9OtjX2snXQ0gS/lOeED8fYQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3EICSXDISW7MXNMZF3HD4DJEVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2895/511247002@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2895@github.com>
References: <quicwg/base-drafts/issues/2895@github.com>
Subject: Re: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2bc5b422183_547e3fc071ecd968515449"; 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/HbiXSpmPKpFsPEkVuagHq5nDOXA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 00:15:51 -0000

----==_mimepart_5d2bc5b422183_547e3fc071ecd968515449
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Not sure that this helps all that much.  Even though you might be eliciting an acknowledgment, you will still lose the packet when you discard keys, which could still happen.  All you have done is increase the work that the recipient needs to perform.

-- 
You are receiving 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/2895#issuecomment-511247002
----==_mimepart_5d2bc5b422183_547e3fc071ecd968515449
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Not sure that this helps all that much.  Even though you might be eliciting an acknowledgment, you will still lose the packet when you discard keys, which could still happen.  All you have done is increase the work that the recipient needs to perform.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2895?email_source=notifications&amp;email_token=AFTOJK6F3ZOVRDZOUNITHVLP7O6TJA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QFGQ#issuecomment-511247002">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYU7ATK4PKQIFBNRDLP7O6TJANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6RX5H2WBO76EZFNVTP7O6TJA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QFGQ.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJK6F3ZOVRDZOUNITHVLP7O6TJA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QFGQ#issuecomment-511247002",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJK6F3ZOVRDZOUNITHVLP7O6TJA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4QFGQ#issuecomment-511247002",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2bc5b422183_547e3fc071ecd968515449--


From nobody Sun Jul 14 21:18:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B137A12006D for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 21:18:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.307
X-Spam-Level: 
X-Spam-Status: No, score=-6.307 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, HTML_SHORT_LINK_IMG_3=0.148, 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 d2dLQFNpFYZa for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 21:18: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 4FA8F120020 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 21:18:35 -0700 (PDT)
Date: Sun, 14 Jul 2019 21:18:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563164314; bh=zpnSdkFvPMfaBZVc15jS783joQh/+BTY9GVWolDAPsk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=w0LJvhCg7x/rNpVKywY+g3vjveEdmA14WRTbwfjySVk39WYS2b1+ZoPgTqKmlqitX Qu5kG2Y/ci5WB0Xs2cFMujG4dhORDZGJm4w+V8hSWQgZvU94hG+UH+wq4EZIKASQMC rva8WUHI3w4VjPz8KH0ltYYAL75YUkmOzLKrjDK8=
From: mengguer <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6JBZ6U67UTRIZUED53HEYRVEVBNHHBXZA36A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2897@github.com>
Subject: [quicwg/base-drafts] DCID Len's description should be updated in draft-ietf-quic-transport-22 (#2897)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2bfe9a4c830_7b2f3fc28a6cd9648835a0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mengguer
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4NJUl6-7OvYlvu1CYN3hxALt_ro>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 04:18:37 -0000

----==_mimepart_5d2bfe9a4c830_7b2f3fc28a6cd9648835a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

![image](https://user-images.githubusercontent.com/9623979/61195416-6cdd7b80-a6fa-11e9-9833-ece3fe82f7a3.png)


-- 
You are receiving 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/2897
----==_mimepart_5d2bfe9a4c830_7b2f3fc28a6cd9648835a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/9623979/61195416-6cdd7b80-a6fa-11e9-9833-ece3fe82f7a3.png"><img src="https://user-images.githubusercontent.com/9623979/61195416-6cdd7b80-a6fa-11e9-9833-ece3fe82f7a3.png" alt="image" style="max-width:100%;"></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/2897?email_source=notifications&amp;email_token=AFTOJK77RU6PCSQYDNQOYC3P7P3BVA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7EDPYA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2GZKU2LR34SW77FY3P7P3BVANCNFSM4IDTBTCQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK47O6M3BQODTY6TZWTP7P3BVA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7EDPYA.gif" height="1" width="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/2897?email_source=notifications\u0026email_token=AFTOJK77RU6PCSQYDNQOYC3P7P3BVA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7EDPYA",
"url": "https://github.com/quicwg/base-drafts/issues/2897?email_source=notifications\u0026email_token=AFTOJK77RU6PCSQYDNQOYC3P7P3BVA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7EDPYA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2bfe9a4c830_7b2f3fc28a6cd9648835a0--


From nobody Sun Jul 14 22:02:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 39319120072 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 22:02:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.306
X-Spam-Level: 
X-Spam-Status: No, score=-6.306 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, HTML_SHORT_LINK_IMG_3=0.148, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PnYNIkztU7YV for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 22:02: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 74344120020 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 22:02:27 -0700 (PDT)
Date: Sun, 14 Jul 2019 22:02:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563166946; bh=GArw0AnDLcPXPIqVku1efP0yxAiNOzL+GSyznIxcEJ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Nd3A8FPNKHu0Rg/sZcWdcmpVzNENVj0QkxSuAgQTl2YL1qt4CXyxGJQuoe+uhYS1q H7Bctn6+HAzk7QhGkbD253vFKD4vxHN07sOUlhBEBDpuNbNnr5iN8SFpOvHvK3E/nE uZCAfuokUFDQCjzFHSP0/I7iSREYSiAMGw4M8vPY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7VSQYHWIICIPEARQN3HE5WFEVBNHHBXZA36A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2897/511274993@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2897@github.com>
References: <quicwg/base-drafts/issues/2897@github.com>
Subject: Re: [quicwg/base-drafts] DCID Len's description should be updated in draft-ietf-quic-transport-22 (#2897)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2c08e252200_61e3ff8074cd96863783a"; 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/4rGWCsh3Vyv9MdvrQow7QFuo7YY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 05:02:29 -0000

----==_mimepart_5d2c08e252200_61e3ff8074cd96863783a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixed in editor's draft:
![image](https://user-images.githubusercontent.com/67641/61196361-79b99980-a711-11e9-9b1a-22a679c39a63.png)




-- 
You are receiving 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/2897#issuecomment-511274993
----==_mimepart_5d2c08e252200_61e3ff8074cd96863783a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Fixed in editor's draft:<br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/67641/61196361-79b99980-a711-11e9-9b1a-22a679c39a63.png"><img src="https://user-images.githubusercontent.com/67641/61196361-79b99980-a711-11e9-9b1a-22a679c39a63.png" alt="image" style="max-width:100%;"></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/2897?email_source=notifications&amp;email_token=AFTOJK3M7GZQZLA3N26QQ6DP7QAGFA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4W74I#issuecomment-511274993">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYQK2IAHPJBN3PZBDDP7QAGFANCNFSM4IDTBTCQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EQ3MRBKRPMTNOWO3P7QAGFA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4W74I.gif" height="1" width="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/2897?email_source=notifications\u0026email_token=AFTOJK3M7GZQZLA3N26QQ6DP7QAGFA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4W74I#issuecomment-511274993",
"url": "https://github.com/quicwg/base-drafts/issues/2897?email_source=notifications\u0026email_token=AFTOJK3M7GZQZLA3N26QQ6DP7QAGFA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ4W74I#issuecomment-511274993",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2c08e252200_61e3ff8074cd96863783a--


From nobody Sun Jul 14 22:02:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6F748120020 for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 22:02:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uI--EuOhl0IU for <quic-issues@ietfa.amsl.com>; Sun, 14 Jul 2019 22:02: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 E4932120046 for <quic-issues@ietf.org>; Sun, 14 Jul 2019 22:02:27 -0700 (PDT)
Date: Sun, 14 Jul 2019 22:02:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563166947; bh=NJrgxPyW35uzoOQUf5jIB5tihQkoyPzoq09otw1TubU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=G2Z2mLQzreEwr1Twy55iUdBN+1qWa7OwxXkNDSirhfq5+6O/eB9gBIBSOrR4TiZtw 33s8wxI62UuG9Hx2q3cVrMw61ktkd7XZ9jPK/9xv273zZg76slTWptXPWGPVPp3VZQ PRjQL9OStYEOFzXIVU89PZEYls6uuEW/esZ10FCs=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRQFYT45VELVPCJ4V3HE5WHEVBNHHBXZA36A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2897/issue_event/2481782437@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2897@github.com>
References: <quicwg/base-drafts/issues/2897@github.com>
Subject: Re: [quicwg/base-drafts] DCID Len's description should be updated in draft-ietf-quic-transport-22 (#2897)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2c08e37bb9_32b53fc2fa0cd9681953fb"; 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/JRiguxjlQL0C3Y7yKpC8Us9T-v4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 05:02:31 -0000

----==_mimepart_5d2c08e37bb9_32b53fc2fa0cd9681953fb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2897.

-- 
You are receiving 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/2897#event-2481782437
----==_mimepart_5d2c08e37bb9_32b53fc2fa0cd9681953fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467934192" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2897" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2897/hovercard" href="https://github.com/quicwg/base-drafts/issues/2897">#2897</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/2897?email_source=notifications&amp;email_token=AFTOJK2JXOS5HDTWXYATYP3P7QAGHA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPWP5JI#event-2481782437">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJ3XZURQA7XSFCQ6DP7QAGHANCNFSM4IDTBTCQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5DFE4NQX6UNDC733P7QAGHA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPWP5JI.gif" height="1" width="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/2897?email_source=notifications\u0026email_token=AFTOJK2JXOS5HDTWXYATYP3P7QAGHA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPWP5JI#event-2481782437",
"url": "https://github.com/quicwg/base-drafts/issues/2897?email_source=notifications\u0026email_token=AFTOJK2JXOS5HDTWXYATYP3P7QAGHA5CNFSM4IDTBTC2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSPWP5JI#event-2481782437",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2c08e37bb9_32b53fc2fa0cd9681953fb--


From nobody Mon Jul 15 09:52:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C1847120026 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 09:52:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.597
X-Spam-Level: 
X-Spam-Status: No, score=-6.597 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Qf2RkR4yA-vn for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 09:52: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 3DE3A120112 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 09:52:37 -0700 (PDT)
Date: Mon, 15 Jul 2019 09:52:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563209556; bh=+RQm2aOnC8V6EMIxRK/j2xkt8sKSOuKokRxfJ1eiYgY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=P9T7cq3ocxw1REGT6EIrv1X+k/iw6DPgmqydjF0e/sFquo8W7HS31gqokpsl0gSiY 5Gxhqutb1Jld6ZeuCUBG8LaZZb/COpOjk0VQsofE5JRqKWnveo8wILg8VZ3UWDDxlF huMvm9nBiKpThrpax6BqUhAMMp8c3KOSlDs5GIgQ=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZLDYAXRAQNILXGLTN3HHQ5JEVBNHHBX2FIBU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2898@github.com>
Subject: [quicwg/base-drafts] HTTP Upgrade in H3 is silliness (#2898)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2caf541708d_605e3fb24c4cd964141945"; 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/luknzoPD6A7XKcpsOvsbbZ4H8UU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 16:52:40 -0000

----==_mimepart_5d2caf541708d_605e3fb24c4cd964141945
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #2889 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2898

-- Commit Summary --

  * HTTP Upgrade in H3 is silliness

-- File Changes --

    M draft-ietf-quic-http.md (5)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2898.patch
https://github.com/quicwg/base-drafts/pull/2898.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/2898

----==_mimepart_5d2caf541708d_605e3fb24c4cd964141945
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 #2889.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="466923418" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2889" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2889/hovercard" href="https://github.com/quicwg/base-drafts/issues/2889">#2889</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/2898'>https://github.com/quicwg/base-drafts/pull/2898</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>HTTP Upgrade in H3 is silliness</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2898/files#diff-0">draft-ietf-quic-http.md</a>
    (5)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2898.patch'>https://github.com/quicwg/base-drafts/pull/2898.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2898.diff'>https://github.com/quicwg/base-drafts/pull/2898.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/2898?email_source=notifications&amp;email_token=AFTOJKYDPSVCJUX455D5NO3P7STNJA5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IVAGQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BOKT7NPLMNJ3F5TDP7STNJANCNFSM4IDYY5RA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ONWDWIBLO7L6J733P7STNJA5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IVAGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2898?email_source=notifications\u0026email_token=AFTOJKYDPSVCJUX455D5NO3P7STNJA5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IVAGQ",
"url": "https://github.com/quicwg/base-drafts/pull/2898?email_source=notifications\u0026email_token=AFTOJKYDPSVCJUX455D5NO3P7STNJA5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IVAGQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2caf541708d_605e3fb24c4cd964141945--


From nobody Mon Jul 15 10:08:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CC1FB120135 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 10:08:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id anbUzyc70Xer for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 10:08: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 F1EB312023D for <quic-issues@ietf.org>; Mon, 15 Jul 2019 10:08:15 -0700 (PDT)
Date: Mon, 15 Jul 2019 10:08:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563210494; bh=97HCcpnOj2gwmLhyWXCS+JrIWqUrD0se4a+GNN+o8qI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=rNWjXbOWG1TyRwA0BXWA6hsKUIRrnRDyvOKzylaQ1/kYegNMXtmcipas5SQAWmXaL iCcTwiSjiTlmdh94Cz5N0LpWuzEnu4QaSJgZ6DGFsUdJuImURAF3N9S+N92dsV+WZP yK0wM5Ftpvz4G1PiZqtd8V0efg9X1s+jG80uE+No=
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK44W2HKFMPMD7FJNO53HHSX5EVBNHHBX2GBDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2899@github.com>
Subject: [quicwg/base-drafts] Sample offset incorrect post draft-22 (#2899)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2cb2fed7e60_43693ff3afacd964213876"; 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/548rch_962EPsJ74y-X_-WAG62Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 17:08:18 -0000

----==_mimepart_5d2cb2fed7e60_43693ff3afacd964213876
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

See section 5.4.2 of quic-tls. It's now off by one. This is similar to #2885 
```
   sample_offset = 6 + len(destination_connection_id) +
                       len(source_connection_id) +
                       len(payload_length) + 4
   if packet_type == Initial:
       sample_offset += len(token_length) +
                        len(token)
```

-- 
You are receiving 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/2899
----==_mimepart_5d2cb2fed7e60_43693ff3afacd964213876
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>See section 5.4.2 of quic-tls. It's now off by one. This is similar to <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465879872" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2885" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2885/hovercard" href="https://github.com/quicwg/base-drafts/issues/2885">#2885</a></p>
<pre><code>   sample_offset = 6 + len(destination_connection_id) +
                       len(source_connection_id) +
                       len(payload_length) + 4
   if packet_type == Initial:
       sample_offset += len(token_length) +
                        len(token)
</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/2899?email_source=notifications&amp;email_token=AFTOJK6DSXNUSCHINZWL6P3P7SVH5A5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IYENA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VPHXIBJMNCEI2DWLP7SVH5ANCNFSM4IDY427A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7GJY7ILIIP553FNXTP7SVH5A5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IYENA.gif" height="1" width="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/2899?email_source=notifications\u0026email_token=AFTOJK6DSXNUSCHINZWL6P3P7SVH5A5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IYENA",
"url": "https://github.com/quicwg/base-drafts/issues/2899?email_source=notifications\u0026email_token=AFTOJK6DSXNUSCHINZWL6P3P7SVH5A5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7IYENA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2cb2fed7e60_43693ff3afacd964213876--


From nobody Mon Jul 15 11:54:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D560312013F for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 11:54:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i177Rdh19CCC for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 11:54:39 -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 A50EB12013E for <quic-issues@ietf.org>; Mon, 15 Jul 2019 11:54:39 -0700 (PDT)
Date: Mon, 15 Jul 2019 11:54:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563216878; bh=BmEFS2y3KuMLMw57puChcQNbTcRSACVt+fnDLR9jR+Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0yZZFncm9lJriTxL6y9LF3lDWjpsXy5tRRE4GHWsqQFCem8V9lwaQ4GSDhw44exE9 /5psUARWwxxneuGh/R6TyVioIkwBX4GS14jCDyTlQexh6kknCUpVRVbZmEgorTvkg6 CxCsqF9iT1jv2zMZRJvBjOhmiVIcSL9CSTHCNAhw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOFLE3U7KEKLJIWE53HH7G5EVBNHHBX2FIBU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2898/review/262010562@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2898@github.com>
References: <quicwg/base-drafts/pull/2898@github.com>
Subject: Re: [quicwg/base-drafts] HTTP Upgrade in H3 is silliness (#2898)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2ccbeedfd5f_40c3fa4aaacd9682307ac"; 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/dC5_KEBwv_oJdYMykeM55J9nhLY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 18:54:41 -0000

----==_mimepart_5d2ccbeedfd5f_40c3fa4aaacd9682307ac
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/2898#pullrequestreview-262010562
----==_mimepart_5d2ccbeedfd5f_40c3fa4aaacd9682307ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2898?email_source=notifications&amp;email_token=AFTOJKZD2THZM5KDI4Y7FSDP7TBW5A5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6O7NQQ#pullrequestreview-262010562">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2Z4W6KZBQ7UEV7QLDP7TBW5ANCNFSM4IDYY5RA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY7I5OE3GHTFV24XBTP7TBW5A5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6O7NQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2898?email_source=notifications\u0026email_token=AFTOJKZD2THZM5KDI4Y7FSDP7TBW5A5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6O7NQQ#pullrequestreview-262010562",
"url": "https://github.com/quicwg/base-drafts/pull/2898?email_source=notifications\u0026email_token=AFTOJKZD2THZM5KDI4Y7FSDP7TBW5A5CNFSM4IDYY5RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6O7NQQ#pullrequestreview-262010562",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2ccbeedfd5f_40c3fa4aaacd9682307ac--


From nobody Mon Jul 15 12:01:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BB89F120235 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 12:01:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YzmPGpTIJut5 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 12:01: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 E9DB6120273 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 12:01:26 -0700 (PDT)
Date: Mon, 15 Jul 2019 12:01:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563217286; bh=Gn9jNJpsa48NngttTDPxT0KsNbGn2vs4asIEKja/NxY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TYsypRwvkl5XNOUcIgEngnch8MBbTvD0zc3Hb0f4M5mxud4ZZMSknBllg+cEUxhxy Q+lD/HtFBDbc6t4AjZvngKzLK/cLVCbSPV5W99WeVLy7/fAVL53tLOu9DkRwOPHIrP KjaKfxrLRe/c+4XEMhpWKLM9lzwfFOQK4JmCu+2Y=
From: Joshua Koo <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6U4NEPQNQ5BRXBHU53HIAALEVBNHHBXY4S7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2896/c511528301@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2896@github.com>
References: <quicwg/base-drafts/pull/2896@github.com>
Subject: Re: [quicwg/base-drafts] Move wasteful packet stuff to -transport (#2896)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2ccd85ecab0_5fa53fba326cd960932a6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: zz85
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Jvgr6u2OFBOO97F-mRC_pvZYjhw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 19:01:34 -0000

----==_mimepart_5d2ccd85ecab0_5fa53fba326cd960932a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks for improving the section's clarity.

As a follow up question, when implementations decide that excessive packets is an attack, is there a recommended actionable (eg. sending reset, dropping the connection, do nothing) or would that be up for implementer's discretion?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2896#issuecomment-511528301
----==_mimepart_5d2ccd85ecab0_5fa53fba326cd960932a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thanks for improving the section's clarity.</p>
<p>As a follow up question, when implementations decide that excessive packets is an attack, is there a recommended actionable (eg. sending reset, dropping the connection, do nothing) or would that be up for implementer's discretion?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications&amp;email_token=AFTOJKZ5CZYUFAP5ZQRF65TP7TCQLA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ6U23I#issuecomment-511528301">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2S6PM7XYT4TAVWYDTP7TCQLANCNFSM4IDSJVKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3V42F7OYRS34K6423P7TCQLA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ6U23I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJKZ5CZYUFAP5ZQRF65TP7TCQLA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ6U23I#issuecomment-511528301",
"url": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJKZ5CZYUFAP5ZQRF65TP7TCQLA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ6U23I#issuecomment-511528301",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2ccd85ecab0_5fa53fba326cd960932a6--


From nobody Mon Jul 15 13:52:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A940F120132 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 13:51:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 ELtSPgPifo_s for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 13:51: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 199F7120115 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 13:51:58 -0700 (PDT)
Date: Mon, 15 Jul 2019 13:51:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563223917; bh=IBvg28OTzQ1w8sKJjZDY278Z+YDLkZAs1hBOMWDrqtU=; h=Date:From:To:Subject:From; b=rSizULDatz7JPMKI3klcqgJprHBcnpH8ow0qIFvbQoWaL8ra/IwQ7RY4+YRHplhbm E7vHlDVj7HDdMGq5GJ9Fn0uk0eew/WlLubOgVfsEgcY1wFMudfyVrqE0nTzc3q7w3s 5I4DitcTg2AVwMy5FHdFiSwjCHBn3V8WcW/OVauo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-invariants-06/000000-8ca145@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/K9ss80W1J0APSynWhk0QDnwgftE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 20:52:00 -0000

  Branch: refs/tags/draft-ietf-quic-invariants-06
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Jul 15 15:00:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8AA35120140 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 15:00:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.597
X-Spam-Level: 
X-Spam-Status: No, score=-6.597 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 j7JWDAXG2JL3 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 15:00:40 -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 C024D12002E for <quic-issues@ietf.org>; Mon, 15 Jul 2019 15:00:40 -0700 (PDT)
Date: Mon, 15 Jul 2019 15:00:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563228039; bh=APZ548DE0O/EeCOhyTARJ6YCdzkjlUhoNRoZKzVqpNo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=VDOqa6b347OtSciQMXB82VkmO6gkvgkGKh0j9Y/Gic9cDQas4CMVKmXJQgpRNG5Ld EKwJn4fiUzh2arB2sImNuOXZQhFIGUveA987C1yU6DmwmztF/DCsKmGnCdZQbFpzru ojZyILAxmOPWq7xDTK7jXbvrnXl5jXb2vcKD+9aA=
From: anrossi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZLVODOMW5IB2LNYN3HIVAPEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900@github.com>
Subject: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2cf787b092b_73063fca9cecd960989bf"; 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/035vy1jhZNSKCs4umc5IBXb-4N8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 15 Jul 2019 22:00:43 -0000

----==_mimepart_5d2cf787b092b_73063fca9cecd960989bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In some testing with WinQuic, we noticed a small inconsistency in Section 12.2 of the transport spec that needs some clarification.
Section 12.2 says that if decryption fails, an implementation MUST attempt to process remaining packets in a coalesced UDP datagram. However, consider the following scenario:

1. An endpoint received a UDP datagram with a single short header packet, the first of the 1-RTT encryption level. This implicitly ACKs the end of the handshake and the receiver discards the handshake keys.
2. The sender then sends a coalesced datagram with a single long-header packet (an ACK for the handshake), and then a short header packet containing more 1-RTT data.

Since the receiver has thrown away the handshake keys, they are unable to decrypt the long header packet in the second datagram, and without being able to decrypt the header protection on the long header packet, they cannot ascertain the length, and are unable to find the short header packet that follows. As a result, the whole datagram is thrown away.

Can the "MUST" referenced above be clarified for which scenarios are/aren't supported?

-- 
You are receiving 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/2900
----==_mimepart_5d2cf787b092b_73063fca9cecd960989bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In some testing with WinQuic, we noticed a small inconsistency in Section 12.2 of the transport spec that needs some clarification.<br>
Section 12.2 says that if decryption fails, an implementation MUST attempt to process remaining packets in a coalesced UDP datagram. However, consider the following scenario:</p>
<ol>
<li>An endpoint received a UDP datagram with a single short header packet, the first of the 1-RTT encryption level. This implicitly ACKs the end of the handshake and the receiver discards the handshake keys.</li>
<li>The sender then sends a coalesced datagram with a single long-header packet (an ACK for the handshake), and then a short header packet containing more 1-RTT data.</li>
</ol>
<p>Since the receiver has thrown away the handshake keys, they are unable to decrypt the long header packet in the second datagram, and without being able to decrypt the header protection on the long header packet, they cannot ascertain the length, and are unable to find the short header packet that follows. As a result, the whole datagram is thrown away.</p>
<p>Can the "MUST" referenced above be clarified for which scenarios are/aren't supported?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2900?email_source=notifications&amp;email_token=AFTOJK7564UFTDWKIIM7PHTP7TXQPA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7KQ22A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YHR673U4RNS66XHLP7TXQPANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7CKJR3BMMFKJ45WILP7TXQPA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7KQ22A.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJK7564UFTDWKIIM7PHTP7TXQPA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7KQ22A",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJK7564UFTDWKIIM7PHTP7TXQPA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7KQ22A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2cf787b092b_73063fca9cecd960989bf--


From nobody Mon Jul 15 17:27:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 780DB120134 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 17:27:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, 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 oNXrjLLyuHKY for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 17:27:07 -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 26A4912004A for <quic-issues@ietf.org>; Mon, 15 Jul 2019 17:27:07 -0700 (PDT)
Date: Mon, 15 Jul 2019 17:27:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563236826; bh=4rkLyyMXTRtSRB/T0Ws8WSLCt61CtGtpHxQub7avr+4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=P01VLHjX8lBajxpw7tchaM9H6m888kvtxTFiVAjHWd7jCUYW77gfrjfCe2h/6Rfns 4Xqhf9yTMoyifSBChVwOpn3dFXTapJxXj8IRsoM1yAGTSHn2bg45kSsFP3iHHEwz7/ FqhKoZHbsny0ZP4D2lAYLA0uEvrGagNdSJVde05g=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3IBHLTWCJZTD4WCJ53HJGFVEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/511617466@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d19da34880_2ac93fcd60ccd96418056"; 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/1-X9xlxCXAQBhmecV3gw96xwiHs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 00:27:08 -0000

----==_mimepart_5d2d19da34880_2ac93fcd60ccd96418056
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The `Length` field in long header packets is not encrypted, precisely to allow scenarios like this one.

Also note that an endpoint only discards handshake keys once the handshake is confirmed: https://tools.ietf.org/html/draft-ietf-quic-tls-22#section-4.9.2

-- 
You are receiving 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/2900#issuecomment-511617466
----==_mimepart_5d2d19da34880_2ac93fcd60ccd96418056
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The <code>Length</code> field in long header packets is not encrypted, precisely to allow scenarios like this one.</p>
<p>Also note that an endpoint only discards handshake keys once the handshake is confirmed: <a href="https://tools.ietf.org/html/draft-ietf-quic-tls-22#section-4.9.2" rel="nofollow">https://tools.ietf.org/html/draft-ietf-quic-tls-22#section-4.9.2</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/2900?email_source=notifications&amp;email_token=AFTOJK7B7LCKN5DCX2KLO5LP7UIVVA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7KTOQ#issuecomment-511617466">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6D3JZT7MDMCN3HDA3P7UIVVANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7R7FAQD22FZ5JG7KLP7UIVVA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7KTOQ.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJK7B7LCKN5DCX2KLO5LP7UIVVA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7KTOQ#issuecomment-511617466",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJK7B7LCKN5DCX2KLO5LP7UIVVA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7KTOQ#issuecomment-511617466",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d19da34880_2ac93fcd60ccd96418056--


From nobody Mon Jul 15 18:08:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5D36312014A for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 18:08:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 9yROpcIOXRSO for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 18:08: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 1196912015D for <quic-issues@ietf.org>; Mon, 15 Jul 2019 18:08:44 -0700 (PDT)
Date: Mon, 15 Jul 2019 18:08:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563239323; bh=lLK6kxBJ+4x4kkSKI0oETsW2FWz6kHxybQvOZPrO8OY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SLs1B2jLxtd2yzy5j9CAvz8Q95KxKhvVj+Ca5c1cO7Cn/LohHqi1qz6PfIAqEwKM8 3lSCSQeDUAbvF4CR+EQAdlVzT2ZMX3M7qeIW0Q0cxd5DcjMIVS032eeo4k6U6GlZVY H7uSAYj3mh7QkYIdBlBdeASdueDzcG8m9jnrMwXs=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7P3O3VHIKHJZEBJDV3HJLBXEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/511624594@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d239b1f780_599e3f8ae92cd964396877"; 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/3D1kl5f99q6HUe8U0F0GdXY9C4Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 01:08:47 -0000

----==_mimepart_5d2d239b1f780_599e3f8ae92cd964396877
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

https://tools.ietf.org/html/draft-ietf-quic-transport-22#section-12.2 states:

> The length of the Payload field is learned once header protection is removed.

If you can't remove header protection, then you can't process any additional coalesced packets in the datagram because you don't know the length of the current 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/issues/2900#issuecomment-511624594
----==_mimepart_5d2d239b1f780_599e3f8ae92cd964396877
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://tools.ietf.org/html/draft-ietf-quic-transport-22#section-12.2" rel="nofollow">https://tools.ietf.org/html/draft-ietf-quic-transport-22#section-12.2</a> states:</p>
<blockquote>
<p>The length of the Payload field is learned once header protection is removed.</p>
</blockquote>
<p>If you can't remove header protection, then you can't process any additional coalesced packets in the datagram because you don't know the length of the current 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/issues/2900?email_source=notifications&amp;email_token=AFTOJKZ3RT6YUSMGKP7FGULP7UNRXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7MLEQ#issuecomment-511624594">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3KQGXWWR6JNFCBS3P7UNRXANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3KQZQD3KRO24NIDXDP7UNRXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7MLEQ.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJKZ3RT6YUSMGKP7FGULP7UNRXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7MLEQ#issuecomment-511624594",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJKZ3RT6YUSMGKP7FGULP7UNRXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7MLEQ#issuecomment-511624594",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d239b1f780_599e3f8ae92cd964396877--


From nobody Mon Jul 15 18:21:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E073112016E for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 18:21:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4YOecGMFlMpV for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 18:21: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 A84E112016C for <quic-issues@ietf.org>; Mon, 15 Jul 2019 18:21:26 -0700 (PDT)
Date: Mon, 15 Jul 2019 18:21:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563240085; bh=iuZHJfDl+XoB0SeXt3RW+53OCs4Ypg5GKJaZ1Kk3xs0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i3Lg1OgDxrInmqw9j9j5UwrUXWG9S6n7XtH577qS/g7g78YcZiG3iGpzHV6MkP+Rb gnu/+hxqbCSRY3Tlgf5obA9WmmwTBCZA5c/WQzZI4RDpSXaWFsqX7gNN1rg2TAFni2 0wvHaipgy8NrzFm0eAx7obg7qdBsP/HKzGQbKPyQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KGU2N5VSTS7LIDIF3HJMRLEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/511626921@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d269524b25_61fe3fc6ddecd964689a5"; 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/SNXTI4yBAOaRZ4aw4vF3hFxBY58>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 01:21:28 -0000

----==_mimepart_5d2d269524b25_61fe3fc6ddecd964689a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

>From what I can find, header protection isn't applied to the Length field, so should that sentence be removed?

-- 
You are receiving 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/2900#issuecomment-511626921
----==_mimepart_5d2d269524b25_61fe3fc6ddecd964689a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>From what I can find, header protection isn't applied to the Length field, so should that sentence be removed?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2900?email_source=notifications&amp;email_token=AFTOJK2F5EBVLBIDEAR3VUDP7UPBLA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7M5KI#issuecomment-511626921">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5HEIWYCGMCY7EFKELP7UPBLANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4S3N7TYTDAXQW7GB3P7UPBLA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7M5KI.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJK2F5EBVLBIDEAR3VUDP7UPBLA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7M5KI#issuecomment-511626921",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJK2F5EBVLBIDEAR3VUDP7UPBLA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7M5KI#issuecomment-511626921",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d269524b25_61fe3fc6ddecd964689a5--


From nobody Mon Jul 15 18:53:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 41202120141 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 18:53:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VIQBt1vxFaCM for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 18:53:22 -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 B7744120177 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 18:53:22 -0700 (PDT)
Date: Mon, 15 Jul 2019 18:53:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563242002; bh=7G/+AkV/VN4mqmWIyPVwsi29sf7LI9NdHvl38o/qMUU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MmlU5QvrD3ARqmCItRX1g0fN1iramCKUWAaTwuUC4fp1+O3SOPuKoRDTUoWJQTJA9 sJQD5H8YZH7BBwZNtfP2lIVM9d7S2nn87+6pOFnbkS+hfeibU+oZKr62yLAbhJ+WU2 PxsgpeC3UVwBttWKmyhMDW2ah7XrG2f7M7xwoz/A=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZU6ZAJEXXQKLBRDON3HJQJDEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/511632885@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d2e11e7c3d_59813fc5fa6cd964100873"; 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/BbKPSni8hdg1sGwktSgYnqTixzY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 01:53:24 -0000

----==_mimepart_5d2d2e11e7c3d_59813fc5fa6cd964100873
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I went back and double checked. I thought Length followed the packet number, which is variable length, but it does seem to precede the field. Perhaps all that does need to be done is to remove that sentence 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/issues/2900#issuecomment-511632885
----==_mimepart_5d2d2e11e7c3d_59813fc5fa6cd964100873
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I went back and double checked. I thought Length followed the packet number, which is variable length, but it does seem to precede the field. Perhaps all that does need to be done is to remove that sentence 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/issues/2900?email_source=notifications&amp;email_token=AFTOJK35TABNF2U5CWUJEHTP7USZDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7OL5I#issuecomment-511632885">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ4XHLFITOB2NU22ITP7USZDANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJJMMWGLUSJX5YOHTP7USZDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7OL5I.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJK35TABNF2U5CWUJEHTP7USZDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7OL5I#issuecomment-511632885",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJK35TABNF2U5CWUJEHTP7USZDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7OL5I#issuecomment-511632885",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d2e11e7c3d_59813fc5fa6cd964100873--


From nobody Mon Jul 15 20:00:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2D8A0120143 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ygDXAMkwlT2L for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00: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 95F8E1200D5 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 20:00:06 -0700 (PDT)
Date: Mon, 15 Jul 2019 20:00:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563246005; bh=5j9Bm+prI/Yo4WXgSL1oHgO55hnb2Zvpvk/32JI5WZE=; h=Date:From:To:Subject:From; b=fNBiT0yvRVrVfAjfSgxV9vUNVy+JJJtH8peAKmHWtVYEmwPvWSP94y8qwhrOsLiMT SGjzItk6SGx5p0SoECeqcVr+g0yY4urSksdumSjEF5IHPu/CImvlL9LohVhpw4F3Sx bCVV68LXEeNKgz8+Ecy9eIvqtmHVzKItN6SG3hbQ=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/212169-cb6828@github.com>
Subject: [quicwg/base-drafts] cb6828: Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ztWeQsK6eatW7ygCYcHOs6D7mfk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 03:00:08 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: cb6828672ebbb3288be99155ae151ed243723421
      https://github.com/quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-15 (Mon, 15 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge Crypto timeout and PTO (#2806)

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Matt Olson <maolson@microsoft.com>

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Matt Olson <maolson@microsoft.com>

* Update draft-ietf-quic-recovery.md

* Remove crypto timer from the pseudocode

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>

* Update draft-ietf-quic-recovery.md

Fix pseudocode indent

* Update draft-ietf-quic-recovery.md

* Changed to MUST

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Ryan's suggestion



From nobody Mon Jul 15 20:00:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 618E6120187 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Prc3M-WvAz7m for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00: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 92366120143 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 20:00:14 -0700 (PDT)
Date: Mon, 15 Jul 2019 20:00:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563246013; bh=eBgj5pzUWSkblb0vDIEZ4EK5Z0W7VVZ59KC9dy9vttE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yH2szUeK1KVHv9iE5yUMxuplIvVN50stXxEdgOKsZtzjPjGUQD5bzwkg5hZRRBzDY UXyU7WPQ4NnopfwnR5Keoihg7uA4/2xNogieRoejw3wsMJ3HXuGVzABwlyAxQOGIw/ uXy+l7Ttsg8YCGkV9h+99zOfoPkO6pE888pEq82I=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYSYZLKK25VLB4LTVV3HJYD3EVBNHHBUB5KUE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2650/issue_event/2484757636@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2650@github.com>
References: <quicwg/base-drafts/issues/2650@github.com>
Subject: Re: [quicwg/base-drafts] Recovery would be simpler if the Handshake timer was unified with the PTO timer (#2650)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d3dbd27c05_e493f9d16acd96820403b"; 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/avD1VYSanDQuBafzKxULwYmNAdQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 03:00:16 -0000

----==_mimepart_5d2d3dbd27c05_e493f9d16acd96820403b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2650 via #2806.

-- 
You are receiving 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/2650#event-2484757636
----==_mimepart_5d2d3dbd27c05_e493f9d16acd96820403b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="436710049" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2650" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2650/hovercard" href="https://github.com/quicwg/base-drafts/issues/2650">#2650</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</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/2650?email_source=notifications&amp;email_token=AFTOJK433NQ7AWNJMY6RC6TP7U2T3A5CNFSM4HIED6VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJBA#event-2484757636">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYPMRY4EDRNSUSRNVDP7U2T3ANCNFSM4HIED6VA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK42H4BEQFBEYV3JST3P7U2T3A5CNFSM4HIED6VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJBA.gif" height="1" width="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/2650?email_source=notifications\u0026email_token=AFTOJK433NQ7AWNJMY6RC6TP7U2T3A5CNFSM4HIED6VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJBA#event-2484757636",
"url": "https://github.com/quicwg/base-drafts/issues/2650?email_source=notifications\u0026email_token=AFTOJK433NQ7AWNJMY6RC6TP7U2T3A5CNFSM4HIED6VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJBA#event-2484757636",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d3dbd27c05_e493f9d16acd96820403b--


From nobody Mon Jul 15 20:00:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4A769120143 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PF1c6aI-ajKj for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00: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 875001200B2 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 20:00:14 -0700 (PDT)
Date: Mon, 15 Jul 2019 20:00:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563246013; bh=+EifxN3gR/WhvJekk6ndaJ07BlHAI6CxbcmK8wcmEGc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1Wtx6/16HqiWKa5nevDuyScO7pYFDbwj4D479c+onI+r94SRVadXLxsOqWo4Jr41C wEdq9q/xIX+Lkpqh7ZT59D8ORj0oR2PHWOPLB7BJ0WfSiwHhacm8Lo2Ki5IRTh8Q4j ZxIB1IsYHoDeyiLIW+3+bTLd4Rgrd1KCqkL+XqLc=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JO7X4ZJ6Z6WJUO5V3HJYDZEVBNHHBXRIJFY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2886/issue_event/2484757640@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2886@github.com>
References: <quicwg/base-drafts/issues/2886@github.com>
Subject: Re: [quicwg/base-drafts] Crypto Retransmission Timeout interacts poorly with Congestion Control (#2886)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d3dbced651_312d3fb76d0cd9602473b9"; 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/gmnu-7ZQ0NHtmIvUltlkfL851j8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 03:00:17 -0000

----==_mimepart_5d2d3dbced651_312d3fb76d0cd9602473b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2886 via #2806.

-- 
You are receiving 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/2886#event-2484757640
----==_mimepart_5d2d3dbced651_312d3fb76d0cd9602473b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465897774" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2886" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2886/hovercard" href="https://github.com/quicwg/base-drafts/issues/2886">#2886</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</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/2886?email_source=notifications&amp;email_token=AFTOJK7RLGVLAYIT7FY2JWTP7U2TZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJCA#event-2484757640">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZNA3S6P2GG6A6E7QDP7U2TZANCNFSM4H7HV22A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3GVGSW2UO2JY3AZYLP7U2TZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJCA.gif" height="1" width="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/2886?email_source=notifications\u0026email_token=AFTOJK7RLGVLAYIT7FY2JWTP7U2TZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJCA#event-2484757640",
"url": "https://github.com/quicwg/base-drafts/issues/2886?email_source=notifications\u0026email_token=AFTOJK7RLGVLAYIT7FY2JWTP7U2TZA5CNFSM4H7HV22KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJCA#event-2484757640",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d3dbced651_312d3fb76d0cd9602473b9--


From nobody Mon Jul 15 20:00:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7C4912018D for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0MLLcJIuSWxs for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00:16 -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 A2D4312017F for <quic-issues@ietf.org>; Mon, 15 Jul 2019 20:00:14 -0700 (PDT)
Date: Mon, 15 Jul 2019 20:00:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563246013; bh=k/06tow3E1RqxDeVwDLy9qAEvW+0dv2E9gAhx5CO5sE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yBe6tBoF22Il5xLeb2YmgHsmkCuKhF/C6vt30VhFUrsNnOE7guBnOSeFwQjQ/LnpE XSVv/znQxJZrmuisK5bJjKaNE3aEtmyJwq+Wm8kQ+fUApVjT10z3IL1a4NUCN5OUni UbgtRsbO/0s1WnSU2qL3pjewwB/a68CphTxDWzCk=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKWMVDC7GRVX6LEBF3HJYDZEVBNHHBWSJPJ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2806/issue_event/2484757629@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2806@github.com>
References: <quicwg/base-drafts/pull/2806@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d3dbcecd32_79bc3f8f02ccd960291330"; 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/3m4bmKAsGsHMqMQm7vu4G8vC0ag>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 03:00:21 -0000

----==_mimepart_5d2d3dbcecd32_79bc3f8f02ccd960291330
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2806 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/2806#event-2484757629
----==_mimepart_5d2d3dbcecd32_79bc3f8f02ccd960291330
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</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/2806?email_source=notifications&amp;email_token=AFTOJKYSNFXI2LG3RJUBNWTP7U2TZA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGI7I#event-2484757629">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BD2RXHVYNUEARRY3P7U2TZANCNFSM4HZFMTMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2U46PKSONYENCNYMTP7U2TZA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGI7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJKYSNFXI2LG3RJUBNWTP7U2TZA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGI7I#event-2484757629",
"url": "https://github.com/quicwg/base-drafts/pull/2806?email_source=notifications\u0026email_token=AFTOJKYSNFXI2LG3RJUBNWTP7U2TZA5CNFSM4HZFMTM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGI7I#event-2484757629",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d3dbcecd32_79bc3f8f02ccd960291330--


From nobody Mon Jul 15 20:00:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B1F912018E for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cPGlMsUv1FMq for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:00: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 7F1A91200B2 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 20:00:17 -0700 (PDT)
Date: Mon, 15 Jul 2019 20:00:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563246016; bh=YxoUYasWEGlv7g9KtKJc/apUOr3jCOD1TQ4ntvgZLT8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T6wTgLLWnzrgPhlvT/sNQtwocTbDZ1SdYBwTR+1kbUKaScszd8Z/DgUnTyhiS9k68 e4dGrf6wWsyBT9PXyKgAgWXDp1Z/Gn1YD7NBqidRbLqSTRKMHi+sQoAJnMi29nMi1L kWn+laYMJzNtgobbij5VqKyXl1YdsKJBGSHWbLcg=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK43R55XOEPKNWUVO5N3HJYD7EVBNHHBUBL2WI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2648/issue_event/2484757632@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2648@github.com>
References: <quicwg/base-drafts/issues/2648@github.com>
Subject: Re: [quicwg/base-drafts] Crypto timeout value should include rttvar (#2648)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d3dbfe752c_16f23fc7c54cd96c223892"; 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/-gHtRG9yi6qS51aOJRoHoH1QVB0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 03:00:21 -0000

----==_mimepart_5d2d3dbfe752c_16f23fc7c54cd96c223892
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2648 via #2806.

-- 
You are receiving 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/2648#event-2484757632
----==_mimepart_5d2d3dbfe752c_16f23fc7c54cd96c223892
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="436566706" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2648" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2648/hovercard" href="https://github.com/quicwg/base-drafts/issues/2648">#2648</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</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/2648?email_source=notifications&amp;email_token=AFTOJK4E6A3NTTAV3MOTWYLP7U2T7A5CNFSM4HIBTPQ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJAA#event-2484757632">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6Y5HWEYV6WS4Y6JJTP7U2T7ANCNFSM4HIBTPQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XPL4DUTD7ZDZHI5DP7U2T7A5CNFSM4HIBTPQ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJAA.gif" height="1" width="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/2648?email_source=notifications\u0026email_token=AFTOJK4E6A3NTTAV3MOTWYLP7U2T7A5CNFSM4HIBTPQ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJAA#event-2484757632",
"url": "https://github.com/quicwg/base-drafts/issues/2648?email_source=notifications\u0026email_token=AFTOJK4E6A3NTTAV3MOTWYLP7U2T7A5CNFSM4HIBTPQ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSQNGJAA#event-2484757632",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d3dbfe752c_16f23fc7c54cd96c223892--


From nobody Mon Jul 15 20:01:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4B23F1200B2 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:01:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ZcYnRYJoZ8GI for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:01: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 BD7B6120033 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 20:01:34 -0700 (PDT)
Date: Mon, 15 Jul 2019 20:01:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563246093; bh=zkwG/jmcBHvJx3k1g8LZYx8MF3jW1GqxxokzROuwdig=; h=Date:From:To:Subject:From; b=yqCxlK9UJ3WxtkNOodBIb3Zqaum/sM92Utbo/+5vhG9b3rrQGF+7Lzp1cgGVwT1cc mUD0pZzjcevqAnTMxMvLkIwBRVg+UitTN8vCZUc4zLYvVE4zsEKgW+W8Mrw4Df1P4n PcfNHsJ1ozV+4ZDDn2wcXVb0aVPMnY/rMGktU4sc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0fa949-1e0a9e@github.com>
Subject: [quicwg/base-drafts] 1e0a9e: Script updating gh-pages from cb682867. [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/gMiZZW3x3vGJEt073RDrp4k7l8s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 03:01:36 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1e0a9e921ff8fd6f6965cff05dc11825d578a139
      https://github.com/quicwg/base-drafts/commit/1e0a9e921ff8fd6f6965cff05dc11825d578a139
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-16 (Tue, 16 Jul 2019)

  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 cb682867. [ci skip]



From nobody Mon Jul 15 20:03:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A0FCF1200B2 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:03:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XgnAHiXT_Isg for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 20:03:36 -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 30AEC120033 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 20:03:36 -0700 (PDT)
Date: Mon, 15 Jul 2019 20:03:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563246214; bh=QJbZRInn4L3IQ+QKlMWtGsWzl96663m+YQrIOaz2thY=; h=Date:From:To:Subject:From; b=U9+HxWL98bqLSYOGZsZkcU+4YdK8FGcp7vJPXG8Os4Sk+d6dYphIE1Uf8shZQ6Nwn NtOZOvoNna+wTcCNXOs1ki9B3kPfmoXQsE8dFMvbeJBakJW+qms0+aXkSa37xiniRj g4hOCVUFHx9PZ9DEXPvdbST1207EXGJLdrccyO7g=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1e0a9e-dcef93@github.com>
Subject: [quicwg/base-drafts] dcef93: Script updating issues at 2019-07-16T03:03:28Z. [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/gzDOgfk04-eJco7oHVuOQSbtyVg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 03:03:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: dcef93264b153cfe2cb3df858efae6c56ae22c81
      https://github.com/quicwg/base-drafts/commit/dcef93264b153cfe2cb3df858efae6c56ae22c81
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-16 (Tue, 16 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-16T03:03:28Z. [ci skip]



From nobody Mon Jul 15 22:09:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DF3C8120073 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 22:09:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CPNA5Lt9XpkX for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 22:09:00 -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 A163E12006F for <quic-issues@ietf.org>; Mon, 15 Jul 2019 22:09:00 -0700 (PDT)
Date: Mon, 15 Jul 2019 22:08:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563253739; bh=reR2DMLVT5/ljGuaXtE2TPO0IewVsq3jJVG+WWfpwFo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pEuRMttoWtCNQjhMjHmP14caQUB8K27KeK4+kr5idmulddUSAJfIj6OG1y/Gp4m18 VwaR3saUIYwdXQYBLg6NdRXccQLQfg4Gg1fCKWhQI8fe2rqojT/CoCuPZA/00kPVG+ CvQfDrUgaD0cCYGLHOhakf9goYB0Rr4+qtwKd8cg=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DTDDGTHTUGOF3F4V3HKHGXEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/511666876@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d5bebdabd9_36593fbb404cd96c516860"; 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/yeLKy7wH770y2YG7Bm3Q1aQmhZY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 05:09:02 -0000

----==_mimepart_5d2d5bebdabd9_36593fbb404cd96c516860
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The length is definitely not encrypted (there's no text explaining how to encrypt or decrypt it). I'd mark this issue as editorial and have it track the removal of the sentence `The length of the Payload field is learned once header protection is removed.` Feel free to send 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/2900#issuecomment-511666876
----==_mimepart_5d2d5bebdabd9_36593fbb404cd96c516860
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The length is definitely not encrypted (there's no text explaining how to encrypt or decrypt it). I'd mark this issue as editorial and have it track the removal of the sentence <code>The length of the Payload field is learned once header protection is removed.</code> Feel free to send 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/2900?email_source=notifications&amp;email_token=AFTOJK3VAGBGTJB3WLE6RUTP7VJWXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7WVPA#issuecomment-511666876">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKZDNUPQC23OODXATP7VJWXANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHNN2YI2A4WURWGATP7VJWXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7WVPA.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJK3VAGBGTJB3WLE6RUTP7VJWXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7WVPA#issuecomment-511666876",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJK3VAGBGTJB3WLE6RUTP7VJWXA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7WVPA#issuecomment-511666876",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d5bebdabd9_36593fbb404cd96c516860--


From nobody Mon Jul 15 23:24:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1B3DA120073 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 23:24:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 dJH-YwYTvMWt for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 23:23: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 492BF120187 for <quic-issues@ietf.org>; Mon, 15 Jul 2019 23:23:59 -0700 (PDT)
Date: Mon, 15 Jul 2019 23:23:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563258238; bh=CDfffKt0WtfrwMSlEFJhQQIfmGlMowoPGIRB3BpGPEc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=EnH+6kKdedD9bPE0LZoj7YbTVNrKqPVHhu4Hkpj8wknTWdAQ5XuEDQNJUmwxH40c9 WmHBE3vVmlF8UyYkdIWvd0p/i9p9p9xw/7yQ27SudxLuHyjeejXWt0lZ77G78BwsnM CD4sJukkk77h9Mh1f3mQGLbkfvwbcYlGeWB7ri70=
From: tandf <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RWRBH5CVTJRKA3NV3HKP75EVBNHHBX3CIFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2901@github.com>
Subject: [quicwg/base-drafts] Fix typo (#2901)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d6d7e7a6a4_16983fa418ccd96c119075"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: tandf
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9MaS37ISih7RFNBI4eubqC4579o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 06:24:01 -0000

----==_mimepart_5d2d6d7e7a6a4_16983fa418ccd96c119075
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/2901

-- Commit Summary --

  * Fix typo

-- File Changes --

    M draft-ietf-quic-tls.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2901.patch
https://github.com/quicwg/base-drafts/pull/2901.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/2901

----==_mimepart_5d2d6d7e7a6a4_16983fa418ccd96c119075
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/2901'>https://github.com/quicwg/base-drafts/pull/2901</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix typo</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2901/files#diff-0">draft-ietf-quic-tls.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2901.patch'>https://github.com/quicwg/base-drafts/pull/2901.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2901.diff'>https://github.com/quicwg/base-drafts/pull/2901.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/2901?email_source=notifications&amp;email_token=AFTOJK7CKNZQH5TLPWPXQ4TP7VSP5A5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7MJAVQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZI442YR2F4ARWRJ4LP7VSP5ANCNFSM4ID5O5TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGVBTUATDK3HD4FOLP7VSP5A5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7MJAVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2901?email_source=notifications\u0026email_token=AFTOJK7CKNZQH5TLPWPXQ4TP7VSP5A5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7MJAVQ",
"url": "https://github.com/quicwg/base-drafts/pull/2901?email_source=notifications\u0026email_token=AFTOJK7CKNZQH5TLPWPXQ4TP7VSP5A5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7MJAVQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2d6d7e7a6a4_16983fa418ccd96c119075--


From nobody Mon Jul 15 23:38:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 82E631200B2 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 23:38:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3EqwYnmx-iP7 for <quic-issues@ietfa.amsl.com>; Mon, 15 Jul 2019 23:38:04 -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 3A99712008C for <quic-issues@ietf.org>; Mon, 15 Jul 2019 23:38:04 -0700 (PDT)
Date: Mon, 15 Jul 2019 23:38:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563259083; bh=V0GL0RcQqx9qFqam3hyRyEml/6RWYRmpst7wBuErptg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=O8Nyw66F5gfICqxNat/JMZYdpRt/ubxbvqNHiuw3+JVRgV7D/5PyQUScx5XHcnfmY olDZhcD/bKJyKP2zKzCCfzeyMck0XZ/D64XJXJ5A19yeGEa+nVvJyhmoaYkGHPbhjW 2jicp1fvYKfegFBEsp0WDs7k1yr72i9v9sAFSSAo=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5DCDN3IXQF56PEXM53HKRUXEVBNHHBX2GBDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2899/511686256@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2899@github.com>
References: <quicwg/base-drafts/issues/2899@github.com>
Subject: Re: [quicwg/base-drafts] Sample offset incorrect post draft-22 (#2899)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d70cb11561_53663fe68cccd960937c6"; 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/zM4NNEhTViasFtcA_Fb0ZtJdrCU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 06:38:06 -0000

----==_mimepart_5d2d70cb11561_53663fe68cccd960937c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Do you maybe mean "post draft-20"? Because -22 is the latest we have.

-- 
You are receiving 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/2899#issuecomment-511686256
----==_mimepart_5d2d70cb11561_53663fe68cccd960937c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Do you maybe mean "post draft-20"? Because -22 is the latest we have.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2899?email_source=notifications&amp;email_token=AFTOJK4VVQKGWYGHVDPQDEDP7VUEXA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ73M4A#issuecomment-511686256">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QFQVXBGAHWL3BJZDP7VUEXANCNFSM4IDY427A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YCS62L2G7IFQSF4DP7VUEXA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ73M4A.gif" height="1" width="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/2899?email_source=notifications\u0026email_token=AFTOJK4VVQKGWYGHVDPQDEDP7VUEXA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ73M4A#issuecomment-511686256",
"url": "https://github.com/quicwg/base-drafts/issues/2899?email_source=notifications\u0026email_token=AFTOJK4VVQKGWYGHVDPQDEDP7VUEXA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ73M4A#issuecomment-511686256",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2d70cb11561_53663fe68cccd960937c6--


From nobody Tue Jul 16 00:49:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D45F312017C for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 00:49:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i0tbaNyMmKD9 for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 00:49: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 F24141200B6 for <quic-issues@ietf.org>; Tue, 16 Jul 2019 00:49:01 -0700 (PDT)
Date: Tue, 16 Jul 2019 00:49:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563263340; bh=XhPmRLlzJNDizAP8+UEHUToKZGacBNClRqkC87YSSi4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w/az84dSpmE8AdAH064fDRBkqn15pkT1BvF8iF2iS0fXVsPRub57o3+pCplRE1Uga SaWkDj3NT3GEpyQRkJ/y9b5EQUpJEB3kvDlU/baulH7QJ5kV16AV01XEvsv1iOA6sm OEHXcaVJMVXyvB7d6KNOs9jUmM5h2zObVIFFpMc4=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK23X3FNTAIJMZCENZ53HKZ6ZEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/511706288@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2d816cbcfd4_35453fbe0dccd96c2842a4"; 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/oz8XqWiVCNyktMs_xGijx1ESUq0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 07:49:04 -0000

----==_mimepart_5d2d816cbcfd4_35453fbe0dccd96c2842a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

The Path Probe is abusing coalescing to ensure to get a long header=0D
reflected via an invalid old handshake packet.=0D
=0D
While I do not appreciate this design, everyone else seems to think it is=
 a=0D
great way to solve that problem.=0D
=0D
If the old packet cannot not be skipped, this would not work. If the leng=
th=0D
cannot be decoded due to other changes, this design needs to be revisited=
.=0D
=0D
More likely though, the packet can be skipped, but some implementations=0D=

won=E2=80=99t, so path probing will be broken anyway.=0D
=0D
=0D
On 16 July 2019 at 03.53.16, Nick Banks (notifications@github.com) wrote:=
=0D
=0D
I went back and double checked. I thought Length followed the packet=0D
number, which is variable length, but it does seem to precede the field.=0D=

Perhaps all that does need to be done is to remove that sentence then.=0D=

=0D
=E2=80=94=0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly, view it on GitHub=0D
<https://github.com/quicwg/base-drafts/issues/2900?email_source=3Dnotific=
ations&email_token=3DAABPGN3Q7TB7653HEXMGXS3P7USYXA5CNFSM4ID3FA42YY3PNVWW=
K3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7OL5I#issuecomment-=
511632885>,=0D
or mute the thread=0D
<https://github.com/notifications/unsubscribe-auth/AABPGN2TD6NXLLDY6ETGV5=
DP7USYXANCNFSM4ID3FA4Q>=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/2900#issuecomment-511706288=

----==_mimepart_5d2d816cbcfd4_35453fbe0dccd96c2842a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

The Path Probe is abusing coalescing to ensure to get a long header<br>=0D=

reflected via an invalid old handshake packet.<br>=0D
<br>=0D
While I do not appreciate this design, everyone else seems to think it is=
 a<br>=0D
great way to solve that problem.<br>=0D
<br>=0D
If the old packet cannot not be skipped, this would not work. If the leng=
th<br>=0D
cannot be decoded due to other changes, this design needs to be revisited=
.<br>=0D
<br>=0D
More likely though, the packet can be skipped, but some implementations<b=
r>=0D
won=E2=80=99t, so path probing will be broken anyway.<br>=0D
<br>=0D
<br>=0D
On 16 July 2019 at 03.53.16, Nick Banks (notifications@github.com) wrote:=
<br>=0D
<br>=0D
I went back and double checked. I thought Length followed the packet<br>=0D=

number, which is variable length, but it does seem to precede the field.<=
br>=0D
Perhaps all that does need to be done is to remove that sentence then.<br=
>=0D
<br>=0D
=E2=80=94<br>=0D
You are receiving this because you are subscribed to this thread.<br>=0D
Reply to this email directly, view it on GitHub<br>=0D
&lt;https://github.com/quicwg/base-drafts/issues/2900?email_source=3Dnoti=
fications&amp;email_token=3DAABPGN3Q7TB7653HEXMGXS3P7USYXA5CNFSM4ID3FA42Y=
Y3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ7OL5I#issuec=
omment-511632885&gt;,<br>=0D
or mute the thread<br>=0D
&lt;https://github.com/notifications/unsubscribe-auth/AABPGN2TD6NXLLDY6ET=
GV5DP7USYXANCNFSM4ID3FA4Q&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/2900?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK2LBFR4ODL4WGTMFVLP7V4OZA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2AAJMA#issuecomment-511706288">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK3KSN4FSH7VMYTXYBLP7V4OZANCNFSM4ID3FA4Q">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJKZTQTOWEI4V5445553P=
7V4OZA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2AAJMA.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/issues/2900?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK2LBFR4ODL4WGTMFVLP7V4OZA5CNFSM4=
ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2AAJM=
A#issuecomment-511706288",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=3D=
notifications\u0026email_token=3DAFTOJK2LBFR4ODL4WGTMFVLP7V4OZA5CNFSM4ID3=
FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2AAJMA#i=
ssuecomment-511706288",=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_5d2d816cbcfd4_35453fbe0dccd96c2842a4--


From nobody Tue Jul 16 09:24:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B2E5C12089C for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 09:24:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M2ggi8ZMeYIJ for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 09:24:19 -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 CAC20120896 for <quic-issues@ietf.org>; Tue, 16 Jul 2019 09:24:19 -0700 (PDT)
Date: Tue, 16 Jul 2019 09:24:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563294258; bh=UosGaSqoNGZQ9w5EmNQE9gV20MB1n1EBNQX7JP5hxII=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UoaIBb4dYUaX38SnuQmR8TaQeknI8XulnfMNP3BcbiXxfJ+T6M5gWI/FBsZ14Hu6c zLHS/UeVN9FrvPFU5ESMWjdyUTAN6CaQooPylKXdq0k7b00oKy15Xjze5LuPe0uXve ojCx560bDLOcYjqc1ZELQw6bhQW53NrmnkL3L160=
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HY7EBKHFPDM27VYF3HMWLFEVBNHHBX2GBDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2899/511888142@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2899@github.com>
References: <quicwg/base-drafts/issues/2899@github.com>
Subject: Re: [quicwg/base-drafts] Sample offset incorrect post draft-20 (#2899)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2dfa32ce590_4be03fb4676cd9682725a1"; 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/NevFcoGuAEH-B1D4-yDVKKe3mL0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 16:24:22 -0000

----==_mimepart_5d2dfa32ce590_4be03fb4676cd9682725a1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yes, "as of draft-22", "post draft-20" :) 

-- 
You are receiving 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/2899#issuecomment-511888142
----==_mimepart_5d2dfa32ce590_4be03fb4676cd9682725a1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yes, "as of draft-22", "post draft-20" :)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2899?email_source=notifications&amp;email_token=AFTOJK322X4XFTCQXD25SRLP7XY3FA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2BMWDQ#issuecomment-511888142">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLUHMGZFGRTAO7FK3P7XY3FANCNFSM4IDY427A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2XCKIFHNA46PGZPHLP7XY3FA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2BMWDQ.gif" height="1" width="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/2899?email_source=notifications\u0026email_token=AFTOJK322X4XFTCQXD25SRLP7XY3FA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2BMWDQ#issuecomment-511888142",
"url": "https://github.com/quicwg/base-drafts/issues/2899?email_source=notifications\u0026email_token=AFTOJK322X4XFTCQXD25SRLP7XY3FA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2BMWDQ#issuecomment-511888142",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2dfa32ce590_4be03fb4676cd9682725a1--


From nobody Tue Jul 16 13:24:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 20240120113 for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:24:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 8pXm3-zzXcQr for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:24: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 E46701200C4 for <quic-issues@ietf.org>; Tue, 16 Jul 2019 13:24:33 -0700 (PDT)
Date: Tue, 16 Jul 2019 13:24:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563308672; bh=YOcQijNCiQiLpV39AD6+rKUiXatqJhDp6nDQWYcKcWc=; h=Date:From:To:Subject:From; b=yczMCH6YnCZgiV8mKk61cbeI6r72N1rNIwLAsqqg6n/5rEhavITlETfROXFDTHWic 6aWdmjsHEt5tZVIXD4YQcO4CcmPoceH44iOWBjjuk5wu41THR2ZW1OSbByP8R3UzCu kyfcdIYbjB871+/3rEpJX/k+idCmibGkU8TeNlaA=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/define-terms/36ad00-ca7b3e@github.com>
Subject: [quicwg/base-drafts] ca7b3e: Updates from review feedback
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J9pYKoRaRhszY5ObNzBHmcQlzDM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 20:24:35 -0000

  Branch: refs/heads/define-terms
  Home:   https://github.com/quicwg/base-drafts
  Commit: ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88
      https://github.com/quicwg/base-drafts/commit/ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-07-16 (Tue, 16 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Updates from review feedback



From nobody Tue Jul 16 13:24:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9F9BB120113 for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:24:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RFqTPkTkF7hF for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:24:42 -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 3EEE51200C4 for <quic-issues@ietf.org>; Tue, 16 Jul 2019 13:24:42 -0700 (PDT)
Date: Tue, 16 Jul 2019 13:24:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563308681; bh=eO4skV0zHTqEx7LsfhQ9cckWOh5jz4zM/4nP55cICA8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=h7sZ3nHQBwOG4samhw6CsitTotNHEfxZHNAdyw87PO58D9bWJNoM+XZlH8bH1yWux oK1elRi3rEb3/MPpw9ZWB6NUg60Bm243tED7HHSru/oRESwobQ++rZWrxwYuJ6qsL9 67vnMCGjP2gh0N6sdX97sCiZ2YxRlvwk3ztsT1bU=
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/2857/push/3823504402@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2857@github.com>
References: <quicwg/base-drafts/pull/2857@github.com>
Subject: Re: [quicwg/base-drafts] Define terms for application actions (#2857)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2e3289829d4_52543fe4166cd95c63842"; 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/kzgjS-cQBHh606PL31yyYhdBASc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 20:24:44 -0000

----==_mimepart_5d2e3289829d4_52543fe4166cd95c63842
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88  Updates from review feedback


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2857/files/36ad00639195c13c7035cea167af5d84bdccdd35..ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88

----==_mimepart_5d2e3289829d4_52543fe4166cd95c63842
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/ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88">ca7b3ed</a>  Updates from review 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/2857/files/36ad00639195c13c7035cea167af5d84bdccdd35..ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88?email_source=notifications&amp;email_token=AFTOJKYRTJJ5S3RUKJAT2K3P7YVATA5CNFSM4H4A3T72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TENRTGQZTQOKQOVZWQIZTHAZDGNJQGQ2DAMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4G7P7DY34YLRFYXWTP7YVATANCNFSM4H4A3T7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY27G2RE34VW4UW4UDP7YVATA5CNFSM4H4A3T72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TENRTGQZTQOKQOVZWQIZTHAZDGNJQGQ2DAMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2857/files/36ad00639195c13c7035cea167af5d84bdccdd35..ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88?email_source=notifications\u0026email_token=AFTOJKYRTJJ5S3RUKJAT2K3P7YVATA5CNFSM4H4A3T72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TENRTGQZTQOKQOVZWQIZTHAZDGNJQGQ2DAMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2857/files/36ad00639195c13c7035cea167af5d84bdccdd35..ca7b3edfc59210ac3c4cfabf2dc7ffeacb40ce88?email_source=notifications\u0026email_token=AFTOJKYRTJJ5S3RUKJAT2K3P7YVATA5CNFSM4H4A3T72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TENRTGQZTQOKQOVZWQIZTHAZDGNJQGQ2DAMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2e3289829d4_52543fe4166cd95c63842--


From nobody Tue Jul 16 13:26:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9BD3E1200C4 for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:26:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 SY0kWtnOpFF1 for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:26: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 061A112006A for <quic-issues@ietf.org>; Tue, 16 Jul 2019 13:26:03 -0700 (PDT)
Date: Tue, 16 Jul 2019 13:26:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563308762; bh=w5E6qS40Hm7MTSlin4cVwxTmOftzpB/IB+uCAnUMZVY=; h=Date:From:To:Subject:From; b=uPqWQGoxZyHbeGrfmpzlqQqOjLbbg0Tq5uebDXXpQZdQtKxRMJVCkn7YCJ+CN+XzV JAXlvYCVBT4dkvPoFFsDKf1BHKyx+rI3AqC3BWD9KSU9bNif9GRQhLVPyQE46tkZ/s 2WUe2hymbbkY4/iaLmFrGfCJZC2FTI7BUZowOhWU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/dcef93-d9f6c1@github.com>
Subject: [quicwg/base-drafts] d9f6c1: Script updating gh-pages from ca7b3edf. [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/h7cZhWT4hZ9adYwkiAU2ZHWGNO8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 20:26:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d9f6c1797749a7b51497a63cc4b65a12daeab0be
      https://github.com/quicwg/base-drafts/commit/d9f6c1797749a7b51497a63cc4b65a12daeab0be
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-16 (Tue, 16 Jul 2019)

  Changed paths:
    M define-terms/draft-ietf-quic-http.html
    M define-terms/draft-ietf-quic-http.txt
    M define-terms/draft-ietf-quic-invariants.html
    M define-terms/draft-ietf-quic-invariants.txt
    M define-terms/draft-ietf-quic-qpack.html
    M define-terms/draft-ietf-quic-qpack.txt
    M define-terms/draft-ietf-quic-recovery.html
    M define-terms/draft-ietf-quic-recovery.txt
    M define-terms/draft-ietf-quic-tls.html
    M define-terms/draft-ietf-quic-tls.txt
    M define-terms/draft-ietf-quic-transport.html
    M define-terms/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ca7b3edf. [ci skip]



From nobody Tue Jul 16 13:28:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E9162120116 for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:28:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ogM0atuOVlEY for <quic-issues@ietfa.amsl.com>; Tue, 16 Jul 2019 13:28:25 -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 876A7120113 for <quic-issues@ietf.org>; Tue, 16 Jul 2019 13:28:25 -0700 (PDT)
Date: Tue, 16 Jul 2019 13:28:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563308904; bh=bSv3DGrT3jaJKjsJOWNOpATrhcfch1CFYfYF5LrYo1M=; h=Date:From:To:Subject:From; b=A56Iv7/SvwuWJ2z1HxbCU8btmWDovkq7j38tFFMvJY+gnUwODXDmx3KOYSzDcx+uD KamPdEqH6dbraHbN/zpk2ZnrVuScksGtFqyUn1uXqn2ondkhBXkhJW9pwYynfwSejV A4iMkYUrXsRxGHjQQX+U812tkAKmQQmwrG2yZVFE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d9f6c1-e1eec1@github.com>
Subject: [quicwg/base-drafts] e1eec1: Script updating issues at 2019-07-16T20:28:17Z. [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/IyNeYr6wDgP-nHwKhcTBUWyL7jo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 16 Jul 2019 20:28:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e1eec1cf89cfd56b59e90b6d027de9ff063e5bc3
      https://github.com/quicwg/base-drafts/commit/e1eec1cf89cfd56b59e90b6d027de9ff063e5bc3
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-16 (Tue, 16 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-16T20:28:17Z. [ci skip]



From nobody Wed Jul 17 03:27:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C63F0120024 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 03:27:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2c7nJmskHDpO for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 03:27: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 466791201C9 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 03:27:18 -0700 (PDT)
Date: Wed, 17 Jul 2019 03:27:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563359237; bh=WmaW9Q21glXTl6qnjATXhpaA2rGI30QhBJFTZV9hQEY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w+Y+fivbPwhHqaEdcyk2F32TWcIvANoVm2BzryhP4+PZgrW142vi3bebgX7113+KY d6d7YMRWSg0DHh6rk/mH4rvGJGbmXFh3oMg+TB7k3kFvump7IeNTf9cmU4L5mF91Dr 1Sb59JfbJM+lelwc+/6B9YoXrSq1GOW/uGwHtA9M=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZSMTOZ3S475IRZVN3HQVILEVBNHHBULDWIQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2662/c512197122@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2662@github.com>
References: <quicwg/base-drafts/pull/2662@github.com>
Subject: Re: [quicwg/base-drafts] Replace HTTP_MALFORMED_FRAME error code (#2662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2ef8055e53a_5f003fb7714cd96c116630"; 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/c8Sz6aktBLDE6wbOsHo-gM6OTww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 10:27:20 -0000

----==_mimepart_5d2ef8055e53a_5f003fb7714cd96c116630
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@rmarx suggests that we rename HTTP_INCOMPLETE_REQUEST to HTTP_REQUEST_INCOMPLETE in order to be more consistent with other error codes. That SGTM so I'll make that change unless anyone disagrees.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2662#issuecomment-512197122
----==_mimepart_5d2ef8055e53a_5f003fb7714cd96c116630
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=2240689" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rmarx">@rmarx</a> suggests that we rename HTTP_INCOMPLETE_REQUEST to HTTP_REQUEST_INCOMPLETE in order to be more consistent with other error codes. That SGTM so I'll make that change unless anyone disagrees.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2662?email_source=notifications&amp;email_token=AFTOJK2DLBEQQLDBUEMF4X3P73XYLA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2DYEAQ#issuecomment-512197122">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4S532YSKOTS2YTEC3P73XYLANCNFSM4HJSXHSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7MJ7MDP3E3LZW22VLP73XYLA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2DYEAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2662?email_source=notifications\u0026email_token=AFTOJK2DLBEQQLDBUEMF4X3P73XYLA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2DYEAQ#issuecomment-512197122",
"url": "https://github.com/quicwg/base-drafts/pull/2662?email_source=notifications\u0026email_token=AFTOJK2DLBEQQLDBUEMF4X3P73XYLA5CNFSM4HJSXHS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2DYEAQ#issuecomment-512197122",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2ef8055e53a_5f003fb7714cd96c116630--


From nobody Wed Jul 17 04:53:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DFD7F1202FC for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 04:53:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Xp1kqYr2cMpt for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 04:53: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 6A3381202F6 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 04:53:32 -0700 (PDT)
Date: Wed, 17 Jul 2019 04:53:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563364411; bh=fGgGx3dMsSUHPo2TrQ5Pvv2mQaCqV186NKqdFaGTJgI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ttmm6j84UPyWlfyCCjoK777eHMmT7E/uVHi+6ZeWoiOrkkXekKqwGcCAVOYnSWlHA axcDYvUz0zHASpn/6nY3lePnO3CZ4J85ovIgdYvq/4sClv5nQHwSSssZxRu7NZRA5J Gcl93Fi4mzP53ZrQxuarI6A5ux/v9y5NeRkXTk3k=
From: =?UTF-8?B?SmVyZW15IExhaW7DqQ==?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4T4YROURSSVBIH2KN3HQ7LXEVBMPHAEC7MCA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421/34335760@github.com>
In-Reply-To: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
References: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806) (cb68286)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f0c3b56f09_6df83fbcca2cd96016076f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: jlaine
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cGeFJXiXaMA63qfiA8JFUmqNXYk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 11:53:34 -0000

----==_mimepart_5d2f0c3b56f09_6df83fbcca2cd96016076f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Is this right? It looks like this should be an if/else which still leads to `loss_detection_timer.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/commit/cb6828672ebbb3288be99155ae151ed243723421#commitcomment-34335760
----==_mimepart_5d2f0c3b56f09_6df83fbcca2cd96016076f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Is this right? It looks like this should be an if/else which still leads to <code>loss_detection_timer.update</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/commit/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications&amp;email_token=AFTOJK2H7VQSHFUM55EBOUDP74B3XA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3AQ#commitcomment-34335760">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HITSY2YYUSAVDXDLP74B3XANCNFSM4IEPQUGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK33ZQKYSVXN3FEDZWLP74B3XA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3AQ.gif" height="1" width="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/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJK2H7VQSHFUM55EBOUDP74B3XA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3AQ#commitcomment-34335760",
"url": "https://github.com/quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJK2H7VQSHFUM55EBOUDP74B3XA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3AQ#commitcomment-34335760",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f0c3b56f09_6df83fbcca2cd96016076f--


From nobody Wed Jul 17 05:52:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 17EB51200A3 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:52:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qiLH6YIfUuQ2 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:52: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 929DB120094 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:52:02 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:52:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563367921; bh=FZDi/zbcizWMM5gpn/Kq619OsXMpRtOweKqIV2V87Kk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GOir5Yb9x9mThLCi0RIMCxdOONK1Dp50bZTmWeCv5uBPisKFE44B0IAyzEspyvLF9 G42v/CJt4nVH1GhsupXVRPkv+iTJ3QrNVgMqYu3IVTVAHTckNu7ZmW5Dg9mIrMCyRe bgO97sEBAt4YWqFmiEFrCCGpYs8NDx2gl19z3eVI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK45AZPSP26R6HJIKVN3HRGHDEVBMPHAEC7PE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421/34336551@github.com>
In-Reply-To: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
References: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806) (cb68286)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f19f183a77_3c533ff0ecacd95c38413d"; 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/09ZwyLnmrlM9actQOh2LSmZZ19c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:52:04 -0000

----==_mimepart_5d2f19f183a77_3c533ff0ecacd95c38413d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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/commit/cb6828672ebbb3288be99155ae151ed243723421#commitcomment-34336551
----==_mimepart_5d2f19f183a77_3c533ff0ecacd95c38413d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/commit/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications&amp;email_token=AFTOJKYSA5LSS6U6Q3RC4W3P74IXDA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3ZH#commitcomment-34336551">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3IATIJVLNGPWDMNWLP74IXDANCNFSM4IEPQUGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3YDHPKOBVGECF2GTTP74IXDA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3ZH.gif" height="1" width="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/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJKYSA5LSS6U6Q3RC4W3P74IXDA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3ZH#commitcomment-34336551",
"url": "https://github.com/quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJKYSA5LSS6U6Q3RC4W3P74IXDA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX3ZH#commitcomment-34336551",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f19f183a77_3c533ff0ecacd95c38413d--


From nobody Wed Jul 17 05:55:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 492EC1203AC for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:55:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hjx419p0Y9bV for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:55:38 -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 AE85012040C for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:55:38 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:55:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368137; bh=UhucFX5FWCjrGpEhLFyE8c6s/524w+RY2yx7fvBlASc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IVKzEz4FsHuDnlIiTEejE+/emya6syvQsSUorn9RqONsFkNSkh9jtx3BiNeee9bE8 JKksvG4hrhJKaAACdKlooKCN4EflPq+te7uxuV2sEiU/DKDth23W5y+Ymj/HGvb8LD p78yeoAgTHdMn+DsIaz3WPpZL/KX1R3EHVJZK0GA=
From: =?UTF-8?B?SmVyZW15IExhaW7DqQ==?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHPX5W2HKZ5YRUP2V3HRGUTEVBMPHAEC7PJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421/34336589@github.com>
In-Reply-To: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
References: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806) (cb68286)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1ac9c3572_489f3f995d0cd95c283977"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: jlaine
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x8bQ6bxpTp_R_YexYl6eJVb1Gz8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:55:48 -0000

----==_mimepart_5d2f1ac9c3572_489f3f995d0cd95c283977
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

"there" instead of "ther"

-- 
You are receiving 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/cb6828672ebbb3288be99155ae151ed243723421#commitcomment-34336589
----==_mimepart_5d2f1ac9c3572_489f3f995d0cd95c283977
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>"there" instead of "ther"</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications&amp;email_token=AFTOJK4QH5KXLRVTMXM53HLP74JETA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX32N#commitcomment-34336589">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2FSW77QVCTSCWCCBLP74JETANCNFSM4IEPQUGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY4XHIAVGA3SULMQLTP74JETA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX32N.gif" height="1" width="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/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJK4QH5KXLRVTMXM53HLP74JETA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX32N#commitcomment-34336589",
"url": "https://github.com/quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJK4QH5KXLRVTMXM53HLP74JETA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX32N#commitcomment-34336589",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f1ac9c3572_489f3f995d0cd95c283977--


From nobody Wed Jul 17 05:56:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0967112040B for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:55:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 x51qTcpjOmAC for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:55: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 8D9921203A6 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:55:53 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:55:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368152; bh=LZD2yVVYpkMf5QtxuHbsDMe9/fHBId6iZlGSNTA40hI=; h=Date:From:To:Subject:From; b=oy8vqH5lLBEDEnn/5oaOkk8bko/wN4KODPY5h3QsYN5POl/PhmUCpuerAL/o4KiSI ZXO7HBaicGd6AaeiZRdO84z42nlydxWumtDyCHiSOepw5RV4ZG326zk36M+Acv05DN qgdjlzUbdgyr76wOEhIB5e3rLekkeSXDDd16eGKU=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-no-rtt/000000-4f45e3@github.com>
Subject: [quicwg/base-drafts] 4f45e3: Fix lack of exponential backoff in 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/TNXYFKTWyNyU8eBUpe5JCTlXyik>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:56:01 -0000

  Branch: refs/heads/ianswett-fix-no-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4f45e3d7088cf9713f42f2fb3966b69ed013b7a5
      https://github.com/quicwg/base-drafts/commit/4f45e3d7088cf9713f42f2fb3966b69ed013b7a5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix lack of exponential backoff in pseudocode

When there is no smoothed_rtt, PR #2806 inadvertently removed the exponential backoff from the pseudocode.



From nobody Wed Jul 17 05:56:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BDE60120098 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:56:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 IBsQqQ_d3sJN for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:56:18 -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 86BFC1203E4 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:56:18 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:56:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368178; bh=TaC8rABWKtuSPlanYSQ5KYBNjQhLUxGOjh2/0G5LPjg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Jr4O1+TAlW4lVFcpQfFI1TKt8KEUwStF6UC2Q646SJKXj5S/scKdpeDRTLjcmy/Tg 2iX5Q1pK8ujfpDZGgryMdh7PAeq32yZ1gThKr3uETn/JBje9UfmNBQdbG4QtLvHnUm 7vIhYcY7gIYScTJ/78bbM42RsOTqccV+vDeUJ5Dw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2YJV5GZNA4YUFWEMV3HRGXDEVBNHHBX5YTPA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2902@github.com>
Subject: [quicwg/base-drafts] Fix lack of exponential backoff in pseudocode (#2902)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1af1b9f98_3d153fcfd6acd95c262176"; 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/IdrCErJ5Qi-F-vANdI_cl3LgmuQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:56:22 -0000

----==_mimepart_5d2f1af1b9f98_3d153fcfd6acd95c262176
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

When there is no smoothed_rtt, PR #2806 inadvertently removed the exponential backoff from the pseudocode.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2902

-- Commit Summary --

  * Fix lack of exponential backoff in pseudocode

-- File Changes --

    M draft-ietf-quic-recovery.md (9)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2902.patch
https://github.com/quicwg/base-drafts/pull/2902.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/2902

----==_mimepart_5d2f1af1b9f98_3d153fcfd6acd95c262176
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>When there is no smoothed_rtt, PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</a> inadvertently removed the exponential backoff from the pseudocode.</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/2902'>https://github.com/quicwg/base-drafts/pull/2902</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix lack of exponential backoff in pseudocode</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2902/files#diff-0">draft-ietf-quic-recovery.md</a>
    (9)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2902.patch'>https://github.com/quicwg/base-drafts/pull/2902.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2902.diff'>https://github.com/quicwg/base-drafts/pull/2902.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/2902?email_source=notifications&amp;email_token=AFTOJK6IYKKOMGOGB26D6G3P74JHDA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XCN4A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VDIFZC72HRDD3ZHTP74JHDANCNFSM4IEQBVAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3HSL2LXUDO7TVPC4LP74JHDA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XCN4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2902?email_source=notifications\u0026email_token=AFTOJK6IYKKOMGOGB26D6G3P74JHDA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XCN4A",
"url": "https://github.com/quicwg/base-drafts/pull/2902?email_source=notifications\u0026email_token=AFTOJK6IYKKOMGOGB26D6G3P74JHDA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XCN4A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f1af1b9f98_3d153fcfd6acd95c262176--


From nobody Wed Jul 17 05:56:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D227412004D for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:56:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vde6wqZgowHH for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:56:41 -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 CB3EE120077 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:56:40 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:56:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368199; bh=lCM7YteUwDnZCBJywVqv6KVEOT3aHXtWrrb2f9+4DmE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gOi0rIhLuhvgbYSg0zhtiqf4l1rpsrZLONU/ObS/N8eFUdvd+LI25P4TRb4kfuOoS QZ2pDKRlKQ/haGj+BO6dRh9/mjYB3sJbi5M9wl1FcR2cqpHR6vZwyW6fVLLSw9HA5p /E3RFOASqpy1yXnq/Cwy1D4v1wwOKaIyuaNUOohM=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VWO4NSIE5GBOPJXV3HRGYPEVBMPHAEC7PLU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421/34336605@github.com>
In-Reply-To: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
References: <quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421@github.com>
Subject: Re: [quicwg/base-drafts] Merge Crypto timeout and PTO (#2806) (cb68286)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1b07a46d2_55473f9d19acd960359334"; 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/REmoywAZVzMUFJa9KaYWBiFqnnE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:56:43 -0000

----==_mimepart_5d2f1b07a46d2_55473f9d19acd960359334
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

https://github.com/quicwg/base-drafts/pull/2902

-- 
You are receiving 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/cb6828672ebbb3288be99155ae151ed243723421#commitcomment-34336605
----==_mimepart_5d2f1b07a46d2_55473f9d19acd960359334
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 issue title" data-id="469177208" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2902" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2902/hovercard" href="https://github.com/quicwg/base-drafts/pull/2902">#2902</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/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications&amp;email_token=AFTOJK5TCERLYBICHXBFOSLP74JIPA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX325#commitcomment-34336605">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYYG6G7OTRSYOPLGRTP74JIPANCNFSM4IEPQUGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDUMAEWZAZ6TOYKTDP74JIPA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX325.gif" height="1" width="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/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJK5TCERLYBICHXBFOSLP74JIPA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX325#commitcomment-34336605",
"url": "https://github.com/quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421?email_source=notifications\u0026email_token=AFTOJK5TCERLYBICHXBFOSLP74JIPA5CNFSM4IEPQUGKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBAX325#commitcomment-34336605",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f1b07a46d2_55473f9d19acd960359334--


From nobody Wed Jul 17 05:58:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F214412023F for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:58:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 OS91gY0-NkLd for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:58:22 -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 63E841202C7 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:58:22 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:58:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368302; bh=UQXwxUkNU3QtstMoL1ipPUHwLAzdaPWWoWqkacpIS/I=; h=Date:From:To:Subject:From; b=10XuCosxwZUVTJthfTQtzHPvR7Dmg7gUKm980TRfDFg/5KeRSq1aU7kxhRt7K4pKq 6UVJqOm88fQXW5dLcbrHSw21/VVph7x/AhtmSeBim6GM7X+mvuDyIERsIQ7khfZRzw dskmIsZQlMDzmaWL/2CN6h2s5KsLnR53l0RsbUZc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-no-rtt/4f45e3-0c307d@github.com>
Subject: [quicwg/base-drafts] 0c307d: 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/HPrJ_8nfSOhqXydrVZbCztQIs80>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:58:30 -0000

  Branch: refs/heads/ianswett-fix-no-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8
      https://github.com/quicwg/base-drafts/commit/0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed Jul 17 05:58:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4F6A6120661 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:58:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 uV6vJMh7ttwD for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:58: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 77217120329 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:58:32 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:58:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368311; bh=fPWm7cXa35FhJUZmtMxsxZIVeIaz+PQFtwQSikyBtNc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZIwgwHHZwP3s5hudYJpxuKVJpzf7OjMG3T7Zhwt18RORMjeLMlkSGSCDRRUo+ygtL xJ8DT50MJNBE16Cpw/PTHZZ/Fi29pRQge63n+peQVsGkxr/21Rl4ihcmCo8RWuz07g uzHNY8Py/EWJmMrrXxgLI0V8p4Rs1dtsG33hgwdI=
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/2902/push/3826183026@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2902@github.com>
References: <quicwg/base-drafts/pull/2902@github.com>
Subject: Re: [quicwg/base-drafts] Fix lack of exponential backoff in pseudocode (#2902)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1b778d852_782a3fa6e26cd96412714"; 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/HRfVd5m8qUndwDoEz03IL5axcek>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:58:41 -0000

----==_mimepart_5d2f1b778d852_782a3fa6e26cd96412714
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8  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/2902/files/4f45e3d7088cf9713f42f2fb3966b69ed013b7a5..0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8

----==_mimepart_5d2f1b778d852_782a3fa6e26cd96412714
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/0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8">0c307d7</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/2902/files/4f45e3d7088cf9713f42f2fb3966b69ed013b7a5..0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8?email_source=notifications&amp;email_token=AFTOJK7ECLYNHDKNBVTH3ADP74JPPA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMJYGMYDENQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3SEFCU4QNGSOTVKFDP74JPPANCNFSM4IEQBVAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3RGDGNAMCV5ROX6YDP74JPPA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMJYGMYDENQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2902/files/4f45e3d7088cf9713f42f2fb3966b69ed013b7a5..0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8?email_source=notifications\u0026email_token=AFTOJK7ECLYNHDKNBVTH3ADP74JPPA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMJYGMYDENQ",
"url": "https://github.com/quicwg/base-drafts/pull/2902/files/4f45e3d7088cf9713f42f2fb3966b69ed013b7a5..0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8?email_source=notifications\u0026email_token=AFTOJK7ECLYNHDKNBVTH3ADP74JPPA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMJYGMYDENQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f1b778d852_782a3fa6e26cd96412714--


From nobody Wed Jul 17 05:59:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD2E01200F1 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:59:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pNdVZxsclLlm for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 05:59:43 -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 5FCF01200E5 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 05:59:43 -0700 (PDT)
Date: Wed, 17 Jul 2019 05:59:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368382; bh=EjZ4xOSqsIRrxY9rkhRUG32pFk7fmQa4uRztHNXg7rI=; h=Date:From:To:Subject:From; b=MOkTiiwvJC+tWwoS/I3tiLvAqT7yNVRasJ61KjL4p4m8JtXmIhCj6Iz81TisTy1eN g4bM7Co3Z4Ir4aMDXDaFSfFsoFFirMYzVPJbvL+4fOUjs19PdlOXrsAjjEIFyNbhL9 VIC417O3dzPAQOl6MGvokLsEcktp0QafpWcNWd0Q=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e1eec1-c6111e@github.com>
Subject: [quicwg/base-drafts] c6111e: Script updating gh-pages from 0c307d7e. [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/W6QptCgbKNKw2loyM9B7uWdmnGM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 12:59:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c6111efb437cb00ebab9c0fd4988a183ec939c73
      https://github.com/quicwg/base-drafts/commit/c6111efb437cb00ebab9c0fd4988a183ec939c73
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    A ianswett-fix-no-rtt/draft-ietf-quic-http.html
    A ianswett-fix-no-rtt/draft-ietf-quic-http.txt
    A ianswett-fix-no-rtt/draft-ietf-quic-invariants.html
    A ianswett-fix-no-rtt/draft-ietf-quic-invariants.txt
    A ianswett-fix-no-rtt/draft-ietf-quic-qpack.html
    A ianswett-fix-no-rtt/draft-ietf-quic-qpack.txt
    A ianswett-fix-no-rtt/draft-ietf-quic-recovery.html
    A ianswett-fix-no-rtt/draft-ietf-quic-recovery.txt
    A ianswett-fix-no-rtt/draft-ietf-quic-tls.html
    A ianswett-fix-no-rtt/draft-ietf-quic-tls.txt
    A ianswett-fix-no-rtt/draft-ietf-quic-transport.html
    A ianswett-fix-no-rtt/draft-ietf-quic-transport.txt
    A ianswett-fix-no-rtt/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 0c307d7e. [ci skip]



From nobody Wed Jul 17 06:02:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B85812010E for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:02:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 H9x3qxX7UiWw for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:02: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 A41D61200E5 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:02:12 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:02:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368531; bh=2HuB+bKLEqy0JzDK5/z31TUyhoZIl2qdpIK9zkeBOgU=; h=Date:From:To:Subject:From; b=gfy9dEwV0jV0VYTC9vX+YAGa7z3oEc/flvbefJiv0JgU67kuYyHPzZT3SZVghXlhA CazRgHCSGvtwwZUOZSw4BlT62m1n6VzxVCtDDuWHyXvHu1QbQprK1iO8/AZUs6P5Hx c4LFe5OIYD8miwKjOl3CxfatX/0ISINXEOEZj8dk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c6111e-34dcd8@github.com>
Subject: [quicwg/base-drafts] 34dcd8: Script updating issues at 2019-07-17T13:02:05Z. [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/Hj6ZpnN92Y4Zsk_3AGuT7mDVnT4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:02:14 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 34dcd81bb89e10d9800606eef02cbacbbdb12f00
      https://github.com/quicwg/base-drafts/commit/34dcd81bb89e10d9800606eef02cbacbbdb12f00
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-17T13:02:05Z. [ci skip]



From nobody Wed Jul 17 06:07:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 26F88120224 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:07:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 XimoJI5i7eBF for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:07: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 C83001201BB for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:07:09 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:07:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368828; bh=4hOt82ViJgA9DrdgY+SPstcB1uVrKIfan4eFsT9UTnU=; h=Date:From:To:Subject:From; b=UcD+kxHUhRkfBihHYa65lB4i65BujfVkmLn5GCOdtvAsFsgu8vhk7T172eOFlpyGJ 8Wc+g2pN23BqCHLjk+UWUVb/hR3HEORFf9XZGvYSiMMakiyzMnoDU3e9Vnf07d6eZ0 BTVvu+wCFtzrFHJNBGfTh+GN/XTezgckVy6wjUCw=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-no-rtt/0c307d-9ee4f3@github.com>
Subject: [quicwg/base-drafts] 9ee4f3: 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/L9Rw3VBa8TreqImpkIMv7Zvi_rQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:07:11 -0000

  Branch: refs/heads/ianswett-fix-no-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9ee4f3c5e9f4654af31f6b05c221978307258683
      https://github.com/quicwg/base-drafts/commit/9ee4f3c5e9f4654af31f6b05c221978307258683
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed Jul 17 06:07:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B9DA1120224 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:07:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 onlOKr2EFogL for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:07: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 83B8B1201BB for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:07:17 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:07:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368836; bh=EN6clmH/Az3TUMH0OGG9Q5Wldc5JgHHPMEFRKaMlqbk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1dgTHgLQDsyOb1hccGyIdy0y1tGX8mBE89quHTxK8yzLiBERrT2bG6JC5pwTopt2K GoksvoHTIFjHS92LU+HEClDBJ/Q7FmLfDg9U3NYaw7Cth24E6wNOtYWAYmR5z+KEPS 10bEpitX+3LhgBxKzJzWfam3LeyvZLNkXMeBsEDk=
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/2902/push/3826218635@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2902@github.com>
References: <quicwg/base-drafts/pull/2902@github.com>
Subject: Re: [quicwg/base-drafts] Fix lack of exponential backoff in pseudocode (#2902)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1d84a0544_771c3fcfc38cd96c118363"; 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/83XmViaI-SkOtlXw0titazKyaJ8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:07:19 -0000

----==_mimepart_5d2f1d84a0544_771c3fcfc38cd96c118363
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

9ee4f3c5e9f4654af31f6b05c221978307258683  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/2902/files/0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8..9ee4f3c5e9f4654af31f6b05c221978307258683

----==_mimepart_5d2f1d84a0544_771c3fcfc38cd96c118363
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/9ee4f3c5e9f4654af31f6b05c221978307258683">9ee4f3c</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/2902/files/0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8..9ee4f3c5e9f4654af31f6b05c221978307258683?email_source=notifications&amp;email_token=AFTOJKYW7JRWXDXMPCOJHHLP74KQJA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMRRHA3DGNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52PM4DRLG4NL7BD7LP74KQJANCNFSM4IEQBVAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ITMDLZT32QNJQNQLP74KQJA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMRRHA3DGNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2902/files/0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8..9ee4f3c5e9f4654af31f6b05c221978307258683?email_source=notifications\u0026email_token=AFTOJKYW7JRWXDXMPCOJHHLP74KQJA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMRRHA3DGNI",
"url": "https://github.com/quicwg/base-drafts/pull/2902/files/0c307d7e97c08c6a29933ae826dd3c1d6f3fe1f8..9ee4f3c5e9f4654af31f6b05c221978307258683?email_source=notifications\u0026email_token=AFTOJKYW7JRWXDXMPCOJHHLP74KQJA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNBVGY3DSNKQOVZWQIZTHAZDMMRRHA3DGNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f1d84a0544_771c3fcfc38cd96c118363--


From nobody Wed Jul 17 06:08:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AC9FF12022B for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:08:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_wa6WfJAhhL for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:08: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 661A412038A for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:08:32 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:08:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563368911; bh=2S35LqPqn1OmM092YxyFahIwajBHu0eZmG/kDom8wMA=; h=Date:From:To:Subject:From; b=xki27ZFEgtXPhNu7/pQro1Q4CVgAvcQJGsWi6MvMeT1Co+F2bOgEPGp1xZuIh2gMu 1urWw2Bzurx65Y/S94w1sqY7TchX7CNn7DkKldgXrpkscrVweklHrys7nd5HChVvy/ WBWU94rx1SAWsIkYpPOJrqeMqaBobkxFfb7Sfp3A=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/34dcd8-229604@github.com>
Subject: [quicwg/base-drafts] 229604: Script updating gh-pages from 9ee4f3c5. [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/TAE0mLQ-zapAHJD_LByeA9hUks0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:08:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2296042782e96d3f23d86aaaa6f27cbc61d78fd4
      https://github.com/quicwg/base-drafts/commit/2296042782e96d3f23d86aaaa6f27cbc61d78fd4
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M ianswett-fix-no-rtt/draft-ietf-quic-recovery.html
    M ianswett-fix-no-rtt/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9ee4f3c5. [ci skip]



From nobody Wed Jul 17 06:13:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B19FC12067B for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 uk3jNC_Egv-R for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13:14 -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 BEC0A120691 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:13:14 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:13:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369193; bh=YOoB5+NluT6Hxh3DfF1NgvN/GOmVtQHpcOoIdMVPxmo=; h=Date:From:To:Subject:From; b=M1mgVO8KwhgQynY1bhhVi4K9zF2oc91lZMWpJqGrnLlERMcJPUQf3WClat1NWSYJ5 DMq10RNzVMikVAgXSI4tVTlwrAwltWdfqdvqrL6ogWt+in7IIlUUUwHjpn4rLAKC2r tBndny6AYLfWb1r/o0gME+Mf/qhqw02q5KRNsz/I=
From: Lucas Pardue <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/cb6828-d090d4@github.com>
Subject: [quicwg/base-drafts] d090d4: Don't state QUIC error codes.
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ng2db0RJ7kF9zEx7xXAHHzWtTH8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:13:23 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d090d4d796abf702f7246c06cbae1011342c360f
      https://github.com/quicwg/base-drafts/commit/d090d4d796abf702f7246c06cbae1011342c360f
  Author: lucas <lucas@cloudflare.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Don't state QUIC error codes.



From nobody Wed Jul 17 06:13:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BD5DE120418 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RKBgIMStBXcF for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13: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 210CE120677 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:13:23 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:13:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369202; bh=ycJAZxA/JhXySK5PGKQVMSJDWp4N8xjZzyko3XcbKd4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T7DCs2qvDcCWDP067PKpJQwrLjnNoG69yFbrni2ZpkbuTl27pXudn4ynlPOzPd86P 4C1LMcK1YCeVQbUXG7Q+ZDX8gXlccb1bAFJ0H+5jcTM1EvCWQFTE/V/foORNgSd7Ip 5MgSiZvu5EspVTaZSvHjW9IvkkL/ADVz8729G6mY=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2AXA7BNSKSW2YQSWV3HRIXFEVBNHHBWTGIMA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2815/issue_event/2489375472@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2815@github.com>
References: <quicwg/base-drafts/issues/2815@github.com>
Subject: Re: [quicwg/base-drafts] H3 has a stale reference to STREAM_ID_ERROR (#2815)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1ef25b144_b023fda158cd9602133b4"; 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/vxGuPalnrWDcT9-hBkoecALqDdE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:13:26 -0000

----==_mimepart_5d2f1ef25b144_b023fda158cd9602133b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2815 via #2866.

-- 
You are receiving 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/2815#event-2489375472
----==_mimepart_5d2f1ef25b144_b023fda158cd9602133b4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458016864" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2815" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2815/hovercard" href="https://github.com/quicwg/base-drafts/issues/2815">#2815</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462758439" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2866" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2866/hovercard" href="https://github.com/quicwg/base-drafts/pull/2866">#2866</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/2815?email_source=notifications&amp;email_token=AFTOJK6LOMJVEFMJQSU27VTP74LHFA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV4A#event-2489375472">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTYWR2WQBZ3ONC66LP74LHFANCNFSM4HZJVNIA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PLPAMF57TZOTTMFTP74LHFA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV4A.gif" height="1" width="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/2815?email_source=notifications\u0026email_token=AFTOJK6LOMJVEFMJQSU27VTP74LHFA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV4A#event-2489375472",
"url": "https://github.com/quicwg/base-drafts/issues/2815?email_source=notifications\u0026email_token=AFTOJK6LOMJVEFMJQSU27VTP74LHFA5CNFSM4HZJVNIKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV4A#event-2489375472",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f1ef25b144_b023fda158cd9602133b4--


From nobody Wed Jul 17 06:13:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5E3CF12066B for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 JiCxpvKq013j for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13: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 27E91120658 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:13:23 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:13:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369202; bh=HTawvU9ND4KWgKKoF60BcQpzY7CBjMdRdiUGsteN1dM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZdpUBLzqJFaQ+2ZG/a1txM5okDE1KtIfoO/alnl7vwtZmObHlsSuURG/Satc59lUj ijtwI8QDnIxjC9Pbf8yveJXaWCbGcnnKMvcdJRVHPBpMYnln2TUR/+S+ijCQIZBjUj pNiuDWE92nV/epOQDG+R5A/pR4kUnhj6wKpFvnjI=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2424VJC5ROWIUL2QN3HRIXFEVBNHHBXFJCE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2866/issue_event/2489375466@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2866@github.com>
References: <quicwg/base-drafts/pull/2866@github.com>
Subject: Re: [quicwg/base-drafts] Don't state QUIC error codes in HTTP/3 (#2866)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1ef23d6f0_13fd3f8b3d8cd9643161e6"; 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/Jir3E-xB5JxAYu42LzTz6S4i94c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:13:26 -0000

----==_mimepart_5d2f1ef23d6f0_13fd3f8b3d8cd9643161e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2866 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/2866#event-2489375466
----==_mimepart_5d2f1ef23d6f0_13fd3f8b3d8cd9643161e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462758439" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2866" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2866/hovercard" href="https://github.com/quicwg/base-drafts/pull/2866">#2866</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/2866?email_source=notifications&amp;email_token=AFTOJK3AJLCMCMCQCWBB66LP74LHFA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV2Q#event-2489375466">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NEK56MSKBX2EEUI3P74LHFANCNFSM4H4TGEOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2256X5WTE2J37YWVTP74LHFA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJK3AJLCMCMCQCWBB66LP74LHFA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV2Q#event-2489375466",
"url": "https://github.com/quicwg/base-drafts/pull/2866?email_source=notifications\u0026email_token=AFTOJK3AJLCMCMCQCWBB66LP74LHFA5CNFSM4H4TGEOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQNV2Q#event-2489375466",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f1ef23d6f0_13fd3f8b3d8cd9643161e6--


From nobody Wed Jul 17 06:13:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B322212023F for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 gwJTqX_I4pRT for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13: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 4F5E912022B for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:13:28 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:13:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369207; bh=XBSdOzXa7lHiWqNqGDJXvLh0tVgvjFc/bxE2qQLgfzY=; h=Date:From:To:Subject:From; b=kXKgfUgNQEyq8V27MlbLoAzqenUrFfcqsVR1KTkeP1ofkIq9g7eQ6pW0qCa5mXuNm oMeCjbSY4he8kXNk+8MZYAjXYGciFswkmOsFWIMs8cjSx2w4FP0/QoqYjaHYBgX2W3 xvC4LbMa6e3V639zjOYtj937l4JnXsVI2vpjIpEc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d090d4-d432cd@github.com>
Subject: [quicwg/base-drafts] d432cd: Fix lack of exponential backoff in pseudocode (#2902)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HCUDF8fOY8vuqyDFY8GE31fvtEI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:13:30 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d432cd6f844cabbce899e21ed2e177dc0815bba0
      https://github.com/quicwg/base-drafts/commit/d432cd6f844cabbce899e21ed2e177dc0815bba0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix lack of exponential backoff in pseudocode (#2902)

* Fix lack of exponential backoff in pseudocode

When there is no smoothed_rtt, PR #2806 inadvertently removed the exponential backoff from the pseudocode.

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md



From nobody Wed Jul 17 06:13:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 092EF12022B for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p1fgWLEEKiCG for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:13:36 -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 B47E1120203 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:13:36 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:13:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369216; bh=Ayo70hRHtQ7K5v6k5grJV5AQKegwIDhD0kFZE4XtGi8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SSxeF7NcamrZ2aQ8SSMzIcu8kQVsaiktA0uiAOfsZwyIiIAL+RNoEs0nuK0KAax2o DNNvVyNteXnCAJIWvWIoSsOyRzg2WFWjV/uzZVCxARCeKTLAJqlS4bxIxY7maPETuW kqmz+Yb3n2rKHIWRdvPaX1Kq206iQwV0IIGNECag=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3SRI4AYM3LQXS76DF3HRIYBEVBNHHBX5YTPA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2902/issue_event/2489376131@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2902@github.com>
References: <quicwg/base-drafts/pull/2902@github.com>
Subject: Re: [quicwg/base-drafts] Fix lack of exponential backoff in pseudocode (#2902)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f1f001471e_6f343f83d5ecd96420176a"; 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/ybSv7zJbEL5wNdFGfgrYnaN01Gw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:13:38 -0000

----==_mimepart_5d2f1f001471e_6f343f83d5ecd96420176a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2902 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/2902#event-2489376131
----==_mimepart_5d2f1f001471e_6f343f83d5ecd96420176a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469177208" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2902" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2902/hovercard" href="https://github.com/quicwg/base-drafts/pull/2902">#2902</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/2902?email_source=notifications&amp;email_token=AFTOJK6XCV7OKEHFKZ7BCLLP74LIBA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQN3AY#event-2489376131">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4NSSZL2GPLABTESO3P74LIBANCNFSM4IEQBVAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4AL7XG2KQSNPQXV3LP74LIBA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQN3AY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2902?email_source=notifications\u0026email_token=AFTOJK6XCV7OKEHFKZ7BCLLP74LIBA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQN3AY#event-2489376131",
"url": "https://github.com/quicwg/base-drafts/pull/2902?email_source=notifications\u0026email_token=AFTOJK6XCV7OKEHFKZ7BCLLP74LIBA5CNFSM4IEQBVA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQN3AY#event-2489376131",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f1f001471e_6f343f83d5ecd96420176a--


From nobody Wed Jul 17 06:14:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 21FBF12066E for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:14:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iOV62LAcIJU6 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:14: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 78CF3120666 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:14:39 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:14:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369278; bh=hDkGq6rKyZbpvX9KAQSkNqxSPbzl9ZKv2/8kYuxThv0=; h=Date:From:To:Subject:From; b=cscCx/pbnjL6bw68wBdKAY76vrSWq4wm1j5af5qvAYt6b2cBIrA4ZTK4PECeSbnqZ gIRUnuZnvMe9t36dNZCZHZSmB0/B08yBhWd6HzDPUi8bP3PUxRVUPSNIJeEiX8GCLp LKMEAHY8WtgGdV/MPUvhON3k5dMEkmcx2WTHk82E=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/229604-445c7d@github.com>
Subject: [quicwg/base-drafts] 445c7d: Script updating gh-pages from d090d4d7. [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/GWqSWQ3caxh3cBO1YiBv9NdG_S4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:14:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 445c7dd53cbd8a0e29c3fca676ee68783d59e361
      https://github.com/quicwg/base-drafts/commit/445c7dd53cbd8a0e29c3fca676ee68783d59e361
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  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 d090d4d7. [ci skip]



From nobody Wed Jul 17 06:19:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 97DB612038A for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:19:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3iiG8aC1BI78 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:19: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 0AE9E12023F for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:19:06 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:19:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369545; bh=HJSNq/eY5LlnPxqI1tOT81xHxJy279z2E6+PBpUGRlU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=G/X+/lLQ8IL1GVnuYYStiftDHwORm+BhwxnHyqw5WjpZ3FZsJCJLddLkHaRenza9u Yd8Kd5RUxvYWjfonmOqCYA2XUyakOCSZA+39TWFNyotc2/aFYbKWbYXQlAL7gj0hir NEmf5+FoyM/dI69YbFkX8k+ytldEUVxg0PL36meU=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7763R6XSS6VDDVXB53HRJMTEVBNHHBXE45WM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2865/review/263019415@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2865@github.com>
References: <quicwg/base-drafts/pull/2865@github.com>
Subject: Re: [quicwg/base-drafts] Fix HPACK xref (#2865)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f2049234e2_79e53f9e370cd96428511c"; 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/_zF7-P-Acd8EUpUFoaKaRs_CADY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:19:07 -0000

----==_mimepart_5d2f2049234e2_79e53f9e370cd96428511c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MikeBishop approved this pull request.

Gosh, what idiot messed that up?  ;-)  Thanks, Lucas.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2865#pullrequestreview-263019415
----==_mimepart_5d2f2049234e2_79e53f9e370cd96428511c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@MikeBishop</b> approved this pull request.</p>

<p>Gosh, what idiot messed that up?  ;-)  Thanks, Lucas.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications&amp;email_token=AFTOJK7M332AS2DUWG4NKHDP74L4TA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WVXFY#pullrequestreview-263019415">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK532MLO4G7NRBQHM53P74L4TANCNFSM4H4RMLEQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPEEH2MOFJUEJANDDP74L4TA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WVXFY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJK7M332AS2DUWG4NKHDP74L4TA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WVXFY#pullrequestreview-263019415",
"url": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJK7M332AS2DUWG4NKHDP74L4TA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WVXFY#pullrequestreview-263019415",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f2049234e2_79e53f9e370cd96428511c--


From nobody Wed Jul 17 06:19:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C44F8120404 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:19:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 cC0VIRIm01zZ for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:19: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 4CCB712066C for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:19:14 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:19:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369553; bh=RlP8Ap9oixULuiYjBNAwryuV6y0laaWBtU6aqeqqXS0=; h=Date:From:To:Subject:From; b=qkXU7ADpGfj8d+1LjE11WJhIV6asXPA8yRGcH1LAGqU0qCajFuQimp256/irLVpyS 5a1aZMH38ydNRMGQaBW4pdKuE1XBL6C/IDWiOgohvcNO7hqM2GHgKZis/isasKvlV1 nqj6lOwFnjAXnC9YcCVKqIUNg/GAOWWaH/k7Hgi0=
From: Lucas Pardue <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d432cd-c56d84@github.com>
Subject: [quicwg/base-drafts] c56d84: Fix HPACK xref
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nN22qNwZFKVHy0PqClXR1HdZgHI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:19:18 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: c56d843044ed537a53487411438e2638bec1a46a
      https://github.com/quicwg/base-drafts/commit/c56d843044ed537a53487411438e2638bec1a46a
  Author: lucas <lucas@cloudflare.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Fix HPACK xref



From nobody Wed Jul 17 06:19:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 430F7120156 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:19:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6OwDvoAJYaWl for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:19: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 D8F2B12023F for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:19:22 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:19:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369562; bh=PLMoIC5bCH5thUgVJUM3AmYNg7cB+kGxni7F+uo04eM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2S/0rkMr9G1bAH+7r+klkoSzQtzseP7wp5JWcLqNemwD4D0Z3cCF7Huf67/JSwTmE P1fGBPJPtpByiYkVcnvWi8m0TMyE5xeF4ts4foQNN9DTJQWuAdTcitIEMPU1TieTqT KfsuxMt/kVPKrMl/M9AdWUgvSBr/jgBBX7J/2400=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3EB23POWPENVQSAB53HRJNVEVBNHHBXE45WM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2865/issue_event/2489393856@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2865@github.com>
References: <quicwg/base-drafts/pull/2865@github.com>
Subject: Re: [quicwg/base-drafts] Fix HPACK xref (#2865)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f205a264db_5f743febc22cd95c1882a5"; 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/QNDV9B2zG3YmtFT1wh5cjfHdZwI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:19:24 -0000

----==_mimepart_5d2f205a264db_5f743febc22cd95c1882a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2865 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/2865#event-2489393856
----==_mimepart_5d2f205a264db_5f743febc22cd95c1882a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462658995" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2865" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2865/hovercard" href="https://github.com/quicwg/base-drafts/pull/2865">#2865</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/2865?email_source=notifications&amp;email_token=AFTOJK7YEBXDX53IBXC2IKLP74L5VA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQSFQA#event-2489393856">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XQUS3T7A63RO4YW3P74L5VANCNFSM4H4RMLEQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2F4GECUP36F3NUO6TP74L5VA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQSFQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJK7YEBXDX53IBXC2IKLP74L5VA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQSFQA#event-2489393856",
"url": "https://github.com/quicwg/base-drafts/pull/2865?email_source=notifications\u0026email_token=AFTOJK7YEBXDX53IBXC2IKLP74L5VA5CNFSM4H4RMLE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRQSFQA#event-2489393856",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f205a264db_5f743febc22cd95c1882a5--


From nobody Wed Jul 17 06:20:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8FAE1120156 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:20:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rRetngfVcMQh for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:20:47 -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 AA231120098 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:20:47 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:20:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563369647; bh=liz9RclthoQRb3tolsWDO3IyEQKJ2z/NHnX53Cnwr5s=; h=Date:From:To:Subject:From; b=raTht7v8f48rwEl5j1PCgsHWilXnJn4WRN/MqLai4bi1d3U/7fVhzawiWsIEVrJsd DqaCIUjblOdOtrjQFZxMOxZuGbQIES9G/yA+SRwf7FY9ktFQ2rESaA8HiYw59F1W5y u71+S3Teh4oFKjeTd0ouZSoRzMqseODsGZWzYPlk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/445c7d-6cdede@github.com>
Subject: [quicwg/base-drafts] 6cdede: Script updating gh-pages from c56d8430. [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/r47Akum15oeeBDzjjUqJbLay_dw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:20:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6cdede4341455ee3562467b90dda7260779767d4
      https://github.com/quicwg/base-drafts/commit/6cdede4341455ee3562467b90dda7260779767d4
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c56d8430. [ci skip]



From nobody Wed Jul 17 06:31:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5C9831203F0 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:31:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AcIzlB_KNjWU for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:31: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 A60901201E8 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:31:01 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:31:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563370260; bh=ra45Mi7sEa3lzgjWiKANPTJykbeZGrYUTUA6vosyZJQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gdRddFqWxI0J8y0LbDRrSHQ1hBevzW0LyBN3d5K1L5No4SvLoyMZoJts4DBlhY4Jo d7o76g2DIBJQ6EcxCghGWjOnCA2cpg0FgjtRpWIkgjTZApX/2A03G7TjRkdQZMBkc/ pgg3vXF6BP/5hevag7GZZdu350kcuSCzwGI/6aD8=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3EPFHAMSPFOYOZPEF3HRKZJEVBNHHBXHRZ2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2868/review/263027059@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2868@github.com>
References: <quicwg/base-drafts/pull/2868@github.com>
Subject: Re: [quicwg/base-drafts] Add normative reference to RFC7540 8.1.2.5. (#2868)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f231482f6d_15613f8be38cd9681856c1"; 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/aIQxcqsOqAkmbrH5QRy8u0Y5E8k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:31:04 -0000

----==_mimepart_5d2f231482f6d_15613f8be38cd9681856c1
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/2868#pullrequestreview-263027059
----==_mimepart_5d2f231482f6d_15613f8be38cd9681856c1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2868?email_source=notifications&amp;email_token=AFTOJK2LJ7RBUCPJOKUYDFLP74NJJA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WXS4Y#pullrequestreview-263027059">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5W3TLTOHXFUCGZR43P74NJJANCNFSM4H46KCYQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3CLATHXLMGLHN43NLP74NJJA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WXS4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2868?email_source=notifications\u0026email_token=AFTOJK2LJ7RBUCPJOKUYDFLP74NJJA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WXS4Y#pullrequestreview-263027059",
"url": "https://github.com/quicwg/base-drafts/pull/2868?email_source=notifications\u0026email_token=AFTOJK2LJ7RBUCPJOKUYDFLP74NJJA5CNFSM4H46KCY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WXS4Y#pullrequestreview-263027059",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f231482f6d_15613f8be38cd9681856c1--


From nobody Wed Jul 17 06:35:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D26201203FC for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:35:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-IKrel8T5yF for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:35:08 -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 9318F1203F2 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:35:08 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:35:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563370508; bh=nVwAHAWp1L/hiOJIe8Xy+YTzUYFstN/UBKW/T/iWnAo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=x8xpM9AX+bRIl7bt+SwwBxmH5X9BrBw60FNX9WEA7SUYwv06N1EK6CkPzkA7pmqyE ioo+0fHjLjB4K1t2TWBjRU+ltwvOpMkpG3E+jUCf7mpDftyR7W71G+wRe7VsvOZhl6 4BeDAPRVc74Yh/f+qxYLRfsguJLAd1ZMIpYd6cHs=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYD7C75FUHY644NTVV3HRLIXEVBNHHBXHO4II@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2867/review/263029634@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2867@github.com>
References: <quicwg/base-drafts/pull/2867@github.com>
Subject: Re: [quicwg/base-drafts] Tighten HEADERS and DATA frame order requirements. (#2867)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f240bd2d6b_78023fa6e26cd9642730c8"; 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/U9QZ5mPf382UohZ0EaqyXPE2A4E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:35:10 -0000

----==_mimepart_5d2f240bd2d6b_78023fa6e26cd9642730c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MikeBishop commented on this pull request.

This text was already somewhat lacking by not discussing the possibility of extension frames being interleaved; stating that the push stream consists of "responses" rather than "frames" extends this shortcoming to the push stream section.

I'm open to fixing this in a separate PR, if you prefer, 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/2867#pullrequestreview-263029634
----==_mimepart_5d2f240bd2d6b_78023fa6e26cd9642730c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@MikeBishop</b> commented on this pull request.</p>

<p>This text was already somewhat lacking by not discussing the possibility of extension frames being interleaved; stating that the push stream consists of "responses" rather than "frames" extends this shortcoming to the push stream section.</p>
<p>I'm open to fixing this in a separate PR, if you prefer, 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/2867?email_source=notifications&amp;email_token=AFTOJK5XEQH4R4HCCWJK6OLP74NYXA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYHAQ#pullrequestreview-263029634">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6EPNDUAH5PH425NJDP74NYXANCNFSM4H454J7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6TPR35CENWGJZB67TP74NYXA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYHAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK5XEQH4R4HCCWJK6OLP74NYXA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYHAQ#pullrequestreview-263029634",
"url": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK5XEQH4R4HCCWJK6OLP74NYXA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYHAQ#pullrequestreview-263029634",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f240bd2d6b_78023fa6e26cd9642730c8--


From nobody Wed Jul 17 06:39:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5E7F6120403 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:39:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XF1u7OaVn2kS for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:39: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 D7D2D120400 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:39:20 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:39:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563370759; bh=dfdAW1nzHlf90mNs7BdlTxSKiWU3tUR+uCPv9YFcLSY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QRGQfjB5d7ldo81G8NuZMR5hf2J3M035xdv5qftkAeu4lSlG0Sp5NHFBI/FcokvFx aoFdplx98py391x61UHsKe5j6mApB4/WiJiu2ItaGQi7w+uvSuoJXZhJRanynNW5ZM z/tx1wBbip3YdQQuBnAC+SJ7XVKFfrMYSiL09ZQI=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3P7R2CN6ALVYN5ENV3HRLYPEVBNHHBXEE5LI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2864/review/263031214@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2864@github.com>
References: <quicwg/base-drafts/pull/2864@github.com>
Subject: Re: [quicwg/base-drafts] Explicitly allow discard of packets <40 bytes (#2864)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f2507c372b_eda3f7f770cd95c3638cb"; 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/t2I1DlT4yXV3C5TTiLiMZ8AZ1Js>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:39:22 -0000

----==_mimepart_5d2f2507c372b_eda3f7f770cd95c3638cb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MikeBishop approved this pull request.



> @@ -2510,7 +2510,8 @@ Reset in response, which could lead to an infinite exchange.
 An endpoint MUST ensure that every Stateless Reset that it sends is smaller than
 the packet which triggered it, unless it maintains state sufficient to prevent
 looping.  In the event of a loop, this results in packets eventually being too
-small to trigger a response.
+small to trigger a response.  An endpoint MAY choose not to send a Stateless
+Reset in response to a packet that is smaller than 40 bytes.

This provides the end condition to the loop.

> @@ -2525,9 +2526,6 @@ a small packet might result in Stateless Reset not being useful in detecting
 cases of broken connections where only very small packets are sent; such
 failures might only be detected by other means, such as timers.
 
-An endpoint can increase the odds that a packet will trigger a Stateless Reset

It might be nice to explicitly mention the packet after quiescence as part of this advice, and/or advise sending at least one 40+ byte packet in each flight.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2864#pullrequestreview-263031214
----==_mimepart_5d2f2507c372b_eda3f7f770cd95c3638cb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@MikeBishop</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2864#discussion_r304404521">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2510,7 +2510,8 @@ Reset in response, which could lead to an infinite exchange.
 An endpoint MUST ensure that every Stateless Reset that it sends is smaller than
 the packet which triggered it, unless it maintains state sufficient to prevent
 looping.  In the event of a loop, this results in packets eventually being too
-small to trigger a response.
+small to trigger a response.  An endpoint MAY choose not to send a Stateless
+Reset in response to a packet that is smaller than 40 bytes.
</pre>
<p>This provides the end condition to the loop.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2864#discussion_r304405401">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2525,9 +2526,6 @@ a small packet might result in Stateless Reset not being useful in detecting
 cases of broken connections where only very small packets are sent; such
 failures might only be detected by other means, such as timers.
 
-An endpoint can increase the odds that a packet will trigger a Stateless Reset
</pre>
<p>It might be nice to explicitly mention the packet after quiescence as part of this advice, and/or advise sending at least one 40+ byte packet in each flight.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications&amp;email_token=AFTOJKYERWNSZSKX4OU7YCTP74OIPA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYTLQ#pullrequestreview-263031214">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4YZE5VROFU4T2KU33P74OIPANCNFSM4H4NX4RA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LCHRSP4FOX4UG2FDP74OIPA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYTLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJKYERWNSZSKX4OU7YCTP74OIPA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYTLQ#pullrequestreview-263031214",
"url": "https://github.com/quicwg/base-drafts/pull/2864?email_source=notifications\u0026email_token=AFTOJKYERWNSZSKX4OU7YCTP74OIPA5CNFSM4H4NX4RKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WYTLQ#pullrequestreview-263031214",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f2507c372b_eda3f7f770cd95c3638cb--


From nobody Wed Jul 17 06:42:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EEB761206A7 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:42:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 NE0HSPZ4r1QD for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:42:22 -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 2884E12067F for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:42:20 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:42:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563370939; bh=mTozcSEL/+mSt1yldrO0gFRwSOlTrOw1dMBMLrf+Rpk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=sgPUYV0BbLvsO8/EvMt8TYgo6LHrF+77ke4XClTtY6PlJ7EDAZGF2UJUJQoJVuzWk tx348gxGvi8ouUl4WGj9gEeL8fF2yW7b7FXAu9MUoh/vWIF/XIOnufrIcfkUwsy5dw w4Xs30pD6MpaOwlLvy2NspiyPxWY8SXEp5fMRAjg=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ZWM2QR3CIJ56FJSV3HRMDXEVBNHHBX53RDA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2903@github.com>
Subject: [quicwg/base-drafts] Remove Incorrect Sentence in Coalescing Section (#2903)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f25bb32875_13f33f8b3d8cd9642971ba"; 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/mPtQDO_HRk-V7P-bj4e4Te9q1OA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:42:31 -0000

----==_mimepart_5d2f25bb32875_13f33f8b3d8cd9642971ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #2900.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2903

-- Commit Summary --

  * Remove Incorrect Sentence in Coalescing Section

-- File Changes --

    M draft-ietf-quic-transport.md (3)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2903.patch
https://github.com/quicwg/base-drafts/pull/2903.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/2903

----==_mimepart_5d2f25bb32875_13f33f8b3d8cd9642971ba
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 #2900.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="468354740" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2900" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2900/hovercard" href="https://github.com/quicwg/base-drafts/issues/2900">#2900</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/2903'>https://github.com/quicwg/base-drafts/pull/2903</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove Incorrect Sentence in Coalescing Section</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2903/files#diff-0">draft-ietf-quic-transport.md</a>
    (3)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2903.patch'>https://github.com/quicwg/base-drafts/pull/2903.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2903.diff'>https://github.com/quicwg/base-drafts/pull/2903.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/2903?email_source=notifications&amp;email_token=AFTOJK35B4AAWOG4Q4VVXODP74OTXA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XOEMA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4FWLK6Y7PTIJ76LJLP74OTXANCNFSM4IEQQJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KQVTKUXY7SPEBJ3DP74OTXA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XOEMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK35B4AAWOG4Q4VVXODP74OTXA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XOEMA",
"url": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK35B4AAWOG4Q4VVXODP74OTXA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7XOEMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f25bb32875_13f33f8b3d8cd9642971ba--


From nobody Wed Jul 17 06:43:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A96AB120406 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:43:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5awH2_UUPipU for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 06:43:36 -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 1835E120098 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 06:43:36 -0700 (PDT)
Date: Wed, 17 Jul 2019 06:43:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563371015; bh=8df9I3mMmGVP6m/bnu1o4d2lMQNY5k8wQJUubXm8pSI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dnRcrDha9XRJu3FXH4UkK5cYKTjvB8gyXZDDyP81rHyc3BJTzVhS3Ni1Y08QnHjBD Z16UhPTaOFo0+CgdGRiRclp6KSNB9FR466OLeUZ7rjBWV++jwt2ii3vXpI1Tybh1vh s0sA/0hyQbJ+9XeYbNFgQspdEHAcEpuxkuCCuKFE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5XNNKTUOD76K5RTZV3HRMIPEVBNHHBX53RDA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2903/review/263035268@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2903@github.com>
References: <quicwg/base-drafts/pull/2903@github.com>
Subject: Re: [quicwg/base-drafts] Remove Incorrect Sentence in Coalescing Section (#2903)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f26074c95c_73013fe6e44cd960334398"; 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-QlxvGnexQoz0h4qRpev9ID9eo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 13:43:38 -0000

----==_mimepart_5d2f26074c95c_73013fe6e44cd960334398
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/2903#pullrequestreview-263035268
----==_mimepart_5d2f26074c95c_73013fe6e44cd960334398
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2903?email_source=notifications&amp;email_token=AFTOJK6FFO2WEHF5WYDH65LP74OYPA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WZTBA#pullrequestreview-263035268">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67F74LUHW5VAOJZ7DP74OYPANCNFSM4IEQQJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFJK6RAPGGBTWPPNLP74OYPA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WZTBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK6FFO2WEHF5WYDH65LP74OYPA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WZTBA#pullrequestreview-263035268",
"url": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK6FFO2WEHF5WYDH65LP74OYPA5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6WZTBA#pullrequestreview-263035268",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f26074c95c_73013fe6e44cd960334398--


From nobody Wed Jul 17 07:05:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 41370120410 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:05:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 xz5cZV0NNYff for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:05:30 -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 C6C3E120074 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 07:05:30 -0700 (PDT)
Date: Wed, 17 Jul 2019 07:05:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563372330; bh=2hJf62isOEErn+1reUTZDXXyH+EQh1ff7+hpj0INZKU=; h=Date:From:To:Subject:From; b=bk9x5yerI7gw+GBoERSZM8OTcHHA6Vy5+VPYgoApONH2c0h4UcffnUQ2XEmx+0USH YBFVaI1FgEc31GJ+zt32Wv732vdjWxx6huu47+zEU7DHPRhhsqHTmNit6YSjTtnQiK bnvuxgltWM8wksTV3ObPGNACIEERpX799cQQoBu8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/sample-offset/000000-bf59b8@github.com>
Subject: [quicwg/base-drafts] bf59b8: Add one to sample offset for header protection
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sCpKuRF8duwYfYH-tNRnsDAk_oo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 14:05:32 -0000

  Branch: refs/heads/sample-offset
  Home:   https://github.com/quicwg/base-drafts
  Commit: bf59b827aeab949b66e62173dd6ec0f3c7d3d068
      https://github.com/quicwg/base-drafts/commit/bf59b827aeab949b66e62173dd6ec0f3c7d3d068
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Add one to sample offset for header protection

With the changes to invariants, this calculation was off by one.

Closes #2899.



From nobody Wed Jul 17 07:06:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3A63A120410 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:06:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 rs6PmTW7byL7 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:06: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 02458120105 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 07:06:56 -0700 (PDT)
Date: Wed, 17 Jul 2019 07:06:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563372415; bh=RxFptASluyOs9FwQ/u3ATAT4cWs3HNxi60z/gXyDRWY=; h=Date:From:To:Subject:From; b=fS6Ue+AbIGZ3+2n3XZXgr1dRm8bPQBNXzRr4TUmq09AN063r2ylB81RM98VSUFGY8 ekwsWH//di4KYPgjU2RizpJ8BeKxbCFZ7rZahenQpek7E/oWG9EZiMVtgvuH3nzAcO DonN5q3G+kR20EpjOSXXPw/KQAwAIkboD/UI8/+o=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6cdede-91bfed@github.com>
Subject: [quicwg/base-drafts] 91bfed: Script updating gh-pages from bf59b827. [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/osMdCVc223EvcWhrmWunRIpSGog>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 14:06:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 91bfed9c2af3d34a1163b6bec25c61172d22a4a0
      https://github.com/quicwg/base-drafts/commit/91bfed9c2af3d34a1163b6bec25c61172d22a4a0
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M index.html
    A sample-offset/draft-ietf-quic-http.html
    A sample-offset/draft-ietf-quic-http.txt
    A sample-offset/draft-ietf-quic-invariants.html
    A sample-offset/draft-ietf-quic-invariants.txt
    A sample-offset/draft-ietf-quic-qpack.html
    A sample-offset/draft-ietf-quic-qpack.txt
    A sample-offset/draft-ietf-quic-recovery.html
    A sample-offset/draft-ietf-quic-recovery.txt
    A sample-offset/draft-ietf-quic-tls.html
    A sample-offset/draft-ietf-quic-tls.txt
    A sample-offset/draft-ietf-quic-transport.html
    A sample-offset/draft-ietf-quic-transport.txt
    A sample-offset/index.html

  Log Message:
  -----------
  Script updating gh-pages from bf59b827. [ci skip]



From nobody Wed Jul 17 07:08:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B19531205CB for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:07:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 22lLGz0_eHPg for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:07: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 1920A120410 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 07:07:58 -0700 (PDT)
Date: Wed, 17 Jul 2019 07:07:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563372476; bh=IufdXt63sFx/CcLyxqwawvsicU9GuEFWBJVVlPjIaqc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=CaR1vbMsnTJPNroLZThEomQH4+tecGDRuytfhvC6RrH4MV6s3dEjQozdhLw67JN0G G/E6kWSQQsEIdwiIoGrRe6hEN4LEAh4AGk1u3RY2AedbtSftBWcJ59HlbH0b+3LgnJ v+tTqc+WdWNb4rTeNBuCdhIGJiQuC75nTjHSX8FI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZCRBANF7FLEJ4ZNV53HRPDZEVBNHHBX57KL4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2904@github.com>
Subject: [quicwg/base-drafts] Add one to sample offset for header protection (#2904)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f2bbca3887_6bb53fc0a42cd964200684"; 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/Wvqa1bipQnS5MszlBHuUv4iUt_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: Wed, 17 Jul 2019 14:08:00 -0000

----==_mimepart_5d2f2bbca3887_6bb53fc0a42cd964200684
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

With the changes to invariants, this calculation was off by one.

Closes #2899.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2904

-- Commit Summary --

  * Add one to sample offset for header protection

-- File Changes --

    M draft-ietf-quic-tls.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2904.patch
https://github.com/quicwg/base-drafts/pull/2904.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/2904

----==_mimepart_5d2f2bbca3887_6bb53fc0a42cd964200684
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>With the changes to invariants, this calculation was off by one.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2899.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="468238618" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2899" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2899/hovercard" href="https://github.com/quicwg/base-drafts/issues/2899">#2899</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/2904'>https://github.com/quicwg/base-drafts/pull/2904</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add one to sample offset for header protection</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2904/files#diff-0">draft-ietf-quic-tls.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2904.patch'>https://github.com/quicwg/base-drafts/pull/2904.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2904.diff'>https://github.com/quicwg/base-drafts/pull/2904.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/2904?email_source=notifications&amp;email_token=AFTOJK4AET27ZJ36Y2GCQOTP74RTZA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7X5JPQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDHALK5AYL7IAESM3P74RTZANCNFSM4IEQY7CA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTXLIUPZOFEJEGSTLP74RTZA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7X5JPQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2904?email_source=notifications\u0026email_token=AFTOJK4AET27ZJ36Y2GCQOTP74RTZA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7X5JPQ",
"url": "https://github.com/quicwg/base-drafts/pull/2904?email_source=notifications\u0026email_token=AFTOJK4AET27ZJ36Y2GCQOTP74RTZA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7X5JPQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f2bbca3887_6bb53fc0a42cd964200684--


From nobody Wed Jul 17 07:09:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E22CB12067C for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:08:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9APuo6-ASbIe for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:08: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 6BDB8120605 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 07:08:58 -0700 (PDT)
Date: Wed, 17 Jul 2019 07:08:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563372537; bh=YlmsH3ShCDOjdSHC10fhB6vTu3KXORH5rt2WgKJkPiM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XzmH1LFJeQRlXLp+5sZUujA5YMeFsMGx/3bYd1++mycl6QnXvPdjThhrMPYAPMHm8 38HYqZykdFadoUtE4X3pjyE6CNTz/XdTLNtF5wXyyVT09LXtDiN0i2uOsI49iBw7x0 fRviRz1P11b5GabKLxaD0AMaIehlcMhrcD6V4iIs=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CF2A2V5W7APZTZHN3HRPHTEVBNHHBX57KL4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2904/review/263053238@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2904@github.com>
References: <quicwg/base-drafts/pull/2904@github.com>
Subject: Re: [quicwg/base-drafts] Add one to sample offset for header protection (#2904)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f2bf953052_4aa33fd970acd968246232"; 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/3i4ZLNSbclXYdP-UuT5qji0cbKU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 14:09:02 -0000

----==_mimepart_5d2f2bf953052_4aa33fd970acd968246232
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/2904#pullrequestreview-263053238
----==_mimepart_5d2f2bf953052_4aa33fd970acd968246232
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2904?email_source=notifications&amp;email_token=AFTOJK6ZDX4KVWJ5NUSQHFTP74RXTA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6W57NQ#pullrequestreview-263053238">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK64MMSBJD5ESMKBP6LP74RXTANCNFSM4IEQY7CA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJ4PWPDPKROLNRKYLP74RXTA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6W57NQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2904?email_source=notifications\u0026email_token=AFTOJK6ZDX4KVWJ5NUSQHFTP74RXTA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6W57NQ#pullrequestreview-263053238",
"url": "https://github.com/quicwg/base-drafts/pull/2904?email_source=notifications\u0026email_token=AFTOJK6ZDX4KVWJ5NUSQHFTP74RXTA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6W57NQ#pullrequestreview-263053238",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f2bf953052_4aa33fd970acd968246232--


From nobody Wed Jul 17 07:09:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E5379120074 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:09:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h_twcPSsSQJf for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:09: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 5E7B4120105 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 07:09:06 -0700 (PDT)
Date: Wed, 17 Jul 2019 07:09:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563372545; bh=dgprhBuStFzueEdwmU/4TACeZBFVhMGuLbI3Tlk2Ya8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gW1EbHOJHI1qj0Y4H1F5dHMGv1OYD1+BfMfSrh4Kwo9QRr2qbXYa22FL/6Fk+JT2a EamLUg6zX8qnEM912o3hjq/YvbQ2f8GVkBh8YfkV1Shf8HF+KwE/hqP2sKSj81RLO9 RiHDWiB52v6/1u9XxY+06DUXpEuAI6g1P5hMghpI=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <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/2867/push/3826487775@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2867@github.com>
References: <quicwg/base-drafts/pull/2867@github.com>
Subject: Re: [quicwg/base-drafts] Tighten HEADERS and DATA frame order requirements. (#2867)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f2c01a2ed7_53c73fe4b4acd9646409a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bencebeky
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/iaqYlz5ZTdZx1SCasONXywREcAg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 14:09:08 -0000

----==_mimepart_5d2f2c01a2ed7_53c73fe4b4acd9646409a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@bencebeky pushed 1 commit.

0bdc75a1790fb5e9cf76fd576ff3fb71397f944a  Explicitly allow unknown frames.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2867/files/3b6df422a8b847a16981d26e0885a3437cf98409..0bdc75a1790fb5e9cf76fd576ff3fb71397f944a

----==_mimepart_5d2f2c01a2ed7_53c73fe4b4acd9646409a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/bencebeky" class="user-mention">@bencebeky</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0bdc75a1790fb5e9cf76fd576ff3fb71397f944a">0bdc75a</a>  Explicitly allow unknown frames.</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/2867/files/3b6df422a8b847a16981d26e0885a3437cf98409..0bdc75a1790fb5e9cf76fd576ff3fb71397f944a?email_source=notifications&amp;email_token=AFTOJK75HNGMI7GL5RPI3J3P74RYDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNBYG43TONI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3XGE5D5E7VZHXFNLLP74RYDANCNFSM4H454J7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZULAOLRV53JMYUMN3P74RYDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNBYG43TONI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2867/files/3b6df422a8b847a16981d26e0885a3437cf98409..0bdc75a1790fb5e9cf76fd576ff3fb71397f944a?email_source=notifications\u0026email_token=AFTOJK75HNGMI7GL5RPI3J3P74RYDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNBYG43TONI",
"url": "https://github.com/quicwg/base-drafts/pull/2867/files/3b6df422a8b847a16981d26e0885a3437cf98409..0bdc75a1790fb5e9cf76fd576ff3fb71397f944a?email_source=notifications\u0026email_token=AFTOJK75HNGMI7GL5RPI3J3P74RYDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNBYG43TONI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f2c01a2ed7_53c73fe4b4acd9646409a--


From nobody Wed Jul 17 07:14:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 920751206A8 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:14:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id obfjUXcnRQ4C for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:14: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 576FE120690 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 07:14:08 -0700 (PDT)
Date: Wed, 17 Jul 2019 07:14:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563372847; bh=8ZjCSBKUMeynQ9i1wQ6mtt2vxLCWLlonWUfcE5YYmfI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=flkBA21IcM6PjHVcDYI4w5RgL2h+5fUNdEzkVS6vll3xthHsQNMXLMcX2GqeGyUKH OkwWWH0JAgmj6VVoqXjAc1iVsYiW8bn2qjwh9s4+d9pmfGFZhrUl1MIn3MIuO5Upf0 /ynDaWbKDwYTnGvOgMTOAxmLoIoHOWdyisLZGlRc=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <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/2867/push/3826510584@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2867@github.com>
References: <quicwg/base-drafts/pull/2867@github.com>
Subject: Re: [quicwg/base-drafts] Tighten HEADERS and DATA frame order requirements. (#2867)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f2d2f6d6af_7aa03fabdcecd96c1145f1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bencebeky
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/jz6Na9UMcLZ_clu9UdwuygZFNKs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 14:14:10 -0000

----==_mimepart_5d2f2d2f6d6af_7aa03fabdcecd96c1145f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@bencebeky pushed 1 commit.

07a0fbb47fb472591f67f0ff5b63a0a8dbd021ae  wordsmithing


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2867/files/0bdc75a1790fb5e9cf76fd576ff3fb71397f944a..07a0fbb47fb472591f67f0ff5b63a0a8dbd021ae

----==_mimepart_5d2f2d2f6d6af_7aa03fabdcecd96c1145f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/bencebeky" class="user-mention">@bencebeky</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/07a0fbb47fb472591f67f0ff5b63a0a8dbd021ae">07a0fbb</a>  wordsmithing</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/2867/files/0bdc75a1790fb5e9cf76fd576ff3fb71397f944a..07a0fbb47fb472591f67f0ff5b63a0a8dbd021ae?email_source=notifications&amp;email_token=AFTOJK2WWAHYUCJPRHXX7UDP74SK7A5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNJRGA2TQNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XMUCFHWCBVYR7SHLP74SK7ANCNFSM4H454J7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4OQ337FDIW2A5RKJ3P74SK7A5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNJRGA2TQNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2867/files/0bdc75a1790fb5e9cf76fd576ff3fb71397f944a..07a0fbb47fb472591f67f0ff5b63a0a8dbd021ae?email_source=notifications\u0026email_token=AFTOJK2WWAHYUCJPRHXX7UDP74SK7A5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNJRGA2TQNA",
"url": "https://github.com/quicwg/base-drafts/pull/2867/files/0bdc75a1790fb5e9cf76fd576ff3fb71397f944a..07a0fbb47fb472591f67f0ff5b63a0a8dbd021ae?email_source=notifications\u0026email_token=AFTOJK2WWAHYUCJPRHXX7UDP74SK7A5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TGOBTGE2DGN2QOVZWQIZTHAZDMNJRGA2TQNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f2d2f6d6af_7aa03fabdcecd96c1145f1--


From nobody Wed Jul 17 07:14:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CF2491206B2 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:14:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yNP2vjmtUo1p for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 07:14: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 44E9C1206C0 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 07:14:42 -0700 (PDT)
Date: Wed, 17 Jul 2019 07:14:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563372881; bh=0g1u2Cq5zPQ7U+kFDCGp2/cCk+kq0VMwphdtVmFHtbM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EwcuW8C6XzpIX1TXGyJkhL4wA/ZFktVs2ISAyAlZVefNtyz0sB1pvTzDz94lkNnFU rJqdre0Of/R7jnhEGg7Af/7aBgiE8jGv9NC0znqXQ/zFHm5cj/zBv/qFeR8iJZ4+qv yPyU5Ll7NiM0kwkzoKRP23iZ06jrRGcUIq3FT8C0=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YLTTOM2I5NWM67D53HRP5DEVBNHHBXHO4II@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2867/c512273416@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2867@github.com>
References: <quicwg/base-drafts/pull/2867@github.com>
Subject: Re: [quicwg/base-drafts] Tighten HEADERS and DATA frame order requirements. (#2867)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f2d5157a5e_36cd3ff09bccd9601603e2"; 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/b0jvJV92twOzX9UsoAjsnUEC0DM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 14:14:52 -0000

----==_mimepart_5d2f2d5157a5e_36cd3ff09bccd9601603e2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> This text was already somewhat lacking by not discussing the possibility of extension frames being interleaved; stating that the push stream consists of "responses" rather than "frames" extends this shortcoming to the push stream section.
> 
> I'm open to fixing this in a separate PR, if you prefer, though.

Good catch.  I added a paragraph to explicitly allow unknown frames to the message exchange section.  I also modified the wording in the push section to be more permissive of interleaved frames ("by" instead of "consists of").

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2867#issuecomment-512273416
----==_mimepart_5d2f2d5157a5e_36cd3ff09bccd9601603e2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>This text was already somewhat lacking by not discussing the possibility of extension frames being interleaved; stating that the push stream consists of "responses" rather than "frames" extends this shortcoming to the push stream section.</p>
<p>I'm open to fixing this in a separate PR, if you prefer, though.</p>
</blockquote>
<p>Good catch.  I added a paragraph to explicitly allow unknown frames to the message exchange section.  I also modified the wording in the push section to be more permissive of interleaved frames ("by" instead of "consists of").</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications&amp;email_token=AFTOJK7Z4XSLR246PVR4FIDP74SNDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2EKYCA#issuecomment-512273416">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYGJZMVAKSF5KETQODP74SNDANCNFSM4H454J7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6RMTPATGZG44YMFTP74SNDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2EKYCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK7Z4XSLR246PVR4FIDP74SNDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2EKYCA#issuecomment-512273416",
"url": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJK7Z4XSLR246PVR4FIDP74SNDA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2EKYCA#issuecomment-512273416",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f2d5157a5e_36cd3ff09bccd9601603e2--


From nobody Wed Jul 17 09:23:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 54778120657 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 09B6fZ9prp4Q for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23: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 7EA371204ED for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:23:41 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:23:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380620; bh=p6P+z/WWOoBF0LqETq4Ijsv+NsJIecbZqSR74TyyQEM=; h=Date:From:To:Subject:From; b=as2A1rMgg0IgV8z/wd9sZr13aSEZFdM+BW7dIKeNPg6apTU/mMREVZmc1fkrcNM+n fMqMxp3G0khyDQyGDKhQWilrEFLsA6bmPQnB2GAfO7WBrGstx0lpQVLmoEgPuZWhB/ WOQGupe1HdNkndli/7v9+GewvN15zEU5H5urEsDk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c56d84-17d82a@github.com>
Subject: [quicwg/base-drafts] bf59b8: Add one to sample offset for header protection
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A_FZ0W_BWejX09_PIuBsvDAzQ_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, 17 Jul 2019 16:23:43 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: bf59b827aeab949b66e62173dd6ec0f3c7d3d068
      https://github.com/quicwg/base-drafts/commit/bf59b827aeab949b66e62173dd6ec0f3c7d3d068
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Add one to sample offset for header protection

With the changes to invariants, this calculation was off by one.

Closes #2899.


  Commit: 17d82ab10046ca8eba79d8db0c8b8273c77e20d5
      https://github.com/quicwg/base-drafts/commit/17d82ab10046ca8eba79d8db0c8b8273c77e20d5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-18 (Thu, 18 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #2904 from quicwg/sample-offset

Add one to sample offset for header protection


Compare: https://github.com/quicwg/base-drafts/compare/c56d843044ed...17d82ab10046


From nobody Wed Jul 17 09:23:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 17912120657 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 4UCcCmtg1EPI for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23:44 -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 EEB821204ED for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:23:43 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:23:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380622; bh=3AG0XgXyJoYIyjtfsQf9wwyzEfOfmmV2okm4usUqPVQ=; h=Date:From:To:Subject:From; b=EuMY68j+HViN7wZK5DGoJpzdzk/3UHvod+eCxLMvNkF6lizl8k7GzklE96fOwBZ/M kE/gCD4v99AQ0VoH5Wz9Degy9TJUyOdi+eTkO/4PBel3AuRKXm860xuETTELrIThUb 3ICaq4nUzE4nNC+YrdKHxWViTcZs8ZCIg3JZdwZ8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/sample-offset/bf59b8-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/3fMDoJ6gIVvGHMovtnj-cM2gfk4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:23:45 -0000

  Branch: refs/heads/sample-offset
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Jul 17 09:23:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ADFB31206BB for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 6FJ81Qi49TFa for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23: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 27FCA120657 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:23:51 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:23:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380630; bh=7ZvhxMYrY3Co+Ts3GpF4lW8gpaTBSSxVw1QNegIY5VI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fLartsS4xAfb55/1Dwxve0RGp6CE+Gsbd8SXAZFXpQr6W4Qfm0r1WeFkBSbredHJZ IbyGjF2COAXMrjYcw49jRnP82XrPDtQPPMtDlCyEMS9nJJQaPWmLObl1kSrQ1P4Pir eXlox7ZfDCJm4V/IMnrHtSGfhqEFxXIbIK0o+cC4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WHOXTXK5WPJKTYU53HR7BNEVBNHHBX2GBDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2899/issue_event/2490043996@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2899@github.com>
References: <quicwg/base-drafts/issues/2899@github.com>
Subject: Re: [quicwg/base-drafts] Sample offset incorrect post draft-20 (#2899)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f4b96462a3_53f33fc599acd96c119144"; 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/GD2SdlOkbqKFBY4eaQmh2jZwfBE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:23:53 -0000

----==_mimepart_5d2f4b96462a3_53f33fc599acd96c119144
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2899 via #2904.

-- 
You are receiving 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/2899#event-2490043996
----==_mimepart_5d2f4b96462a3_53f33fc599acd96c119144
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="468238618" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2899" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2899/hovercard" href="https://github.com/quicwg/base-drafts/issues/2899">#2899</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469232223" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2904" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2904/hovercard" href="https://github.com/quicwg/base-drafts/pull/2904">#2904</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/2899?email_source=notifications&amp;email_token=AFTOJK3ROJYDA4RT2NIB443P75BRNA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4XA#event-2490043996">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4SCVQKF5PQLRNOM7TP75BRNANCNFSM4IDY427A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZTEXDT2Y6VYOWBNDP75BRNA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4XA.gif" height="1" width="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/2899?email_source=notifications\u0026email_token=AFTOJK3ROJYDA4RT2NIB443P75BRNA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4XA#event-2490043996",
"url": "https://github.com/quicwg/base-drafts/issues/2899?email_source=notifications\u0026email_token=AFTOJK3ROJYDA4RT2NIB443P75BRNA5CNFSM4IDY427KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4XA#event-2490043996",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f4b96462a3_53f33fc599acd96c119144--


From nobody Wed Jul 17 09:24:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8F7A4120657 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7jo-XMoRzVac for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:23: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 33951120669 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:23:51 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:23:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380630; bh=m8DiHB05uPIcAw6h8mai/0cwDH9gF7uVHwlk1IydoeY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wLFj0PTVM3msJxmfBkbMS+ezsZw3QVVRR7uV0FflsIryNgCweahcfqdqpO9cXU7H/ 2TR+L9/NDi7I28MZ7GhuWwDcYtJGIQFD3EiIDEpYYojQXxmVnpnyuyHqmUXvgefitO PRJwFp0GaU6B73uEeAAQo30DazKE5O15CR65tgwo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JDSI3PSYCWWBGYYV3HR7BNEVBNHHBX57KL4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2904/issue_event/2490043990@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2904@github.com>
References: <quicwg/base-drafts/pull/2904@github.com>
Subject: Re: [quicwg/base-drafts] Add one to sample offset for header protection (#2904)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f4b967a702_3e583fd2a38cd95c13868e"; 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/WUo5v9Lt9C_zfOhmclD7r9-VDL4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:23:54 -0000

----==_mimepart_5d2f4b967a702_3e583fd2a38cd95c13868e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2904 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/2904#event-2490043990
----==_mimepart_5d2f4b967a702_3e583fd2a38cd95c13868e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469232223" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2904" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2904/hovercard" href="https://github.com/quicwg/base-drafts/pull/2904">#2904</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/2904?email_source=notifications&amp;email_token=AFTOJK4T4U2DTXFMCR3EAZDP75BRNA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4VQ#event-2490043990">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYUSOE7747UOXDBDTDP75BRNANCNFSM4IEQY7CA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK72HL2EPETFMXEPC4LP75BRNA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4VQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2904?email_source=notifications\u0026email_token=AFTOJK4T4U2DTXFMCR3EAZDP75BRNA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4VQ#event-2490043990",
"url": "https://github.com/quicwg/base-drafts/pull/2904?email_source=notifications\u0026email_token=AFTOJK4T4U2DTXFMCR3EAZDP75BRNA5CNFSM4IEQY7CKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVQ4VQ#event-2490043990",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f4b967a702_3e583fd2a38cd95c13868e--


From nobody Wed Jul 17 09:25:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6A834120669 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:25:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7SuJW46J5-Ub for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:25:19 -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 1DB64120657 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:25:19 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:25:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380718; bh=zGO/PC+EjWGIqaQiSikigxsDsrHriLYVAZ6IRI/T/Fk=; h=Date:From:To:Subject:From; b=CCv8ymHxhqT4TU/o44HRrj9MszhuTwdr2D+Hy0tnxho6B8cRICaHGtRGjecnT7lZE QwkNAm+YA/jIB9JADQruwoKwFvVak76sajGDzWiMBHP4Ra4OvIBrd2DPtIXXxo4IQp GJiHLT6GGWA0VuzLIpRbGMJg8zhwRi/PzOK2q+NU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/91bfed-0a5acc@github.com>
Subject: [quicwg/base-drafts] 0a5acc: Script updating gh-pages from 17d82ab1. [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/CLKtenw1aYTfF1dReLewNiFXicY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:25:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0a5acc1053dce09e2bd728d734aded024ea3c479
      https://github.com/quicwg/base-drafts/commit/0a5acc1053dce09e2bd728d734aded024ea3c479
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 17d82ab1. [ci skip]



From nobody Wed Jul 17 09:26:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 63D6312066F for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:26:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uRXjBgttB-iT for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:26: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 31FB6120669 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:26:02 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:26:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380761; bh=mnQyutPu+PJFO35QOaKqRgRFp37nnXDnbqesI0A0GXA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cbbXf03SvykbhE2JUIKRONLJHWAK21cIFwxfHQC9M8ndPfBW3OkPHJgFQSFu7tp/F DTCVYIqFs1Aj9lPpS1w4DtdJHOFUF5aONcEbYZ3zylCtDBL+eFU1beoR4tE+l8nf1o 9YgAVjiAo90kmd6L+adnWwbE/2b5KPhdT4oEXv3k=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7CSEFK3FCLFPXLFKV3HR7JTEVBNHHBXY4S7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2896/c512354456@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2896@github.com>
References: <quicwg/base-drafts/pull/2896@github.com>
Subject: Re: [quicwg/base-drafts] Move wasteful packet stuff to -transport (#2896)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f4c194aa4e_10933f840b2cd96c1751d5"; 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/lEbnOkvjNRbyLaOARPBxQc45kSY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:26:05 -0000

----==_mimepart_5d2f4c194aa4e_10933f840b2cd96c1751d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Maybe this needs to be stated explicitly, but there is no point in continuing discussion with an attacker.  So while it might be considered polite to send a connection error, it is also acceptable to just drop any further incoming packets.  I'll add that 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/2896#issuecomment-512354456
----==_mimepart_5d2f4c194aa4e_10933f840b2cd96c1751d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Maybe this needs to be stated explicitly, but there is no point in continuing discussion with an attacker.  So while it might be considered polite to send a connection error, it is also acceptable to just drop any further incoming packets.  I'll add that 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/2896?email_source=notifications&amp;email_token=AFTOJKY47JG3QV6ZRGF5VLDP75BZTA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2E6RGA#issuecomment-512354456">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2Q4TNZOAHMTOLU5TP75BZTANCNFSM4IDSJVKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3T56KAAI464ELDKFLP75BZTA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2E6RGA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJKY47JG3QV6ZRGF5VLDP75BZTA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2E6RGA#issuecomment-512354456",
"url": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJKY47JG3QV6ZRGF5VLDP75BZTA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2E6RGA#issuecomment-512354456",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f4c194aa4e_10933f840b2cd96c1751d5--


From nobody Wed Jul 17 09:27:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F4075120657 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:27:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Dr67W6dfH7Pa for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:27: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 4A823120170 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:27:28 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:27:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380847; bh=2ptsqons6R2CqAZpSJym7+KHrdScH+NCy+NYzDagMtg=; h=Date:From:To:Subject:From; b=wwMAHFDo9gEIgd2thW3IsRgF3XEFFL4YHJe+9Q1NFGPP+b2RmVz+l1EG3Tm/v5W9q GyfJwUGGqdxjWUdpi3NtDobloPJowj7oFx30g/TAMNcx6+x9jEuvKIKTy55pVmSfWr rJz8r/hDATYopAeNC+IED7BQVU/RcUGgjBxw+cx8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/issue2890/f29928-5078fc@github.com>
Subject: [quicwg/base-drafts] 5078fc: Reaction to attack
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sNhl8TJfO9XB_saF57Apyo2pMmQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:27:30 -0000

  Branch: refs/heads/issue2890
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5078fc0d5d6dc1c42186a06ee37ca211ee963d1b
      https://github.com/quicwg/base-drafts/commit/5078fc0d5d6dc1c42186a06ee37ca211ee963d1b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Reaction to attack



From nobody Wed Jul 17 09:27:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 109DC12066D for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:27:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LUPudSi9gbPf for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:27: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 6D6E2120170 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:27:37 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:27:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380856; bh=lwzEzZpSdaLdqEDULET+eiPut72l5GxXDXCTYsPjWdM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZM44VsZgZI20+i4SNXvWe3riX1DKA+8roolct1QwaFNib1Vqc5PafvBqZK9Bz3hVO pmM39yD19e32K7w6PvrVA7Z0iO602jfpyfe7S5oWc4B7sjBoH1tYp0kajwjw4CtUoY sKQXToQuzJOEpLRRx7oNa/JFTEwxKnlI5idfyaiQ=
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/2896/push/3827089095@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2896@github.com>
References: <quicwg/base-drafts/pull/2896@github.com>
Subject: Re: [quicwg/base-drafts] Move wasteful packet stuff to -transport (#2896)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f4c78a5c65_2c3a3fbb1f8cd95c148386"; 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/tw6dirQON8rwcjVAhTEtGKAGvf8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:27:39 -0000

----==_mimepart_5d2f4c78a5c65_2c3a3fbb1f8cd95c148386
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

5078fc0d5d6dc1c42186a06ee37ca211ee963d1b  Reaction to attack


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2896/files/f2992808f37445b69db10f7921b34562682fb5a0..5078fc0d5d6dc1c42186a06ee37ca211ee963d1b

----==_mimepart_5d2f4c78a5c65_2c3a3fbb1f8cd95c148386
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/5078fc0d5d6dc1c42186a06ee37ca211ee963d1b">5078fc0</a>  Reaction to attack</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/2896/files/f2992808f37445b69db10f7921b34562682fb5a0..5078fc0d5d6dc1c42186a06ee37ca211ee963d1b?email_source=notifications&amp;email_token=AFTOJKYC32MAV5I6UH6A3PTP75B7RA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TONBTHAZDEN2QOVZWQIZTHAZDOMBYHEYDSNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYKMJOTDIIK6W6TP2DP75B7RANCNFSM4IDSJVKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ZTVVLC2LZD37LMG3P75B7RA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TONBTHAZDEN2QOVZWQIZTHAZDOMBYHEYDSNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2896/files/f2992808f37445b69db10f7921b34562682fb5a0..5078fc0d5d6dc1c42186a06ee37ca211ee963d1b?email_source=notifications\u0026email_token=AFTOJKYC32MAV5I6UH6A3PTP75B7RA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TONBTHAZDEN2QOVZWQIZTHAZDOMBYHEYDSNI",
"url": "https://github.com/quicwg/base-drafts/pull/2896/files/f2992808f37445b69db10f7921b34562682fb5a0..5078fc0d5d6dc1c42186a06ee37ca211ee963d1b?email_source=notifications\u0026email_token=AFTOJKYC32MAV5I6UH6A3PTP75B7RA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TONBTHAZDEN2QOVZWQIZTHAZDOMBYHEYDSNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f4c78a5c65_2c3a3fbb1f8cd95c148386--


From nobody Wed Jul 17 09:28:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4E330120657 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:28:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.899
X-Spam-Level: 
X-Spam-Status: No, score=-6.899 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bu7m51YuhTb8 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:28: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 A312F120170 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:28: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 0DB9BC60645 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:28:01 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:28:00 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/17d82a-251b42@github.com>
Subject: [quicwg/base-drafts] 800645: 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/uR-XRc548e-qKACt3H5ERCdiU04>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:28:03 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8006456f147c1ea32e80cc65fb33b04bf955ec00
      https://github.com/quicwg/base-drafts/commit/8006456f147c1ea32e80cc65fb33b04bf955ec00
  Author: tandf <tandf@live.cn>
  Date:   2019-07-16 (Tue, 16 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Fix typo


  Commit: 251b42e00d2973ae2dcbbe09d6c193932bb7c72c
      https://github.com/quicwg/base-drafts/commit/251b42e00d2973ae2dcbbe09d6c193932bb7c72c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-18 (Thu, 18 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #2901 from tandf/patch-1

Fix typo


Compare: https://github.com/quicwg/base-drafts/compare/17d82ab10046...251b42e00d29


From nobody Wed Jul 17 09:28:16 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8DDD7120170 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:28:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RSkZjmGnnY6M for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:28: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 1329B1206BB for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:28:11 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:28:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380890; bh=/+QvHl/l3QUPMF1qGyEReN/JV87ZXVFpgXD8Io6r0pc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kWP6e3H5yS2q6Ib1aOq8oWOqcrYQ8z3O9acJfWJGiCKQ56wISrKmjqdfqwadX+BTl uV8d68mAXct7MCsRgyUUgda+EKA5JMVRU8nzbutNyha+qDNKt1ZUxg9dCsJd/2fcEB H3EtUzl3zhOMmGRjmTVQ7taQzeRUKVx4YfZhiT90=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EOMRKKIBRQKV3L2F3HR7RVEVBNHHBX3CIFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2901/issue_event/2490056994@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2901@github.com>
References: <quicwg/base-drafts/pull/2901@github.com>
Subject: Re: [quicwg/base-drafts] Fix typo (#2901)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f4c9a5ae52_58513fe34aacd95c2198a6"; 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/myhKHibqrfc6eaj5Mt7ZPmBDbls>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:28:15 -0000

----==_mimepart_5d2f4c9a5ae52_58513fe34aacd95c2198a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2901 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/2901#event-2490056994
----==_mimepart_5d2f4c9a5ae52_58513fe34aacd95c2198a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="468469803" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2901" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2901/hovercard" href="https://github.com/quicwg/base-drafts/pull/2901">#2901</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/2901?email_source=notifications&amp;email_token=AFTOJK6JLCWSMFCZMMU2J53P75CBVA5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVUCIQ#event-2490056994">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK773TZ7OBULUNYUADLP75CBVANCNFSM4ID5O5TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5IAMZNZDYJJLXZSDLP75CBVA5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVUCIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2901?email_source=notifications\u0026email_token=AFTOJK6JLCWSMFCZMMU2J53P75CBVA5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVUCIQ#event-2490056994",
"url": "https://github.com/quicwg/base-drafts/pull/2901?email_source=notifications\u0026email_token=AFTOJK6JLCWSMFCZMMU2J53P75CBVA5CNFSM4ID5O5TKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRVUCIQ#event-2490056994",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f4c9a5ae52_58513fe34aacd95c2198a6--


From nobody Wed Jul 17 09:28:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1EAA912066F for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:28:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RrWhI0kB0DdD for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:28: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 F1D25120170 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:28:53 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:28:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380933; bh=vAJp3peeN+N9CfZvtNE/TtthUNwa4GpXxAIu1FDZlaY=; h=Date:From:To:Subject:From; b=Im50KeJyulelCR7Y5zlF1cm8YAGlQT30nMnpZko5LiDBmM/voiC0CPOVPBZ5bytJQ I9B7ma9gV/iI3R7Tu06r2ZHv0aw/ZUIM4IQHt0tRL44PP2VyYFsbO1qTssMjAX2+2S wrEpDSNwVbMuVaWQuzD2549tojc0FSe2JSPFVuis=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0a5acc-3b55bb@github.com>
Subject: [quicwg/base-drafts] 3b55bb: Script updating gh-pages from 5078fc0d. [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/kXgRmKFotf1VJVoIre8WNMrW6Jc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:28:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3b55bb8c8b74b4f10b3100b301d2f18f65bff9ef
      https://github.com/quicwg/base-drafts/commit/3b55bb8c8b74b4f10b3100b301d2f18f65bff9ef
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M index.html
    M issue2890/draft-ietf-quic-http.html
    M issue2890/draft-ietf-quic-http.txt
    M issue2890/draft-ietf-quic-invariants.html
    M issue2890/draft-ietf-quic-invariants.txt
    M issue2890/draft-ietf-quic-qpack.html
    M issue2890/draft-ietf-quic-qpack.txt
    M issue2890/draft-ietf-quic-recovery.html
    M issue2890/draft-ietf-quic-recovery.txt
    M issue2890/draft-ietf-quic-tls.html
    M issue2890/draft-ietf-quic-tls.txt
    M issue2890/draft-ietf-quic-transport.html
    M issue2890/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 5078fc0d. [ci skip]



From nobody Wed Jul 17 09:29:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 63877120657 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:29:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D7xTw9ccvyEp for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:29: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 11373120170 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:29:17 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:29:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563380956; bh=3B6F5c/4vFywInfo4YLN1DmFWS86S5bkz5LGAnMpVzg=; h=Date:From:To:Subject:From; b=t5jFztLAAHRXPEAb3B9KCs9KS+XsupYtq9Tp9KWWyfeesogazUyh1sm9rABnjYSzA Z+vzEVHMd9f7DCoJPLMZJXbbhpxcllbTrhdA2LzDtotToaPGIngRU61Xc9fNJfJ24M 8SS1eoLPX9xUqKn94Q2N3s6JvuARz4KuMFbEf/ZU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3b55bb-8fbb74@github.com>
Subject: [quicwg/base-drafts] 8fbb74: Script updating gh-pages from 251b42e0. [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/RJVk1HiG9kXslvI0fW0WP9i1QMs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:29:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8fbb7471ab9f28401c6ecf77e35dc741fd8d77c1
      https://github.com/quicwg/base-drafts/commit/8fbb7471ab9f28401c6ecf77e35dc741fd8d77c1
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 251b42e0. [ci skip]



From nobody Wed Jul 17 09:33:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3A3491203E2 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:33:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p35QuHH8w4lR for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:33:31 -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 8B9E112014B for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:33:31 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:33:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563381210; bh=2k7/JeHqe8aecLIWVd61zfejEykkV8Qc5OUfGo86kCA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=xAZx9fepX5z3pay8tTvHj0f4AxZl8nT8ATCqm3drAXRt+ppZn+9OacfLkzNNVgTTU TiNihX16TMH9QcuVRMNKcj2FuyrSatMHtAFXqSUSNj28g4dhYpARhpy+bt71lNkn1S qhzDt80m33crKEdzf6E6hd1Qed4O9wrpEhyhjgkA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VADHXLA5TORTMTS53HSAFVEVBNHHBX6KQUU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2905@github.com>
Subject: [quicwg/base-drafts] Tradeoffs with padding (#2905)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f4ddaa056a_43653ff4e76cd95c635ae"; 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/rxhZVX3XtVRGFTshSCGSfWFKWYk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:33:33 -0000

----==_mimepart_5d2f4ddaa056a_43653ff4e76cd95c635ae
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

>From a discussion on #2857:

We should probably have a conversation about the trade-offs with padding.  Transport-layer padding is in some ways superior, like in how it can be granular to a single byte, which reserved streams and frames cannot do.  But PADDING frames at the transport aren't retransmitted when lost, which could lead to some interesting attacks if packets can be suppressed by an attacker.  If retransmissions aren't padded, boom.

_Originally posted by @martinthomson in https://github.com/quicwg/base-drafts/pull/2857/files_

-- 
You are receiving 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/2905
----==_mimepart_5d2f4ddaa056a_43653ff4e76cd95c635ae
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>From a discussion on <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461787518" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2857" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2857/hovercard" href="https://github.com/quicwg/base-drafts/pull/2857">#2857</a>:</p>
<p>We should probably have a conversation about the trade-offs with padding.  Transport-layer padding is in some ways superior, like in how it can be granular to a single byte, which reserved streams and frames cannot do.  But PADDING frames at the transport aren't retransmitted when lost, which could lead to some interesting attacks if packets can be suppressed by an attacker.  If retransmissions aren't padded, boom.</p>
<p><em>Originally posted by <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> in <a href="https://github.com/quicwg/base-drafts/pull/2857/files">https://github.com/quicwg/base-drafts/pull/2857/files</a></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/issues/2905?email_source=notifications&amp;email_token=AFTOJK7XFZ76D7GR6TWNZIDP75CVVA5CNFSM4IESJFRKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7ZKCSQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYFSASFMQFJIZB7ABLP75CVVANCNFSM4IESJFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BCJUCGMQCEMGQUH3P75CVVA5CNFSM4IESJFRKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7ZKCSQ.gif" height="1" width="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/2905?email_source=notifications\u0026email_token=AFTOJK7XFZ76D7GR6TWNZIDP75CVVA5CNFSM4IESJFRKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7ZKCSQ",
"url": "https://github.com/quicwg/base-drafts/issues/2905?email_source=notifications\u0026email_token=AFTOJK7XFZ76D7GR6TWNZIDP75CVVA5CNFSM4IESJFRKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G7ZKCSQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f4ddaa056a_43653ff4e76cd95c635ae--


From nobody Wed Jul 17 09:43:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C7E251203BD for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:43:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PcLOjtnNUMcf for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 09:43:49 -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 52E4F120090 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 09:43:49 -0700 (PDT)
Date: Wed, 17 Jul 2019 09:43:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563381828; bh=ZUBc5PhhGASrQQXRiTzsgRcjqGvOBdoU3VwFH1u4++8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Z/PwGoYkRsHgtKm4rdizA73HTDK5/bMvEaD4+selqR9O1GBT5Rgk5VkRiQkydo5uf +vcaNjWwiOJx96iNUfHNSjSWaCqVXNzCrGJb9tzclND51BwJ0UhE0s27OZzyTsACfE 3xw3IVDUCOlcWEaOAd7IAdKNh3kdZed2ZDzuYtmc=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6F4LKRFP7L2CMLDUN3HSBMJEVBNHHBXY4S7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2896/review/263181632@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2896@github.com>
References: <quicwg/base-drafts/pull/2896@github.com>
Subject: Re: [quicwg/base-drafts] Move wasteful packet stuff to -transport (#2896)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f504438d71_754b3fa0734cd968990f9"; 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/m2xujzuR1MG_VJFzghI3lnN0DKM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 16:43:51 -0000

----==_mimepart_5d2f504438d71_754b3fa0734cd968990f9
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/2896#pullrequestreview-263181632
----==_mimepart_5d2f504438d71_754b3fa0734cd968990f9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2896?email_source=notifications&amp;email_token=AFTOJKYOQ7CNG47GXG7RTZDP75D4JA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6X5KQA#pullrequestreview-263181632">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK45WPK624BZXDOGCILP75D4JANCNFSM4IDSJVKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3OMJO2N7AKLLTFTSTP75D4JA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6X5KQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJKYOQ7CNG47GXG7RTZDP75D4JA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6X5KQA#pullrequestreview-263181632",
"url": "https://github.com/quicwg/base-drafts/pull/2896?email_source=notifications\u0026email_token=AFTOJKYOQ7CNG47GXG7RTZDP75D4JA5CNFSM4IDSJVK2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6X5KQA#pullrequestreview-263181632",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f504438d71_754b3fa0734cd968990f9--


From nobody Wed Jul 17 10:23:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B5C941207E3 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:23:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YxlqmUGMf-vy for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:23: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 EEE6C12077C for <quic-issues@ietf.org>; Wed, 17 Jul 2019 10:23:49 -0700 (PDT)
Date: Wed, 17 Jul 2019 10:23:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563384229; bh=xDI259DWHSaLcjGbQi2hYEm3SOrDDpLZJmFlb9piB3Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v/+eSH0p505zHbeYKje08cD/QrqQhtSfR0TrrKrbUNQbYK9hXLhOnmeZ5KGSS1G7G DyX7gOJQ5uwMaaBUep/CGwTrWzvbUFGvz+trk6g6s9wrNtVXIK3gwXWpCHZGMmoCfR sr4BQxUxwgIF8uKAwMjc6iZwvDvBlc0LRasI+5Gg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4FZ2PDX7YOFTR64A53HSGCJEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/512430995@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f59a4f37c5_77ad3fd97a8cd9603384db"; 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/mF8kJ8qX3u7yJpT9Rpr3kNkV6VQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 17:23:52 -0000

----==_mimepart_5d2f59a4f37c5_77ad3fd97a8cd9603384db
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The sentence is correct. The only thing that is uncertain is the length of the packet number, but this also determines the length of the payload field. The question you are attempting to answer is the length of the packet. David is correct to point out that that length can be determined from unencrypted 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/2900#issuecomment-512430995
----==_mimepart_5d2f59a4f37c5_77ad3fd97a8cd9603384db
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The sentence is correct. The only thing that is uncertain is the length of the packet number, but this also determines the length of the payload field. The question you are attempting to answer is the length of the packet. David is correct to point out that that length can be determined from unencrypted information.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2900?email_source=notifications&amp;email_token=AFTOJK2UTAFHF7T2RKWEQSTP75ISJA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRHEY#issuecomment-512430995">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3NTZYXVSHWCN2PBATP75ISJANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK24TPBGNKJ5OKBYCRLP75ISJA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRHEY.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJK2UTAFHF7T2RKWEQSTP75ISJA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRHEY#issuecomment-512430995",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJK2UTAFHF7T2RKWEQSTP75ISJA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRHEY#issuecomment-512430995",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f59a4f37c5_77ad3fd97a8cd9603384db--


From nobody Wed Jul 17 10:24:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E4E581207E4 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:24:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7ADvWOUzaLTv for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:24: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 BE3A312077C for <quic-issues@ietf.org>; Wed, 17 Jul 2019 10:24:16 -0700 (PDT)
Date: Wed, 17 Jul 2019 10:24:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563384256; bh=hAxqGQvt+woepI2H81c+bzC8aXOCZ7BrbLdvni89w8Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WASqhM2GuDdSDXlyuuwMoCUpeYxz6bqef9G5BQJpoHAvGwcB8vrgoloHGOAguxaH2 /m4359IBBfgpOGeBvRq5h1I0ugPtqlJam8xwpF2/uchN7+afWGD9kXch5bru40Wuv5 AfT7vwm0eXxGkW3rYyZtXccjCMPAKHUDmFq7L7A8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZZZAETO5AWYX63WP53HSGD7EVBNHHBX53RDA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2903/c512432075@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2903@github.com>
References: <quicwg/base-drafts/pull/2903@github.com>
Subject: Re: [quicwg/base-drafts] Remove Incorrect Sentence in Coalescing Section (#2903)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f59bff29ee_29353fd97a8cd96014772a"; 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/HlFcYSgu9tCCjLd87tr60dhk82I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 17:24:18 -0000

----==_mimepart_5d2f59bff29ee_29353fd97a8cd96014772a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't want to take this change. See the 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/2903#issuecomment-512432075
----==_mimepart_5d2f59bff29ee_29353fd97a8cd96014772a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't want to take this change. See the 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/2903?email_source=notifications&amp;email_token=AFTOJK7IIX5FKFHKOROOETTP75IT7A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRPSY#issuecomment-512432075">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3NJWK655UWDJNYJMLP75IT7ANCNFSM4IEQQJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4K45C4QJOUREGD73LP75IT7A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRPSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK7IIX5FKFHKOROOETTP75IT7A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRPSY#issuecomment-512432075",
"url": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK7IIX5FKFHKOROOETTP75IT7A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2FRPSY#issuecomment-512432075",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f59bff29ee_29353fd97a8cd96014772a--


From nobody Wed Jul 17 10:41:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BC7D7120895 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:41:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TYG3s7wCtraK for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:41: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 D43C912088F for <quic-issues@ietf.org>; Wed, 17 Jul 2019 10:41:30 -0700 (PDT)
Date: Wed, 17 Jul 2019 10:41:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563385289; bh=S7VpGWFU8/5UK0ymchZ/w3gjG24MDS2TfoN4mxVXbnw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GdvLl2Z1xICmzPVGXL/+UyNEUOpoU6rycMN86TjixMxABpmdU1S4UVJFhNRfJDFkZ 9BnRSzMNG6VcWuPnWQUkz4QhJmmRuegdyUysPo7e1VrDeiZ6kwq1bomdNs/VGPCkm/ 2wZxVw2tw4VDrrWas8nxJd4sQq6xmCVfPpeBC5xI=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3MXPMEVHR6JTNPFDV3HSIETEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/review/263212282@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f5dc9cc7b5_5bd13ff178ecd96c35248b"; 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/mrhWa7wyN4gZtDNBeSyMTZu7lxw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 17:41:33 -0000

----==_mimepart_5d2f5dc9cc7b5_5bd13ff178ecd96c35248b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

erickinnear commented on this pull request.



> -Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer's address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
+due to spoofed addresses or other manipulation of observed traffic. An endpoint
+MUST NOT actively initiate migration if its peer supplies a zero-length
+connection ID as packets without a Destination Connection ID cannot be
+attributed to a connection based on address tuple.

Good point! We cover this area much more thoroughly elsewhere, I'll remove 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/2893#discussion_r304559152
----==_mimepart_5d2f5dc9cc7b5_5bd13ff178ecd96c35248b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2893#discussion_r304559152">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer&#39;s address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
+due to spoofed addresses or other manipulation of observed traffic. An endpoint
+MUST NOT actively initiate migration if its peer supplies a zero-length
+connection ID as packets without a Destination Connection ID cannot be
+attributed to a connection based on address tuple.
</pre>
<p>Good point! We cover this area much more thoroughly elsewhere, I'll remove 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/2893?email_source=notifications&amp;email_token=AFTOJK5QT45WTU62Y3PJ53DP75KUTA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YEZ6Q#discussion_r304559152">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HUUYGP5MRTFALB7LP75KUTANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RIFTFJ6HZKQA4REDP75KUTA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YEZ6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK5QT45WTU62Y3PJ53DP75KUTA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YEZ6Q#discussion_r304559152",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK5QT45WTU62Y3PJ53DP75KUTA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YEZ6Q#discussion_r304559152",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f5dc9cc7b5_5bd13ff178ecd96c35248b--


From nobody Wed Jul 17 10:43:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B16F91208B3 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:43:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ZT6BivAltgtZ for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:43:36 -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 7A8A81208AE for <quic-issues@ietf.org>; Wed, 17 Jul 2019 10:43:36 -0700 (PDT)
Date: Wed, 17 Jul 2019 10:43:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563385415; bh=KLzpAR28e9bcD1mO3NQxRxaDtSo3Ea3EmL99m31qSsM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KjGUd3ukL8d1xM3NELEixfbcpYPOkZJmuyifun8fJu2Jr0ne2TdMtdkWHR1tQJhAJ rf9nzulDEi5fDhzuWNH194DWggUsYjMcnA2eDYsg9IkbD82g6MvH02V3CqYjvtwSqw HG4hyo22HnGMpyrkuiywHfth4APZqvjS56W3qE2c=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOL4MGA4STJEW5OKF3HSIMPEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2900/512477851@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f5e47c284e_2dd33fcc184cd96036254d"; 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/JXNdJtPtmlKBeKoby8U0xai7vdQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 17:43:38 -0000

----==_mimepart_5d2f5e47c284e_2dd33fcc184cd96036254d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Ok. That makes sense. I think we can then just close this issue as a misunderstanding, as well as my 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/2900#issuecomment-512477851
----==_mimepart_5d2f5e47c284e_2dd33fcc184cd96036254d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Ok. That makes sense. I think we can then just close this issue as a misunderstanding, as well as my 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/2900?email_source=notifications&amp;email_token=AFTOJKYJ6E2BN5ZQRRV3RJTP75K4PA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F4VGY#issuecomment-512477851">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6CELSGUFN5ZVMERALP75K4PANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYMKJ46C3NSDVWEYWLP75K4PA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F4VGY.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJKYJ6E2BN5ZQRRV3RJTP75K4PA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F4VGY#issuecomment-512477851",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJKYJ6E2BN5ZQRRV3RJTP75K4PA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F4VGY#issuecomment-512477851",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f5e47c284e_2dd33fcc184cd96036254d--


From nobody Wed Jul 17 10:44:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 64DDC1208B7 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:44:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pbBfvcQDXH7O for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:44: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 C39361208B8 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 10:44:21 -0700 (PDT)
Date: Wed, 17 Jul 2019 10:44:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563385461; bh=pc31GZ5uF6yycgfZN/JCKfLYYGE/UWc4S4OQsflPj/U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k8B6+zI8KFD6sX54EwrfXKVuMEkXWWodPAoXNcDXGno9QyJ/KyMWYu1XYsTc98Tnc hv5edwcZ9aYqDLU7vLk6YZbzlDdz0UyQEAxWO0Vi2nk4XJjyLaNKoS0iOC7aawzsaV UVwbEJEvuBvnEJgwiW3HrTzPh44oWzKM9n7Cd1i8=
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/2893/push/3827360524@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f5e74e394c_729c3f836a6cd96439152"; 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/Fz71lAd_Re4RowbgPBVNL5LGCfU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 17:44:27 -0000

----==_mimepart_5d2f5e74e394c_729c3f836a6cd96439152
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 1 commit.

5a7293da9be6061ded0a277fe019a48235dff2d8  Remove sentence that's no longer necessary


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2893/files/b1bd4ac46dbcb0081c8ba46d4250c1cdf38688f8..5a7293da9be6061ded0a277fe019a48235dff2d8

----==_mimepart_5d2f5e74e394c_729c3f836a6cd96439152
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/5a7293da9be6061ded0a277fe019a48235dff2d8">5a7293d</a>  Remove sentence that&#39;s no longer necessary</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/2893/files/b1bd4ac46dbcb0081c8ba46d4250c1cdf38688f8..5a7293da9be6061ded0a277fe019a48235dff2d8?email_source=notifications&amp;email_token=AFTOJK4JUSQDXSK4LP7A3D3P75K7JA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHAZDOMZWGA2TENA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZTIOBF4FHZEZQ4TX3P75K7JANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYF7HRBJMTIJTMBZ3LP75K7JA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHAZDOMZWGA2TENA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893/files/b1bd4ac46dbcb0081c8ba46d4250c1cdf38688f8..5a7293da9be6061ded0a277fe019a48235dff2d8?email_source=notifications\u0026email_token=AFTOJK4JUSQDXSK4LP7A3D3P75K7JA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHAZDOMZWGA2TENA",
"url": "https://github.com/quicwg/base-drafts/pull/2893/files/b1bd4ac46dbcb0081c8ba46d4250c1cdf38688f8..5a7293da9be6061ded0a277fe019a48235dff2d8?email_source=notifications\u0026email_token=AFTOJK4JUSQDXSK4LP7A3D3P75K7JA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHAZDOMZWGA2TENA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2f5e74e394c_729c3f836a6cd96439152--


From nobody Wed Jul 17 10:44:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F21CD1208AF for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:44:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R2528SC_08f7 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:44: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 1F3CC1208BA for <quic-issues@ietf.org>; Wed, 17 Jul 2019 10:44:36 -0700 (PDT)
Date: Wed, 17 Jul 2019 10:44:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563385475; bh=36i9TpJ08GX9Uj51c9n81W26m3FRaDypxbfLisfxw6o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SBcE0JUhrvseLTQoahN6myyzxy7H7njIepte365/Sr1uFsTU5eJrveb9lkY1FGcK3 ORMmTB7yVUAzCS9prFHjpiqpCFtERz/wFIsTxA5HgyitgN1YJAVRoGfJmpP/uc+Ejf GIg6Nl4OzJj8iFiOZg+0Ls3BqO0OQlImG/TH+TUg=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2VKAWTBO5ETMBR7FV3HSIQHEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/review/263214042@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f5e8338c7d_3f983ff56c2cd96c598287"; 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/Vj1_WKhKo_la051lqafF6tD769k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 17:44:43 -0000

----==_mimepart_5d2f5e8338c7d_3f983ff56c2cd96c598287
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

erickinnear commented on this pull request.



> -Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer's address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
+due to spoofed addresses or other manipulation of observed traffic. An endpoint
+MUST NOT actively initiate migration if its peer supplies a zero-length
+connection ID as packets without a Destination Connection ID cannot be
+attributed to a connection based on address tuple.

Removed in 5a7293d

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2893#discussion_r304560473
----==_mimepart_5d2f5e8338c7d_3f983ff56c2cd96c598287
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2893#discussion_r304560473">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer&#39;s address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
+due to spoofed addresses or other manipulation of observed traffic. An endpoint
+MUST NOT actively initiate migration if its peer supplies a zero-length
+connection ID as packets without a Destination Connection ID cannot be
+attributed to a connection based on address tuple.
</pre>
<p>Removed in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/5a7293da9be6061ded0a277fe019a48235dff2d8/hovercard" href="https://github.com/quicwg/base-drafts/commit/5a7293da9be6061ded0a277fe019a48235dff2d8"><tt>5a7293d</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/2893?email_source=notifications&amp;email_token=AFTOJK5H2Y3PICW445E5H23P75LAHA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YFHWQ#discussion_r304560473">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3DA37XX42YJQWPYLP75LAHANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY2TP6T76EFG3FPUWTP75LAHA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YFHWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK5H2Y3PICW445E5H23P75LAHA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YFHWQ#discussion_r304560473",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK5H2Y3PICW445E5H23P75LAHA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB6YFHWQ#discussion_r304560473",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f5e8338c7d_3f983ff56c2cd96c598287--


From nobody Wed Jul 17 10:48:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 644961208E1 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:48:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Z_WLO8PDA5Sp for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 10:48: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 481A71208CB for <quic-issues@ietf.org>; Wed, 17 Jul 2019 10:48:37 -0700 (PDT)
Date: Wed, 17 Jul 2019 10:48:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563385716; bh=fDh2Jt2l7TtPzDn8uIp/sQxus+buY4NTJH38Z5yWwAI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dL+o5byW2CvainEADSLSzC+3agUKr8KZ8lxLD1oU/9iUE8Aea+LlOOLe2d3xzx6xU xMBbrTsaw2kwJdioVSvSRkJqsoz5QLBkX6Fs06oUBS8oMm9L6FJIm9n0v22VXj/o6y cm1r6h3kXl16roS9ejQ63hAD41MZDEXEOQc+ylUs=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2DCDIKBW7V7LE5KKV3HSI7JEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/c512489783@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f5f743d700_30e53fa0be4cd968406962"; 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/Ov9ZgK7BmzgvRUF6kh1Gf8G0080>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 17:48:40 -0000

----==_mimepart_5d2f5f743d700_30e53fa0be4cd968406962
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Re: The value of this TP, I tend to agree with @martinthomson, pretty much all of the machinery must be implemented whether or not the TP is sent. But agreed - let's discuss elsewhere, since I think this particular change is in pretty good shape 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/2893#issuecomment-512489783
----==_mimepart_5d2f5f743d700_30e53fa0be4cd968406962
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Re: The value of this TP, I tend to agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a>, pretty much all of the machinery must be implemented whether or not the TP is sent. But agreed - let's discuss elsewhere, since I think this particular change is in pretty good shape 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/2893?email_source=notifications&amp;email_token=AFTOJK7INU4QDXOR3UCJYV3P75LPJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F7SNY#issuecomment-512489783">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7X4SM7J5TJ77T42HLP75LPJANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4J2TKPQQX7RI5ZYJTP75LPJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F7SNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK7INU4QDXOR3UCJYV3P75LPJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F7SNY#issuecomment-512489783",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK7INU4QDXOR3UCJYV3P75LPJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2F7SNY#issuecomment-512489783",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f5f743d700_30e53fa0be4cd968406962--


From nobody Wed Jul 17 11:29:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 93AA21208B3 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 11:29:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pIyK2BBkooFi for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 11:29: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 B664412085E for <quic-issues@ietf.org>; Wed, 17 Jul 2019 11:29:18 -0700 (PDT)
Date: Wed, 17 Jul 2019 11:29:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563388157; bh=5kxdxDxeyuxe2txYfkrAr1DPPoDLImKB2KVS9gqMaZ0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i3IhhIVlOPFXsK+2y+89n22jmJWzK3FQLCQJcIMAeQYQc2ewPQ9/HFgUyki/3y/Pp Pi9laEU0krplXfzQ4eIQW2r7EqzyjeF3cD3dGUS9GWL08YeOwFYIY8sw5Kz4thQHHd o8IItvIjEY1xLAoQrYnptK5FKU85fW7l/BHezNV4=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ST63IW5ZOUF2A5Q53HSNX3EVBNHHBX53RDA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2903/issue_event/2490460038@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2903@github.com>
References: <quicwg/base-drafts/pull/2903@github.com>
Subject: Re: [quicwg/base-drafts] Remove Incorrect Sentence in Coalescing Section (#2903)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f68fd8f663_74e63fa0734cd96887005b"; 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/Hm75Wij8uR3qbjal8fn31lM8M-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: Wed, 17 Jul 2019 18:29:21 -0000

----==_mimepart_5d2f68fd8f663_74e63fa0734cd96887005b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2903.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2903#event-2490460038
----==_mimepart_5d2f68fd8f663_74e63fa0734cd96887005b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469201176" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2903" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2903/hovercard" href="https://github.com/quicwg/base-drafts/pull/2903">#2903</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/2903?email_source=notifications&amp;email_token=AFTOJK6D7HA6Y7KCE5LPCH3P75QH3A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRYWPBQ#event-2490460038">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UDTIAQLEI7ERPXGTP75QH3ANCNFSM4IEQQJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CEUVF3ZOD7OXUOSLP75QH3A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRYWPBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK6D7HA6Y7KCE5LPCH3P75QH3A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRYWPBQ#event-2490460038",
"url": "https://github.com/quicwg/base-drafts/pull/2903?email_source=notifications\u0026email_token=AFTOJK6D7HA6Y7KCE5LPCH3P75QH3A5CNFSM4IEQQJG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSRYWPBQ#event-2490460038",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f68fd8f663_74e63fa0734cd96887005b--


From nobody Wed Jul 17 13:00:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2A391120157 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 13:00:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 TRHwrWoA904D for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 13:00: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 75A6012010F for <quic-issues@ietf.org>; Wed, 17 Jul 2019 13:00:40 -0700 (PDT)
Date: Wed, 17 Jul 2019 13:00:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563393639; bh=SKkti9x57E28JFdKvy7S2EbbiyGyn2jMlhYnjIMlUWs=; h=Date:From:To:Subject:From; b=05PXBhGFZ6l8Rz4Gg4VCtYN5PlHaWY3U1QLeJ56SInQbnJhk1ip0IgBV+nsVdZ3I1 bevH2QGsufXSH7002pYf6IcspATRisITZ8InTR0SWE88kpjtKmLiq4HiZE1dsAjUBn yfsD8+4OtEtHgDAd2NdzSL9osCca4yI7fieFYyMg=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/838360-e1000f@github.com>
Subject: [quicwg/wg-materials] 1f6f27: Add Version Ossification deck
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vGOJik_57c-47S5gAuFgqO97A0k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 20:00:42 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: 1f6f27ecaa5c75f7ff9de21aadb6ddeecd9748b1
      https://github.com/quicwg/wg-materials/commit/1f6f27ecaa5c75f7ff9de21aadb6ddeecd9748b1
  Author: EKR <ekr@rtfm.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    A ietf105/VersionOssification.pdf

  Log Message:
  -----------
  Add Version Ossification deck


  Commit: e1000f6c8d4b26e0d39bfe93ea8f1860019a46d7
      https://github.com/quicwg/wg-materials/commit/e1000f6c8d4b26e0d39bfe93ea8f1860019a46d7
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    A ietf105/VersionOssification.pdf

  Log Message:
  -----------
  Merge pull request #116 from ekr/version_ossification

Add Version Ossification deck


Compare: https://github.com/quicwg/wg-materials/compare/838360c95717...e1000f6c8d4b


From nobody Wed Jul 17 14:03:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8ABB5120099 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 14:03:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.494
X-Spam-Level: 
X-Spam-Status: No, score=-6.494 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eQILydDRDymS for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 14:03: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 9D228120086 for <quic-issues@ietf.org>; Wed, 17 Jul 2019 14:03:38 -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 EC41B1C0E2A for <quic-issues@ietf.org>; Wed, 17 Jul 2019 14:03:37 -0700 (PDT)
Date: Wed, 17 Jul 2019 14:03:37 -0700
From: =?UTF-8?B?SmVyZW15IExhaW7DqQ==?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OPI2TZHWM3SPWGB53HS72TEVBNHHBX6ZH2U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2906@github.com>
Subject: [quicwg/base-drafts] Pseudo-code for SetLossDetectionTimer looks odd (#2906)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2f8d29dca3c_25453f89d6ecd96c23643d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: jlaine
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/M2tK_2Fs-E2MoPFJFS6Cp5EYuFo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 21:03:41 -0000

----==_mimepart_5d2f8d29dca3c_25453f89d6ecd96c23643d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The pseudo-code for `SetLossDetectionTimer` contains the following:

```
  // Don't arm timer if there are no ack-eliciting packets
  // in flight and the handshake is complete.
  if (endpoint is client with 1-RTT keys &&
      no ack-eliciting packets in flight):
    loss_detection_timer.cancel()
    return
```

Unless I'm mistaken the first condition of the `if` doesn't match the comment. I don't think we should be re-arming the timer in the following conditions:

- server without 1-RTT keys and no ack-eliciting packets in flight
- server with 1-RTT keys and no ack-eliciting packets in flight

It's not beautiful but the `if` should probably be more like:

```
    if (no ack-eliciting packets in flight && (endpoint is server or has 1-RTT keys)):
```

Thoughts @ianswett ?

-- 
You are receiving 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/2906
----==_mimepart_5d2f8d29dca3c_25453f89d6ecd96c23643d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The pseudo-code for <code>SetLossDetectionTimer</code> contains the following:</p>
<pre><code>  // Don't arm timer if there are no ack-eliciting packets
  // in flight and the handshake is complete.
  if (endpoint is client with 1-RTT keys &amp;&amp;
      no ack-eliciting packets in flight):
    loss_detection_timer.cancel()
    return
</code></pre>
<p>Unless I'm mistaken the first condition of the <code>if</code> doesn't match the comment. I don't think we should be re-arming the timer in the following conditions:</p>
<ul>
<li>server without 1-RTT keys and no ack-eliciting packets in flight</li>
<li>server with 1-RTT keys and no ack-eliciting packets in flight</li>
</ul>
<p>It's not beautiful but the <code>if</code> should probably be more like:</p>
<pre><code>    if (no ack-eliciting packets in flight &amp;&amp; (endpoint is server or has 1-RTT keys)):
</code></pre>
<p>Thoughts <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=20072817" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</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/2906?email_source=notifications&amp;email_token=AFTOJKY6RIQM7DQ3VKPR4B3P76CKTA5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73E7KQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3U2A3OUIDXWPZZ5TLP76CKTANCNFSM4IEUP7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK22GAYJK6TC6TFD7ULP76CKTA5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73E7KQ.gif" height="1" width="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/2906?email_source=notifications\u0026email_token=AFTOJKY6RIQM7DQ3VKPR4B3P76CKTA5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73E7KQ",
"url": "https://github.com/quicwg/base-drafts/issues/2906?email_source=notifications\u0026email_token=AFTOJKY6RIQM7DQ3VKPR4B3P76CKTA5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73E7KQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2f8d29dca3c_25453f89d6ecd96c23643d--


From nobody Wed Jul 17 15:47:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0D70C1200F5 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:47:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 afXPX8qVwr2i for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:47: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 8F90A12006A for <quic-issues@ietf.org>; Wed, 17 Jul 2019 15:47:10 -0700 (PDT)
Date: Wed, 17 Jul 2019 15:47:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563403629; bh=11Fl5aJBiBEVbfRwTCJYFQfzueDuj40F+riFUZzpXw4=; h=Date:From:To:Subject:From; b=MvZcjBJwCnKEc6scF15PpI7YAXmzjCGeSta3TE79kEfC38Duj65vXDX5Ri+KWyr9r EwQZTw7tN3pqZeoKqbmiGgxq2Zbjnqy4ubLnu/1mg4Og879py1zb84WGt9EO/wFJSM n/ao1pgILOzqEqSUjvU71uNEXFCS8eCyVTgdY1vo=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/000000-ad064c@github.com>
Subject: [quicwg/base-drafts] ad064c: 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/wW9mXkSqeWhAKlkhDmAkPCH5244>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 22:47:12 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: ad064cca079cd1f40f04253bffd470fd7f69eebe
      https://github.com/quicwg/base-drafts/commit/ad064cca079cd1f40f04253bffd470fd7f69eebe
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed Jul 17 15:48:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7AF871200F5 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:48:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 cFiVqz10tFn6 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:48: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 C6FE612006A for <quic-issues@ietf.org>; Wed, 17 Jul 2019 15:48:08 -0700 (PDT)
Date: Wed, 17 Jul 2019 15:48:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563403687; bh=cBYKtUqkxW33e/1Wap7QKRfgRvmBtxBha6JBIMRsWno=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=LlVzCUsYjQyp8H5TO1TKTbIBn41VpA5dgRCehW5WBjelp8Evaeq29C/hbQVRNiNG0 /Q+2VCZdbpD9Lufr8f7hdILe7dKiWTPTlvEa0484yZSnq6h8zGaUNWc0sFN1BQZcJA emP+t4aU3R0jlvP65w8kG2/sPqt/c/tCYbD4Mwf8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3U7KG3OPRWZJ5QRFF3HTMCPEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907@github.com>
Subject: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2fa5a7cd478_25933fdfbe2cd96c11117f"; 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/rI_IxiWjjrx5QQSAecjr3fukN1w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 22:48:11 -0000

----==_mimepart_5d2fa5a7cd478_25933fdfbe2cd96c11117f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #2906 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2907

-- Commit Summary --

  * Update draft-ietf-quic-recovery.md

-- File Changes --

    M draft-ietf-quic-recovery.md (7)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2907.patch
https://github.com/quicwg/base-drafts/pull/2907.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/2907

----==_mimepart_5d2fa5a7cd478_25933fdfbe2cd96c11117f
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 #2906.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469444565" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2906" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2906/hovercard" href="https://github.com/quicwg/base-drafts/issues/2906">#2906</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/2907'>https://github.com/quicwg/base-drafts/pull/2907</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update draft-ietf-quic-recovery.md</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2907/files#diff-0">draft-ietf-quic-recovery.md</a>
    (7)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2907.patch'>https://github.com/quicwg/base-drafts/pull/2907.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2907.diff'>https://github.com/quicwg/base-drafts/pull/2907.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/2907?email_source=notifications&amp;email_token=AFTOJK2TJMDZYMU4UE6NKYLP76OSPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73YQ6A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK65USALI3VDZCCYHUTP76OSPANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ZAKTRV4SDPLEIULDP76OSPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73YQ6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2TJMDZYMU4UE6NKYLP76OSPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73YQ6A",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2TJMDZYMU4UE6NKYLP76OSPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4G73YQ6A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d2fa5a7cd478_25933fdfbe2cd96c11117f--


From nobody Wed Jul 17 15:48:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3FB971200F5 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:48:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fv9n6f-90l-D for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:48: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 BEE3312006A for <quic-issues@ietf.org>; Wed, 17 Jul 2019 15:48:26 -0700 (PDT)
Date: Wed, 17 Jul 2019 15:48:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563403705; bh=y8c62WTyNs0o6QNiMhItrcWMv19jT1s3mRIWkAX5wNo=; h=Date:From:To:Subject:From; b=c5x1kLCaYt2unehOnNkW0C2Hl4zKC4qcRfSf95qnlE5/V48mfk5WOZ/6T+oMVti7Y TNQtrhRflDdYTTwPyH23bnT7T6o2oVWdnQbA8b1Xee0JjjK9/3dpePLIkr5fkQEjke rx1KlNknBLIAQ+mIQ006o2cMg+3OG/jY5RTWjAFc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8fbb74-286d50@github.com>
Subject: [quicwg/base-drafts] 286d50: Script updating gh-pages from ad064cca. [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/l4I-DEgwwVqXu5bRVOfBXmoHOE8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 22:48:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 286d50e30522fd79d24271407dbbb5316e818048
      https://github.com/quicwg/base-drafts/commit/286d50e30522fd79d24271407dbbb5316e818048
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    A ianswett-fix-loss-detection/draft-ietf-quic-http.html
    A ianswett-fix-loss-detection/draft-ietf-quic-http.txt
    A ianswett-fix-loss-detection/draft-ietf-quic-invariants.html
    A ianswett-fix-loss-detection/draft-ietf-quic-invariants.txt
    A ianswett-fix-loss-detection/draft-ietf-quic-qpack.html
    A ianswett-fix-loss-detection/draft-ietf-quic-qpack.txt
    A ianswett-fix-loss-detection/draft-ietf-quic-recovery.html
    A ianswett-fix-loss-detection/draft-ietf-quic-recovery.txt
    A ianswett-fix-loss-detection/draft-ietf-quic-tls.html
    A ianswett-fix-loss-detection/draft-ietf-quic-tls.txt
    A ianswett-fix-loss-detection/draft-ietf-quic-transport.html
    A ianswett-fix-loss-detection/draft-ietf-quic-transport.txt
    A ianswett-fix-loss-detection/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ad064cca. [ci skip]



From nobody Wed Jul 17 15:49:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 77180120121 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:49:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7QhLWHMD0-cl for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:49: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 7A39812006A for <quic-issues@ietf.org>; Wed, 17 Jul 2019 15:49:51 -0700 (PDT)
Date: Wed, 17 Jul 2019 15:49:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563403790; bh=blaAFByAA6fju/f0SySdBF9UstXuNZxmyZ8Mv5HS8+g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WopCdSxJkRZN0CMZNudZIIJ6X1JP9mZB5GTfYgMLs8J6M0AE5ytWbCUyMgtj8nqbW J/aN37gWM21Q7pl56UsskZS6hI3BNw+fR8zRByMxJRGzQTAKazEmuckNZFNostFYfC zbT10/HhsG40ASTWefJRKXq9NE3ev+cDFq2lIHHw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3RNG4SXIICVINO3MN3HTMI5EVBNHHBX6ZH2U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2906/512596969@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2906@github.com>
References: <quicwg/base-drafts/issues/2906@github.com>
Subject: Re: [quicwg/base-drafts] Pseudo-code for SetLossDetectionTimer looks odd (#2906)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d2fa60ec71a9_340e3ff1af0cd95c111531"; 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/e7ticcZavkK9xHYRLGlclGP0FN0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 22:49:54 -0000

----==_mimepart_5d2fa60ec71a9_340e3ff1af0cd95c111531
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

You're right, it's now subtly incorrect and your suggestion is a good one.  See PR #2907

I'm not sure the updated comment is that useful given the verbosity of the pseudocode, but suggestions are welcome.

-- 
You are receiving 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/2906#issuecomment-512596969
----==_mimepart_5d2fa60ec71a9_340e3ff1af0cd95c111531
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>You're right, it's now subtly incorrect and your suggestion is a good one.  See PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469484604" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2907" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2907/hovercard" href="https://github.com/quicwg/base-drafts/pull/2907">#2907</a></p>
<p>I'm not sure the updated comment is that useful given the verbosity of the pseudocode, but suggestions are welcome.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2906?email_source=notifications&amp;email_token=AFTOJKZRVFO2H4EYYUYYQYDP76OY5A5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2GZX2I#issuecomment-512596969">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2SNXGO6DI5WCS4YX3P76OY5ANCNFSM4IEUP7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4Y4NQVQE7DJIAHYF3P76OY5A5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2GZX2I.gif" height="1" width="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/2906?email_source=notifications\u0026email_token=AFTOJKZRVFO2H4EYYUYYQYDP76OY5A5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2GZX2I#issuecomment-512596969",
"url": "https://github.com/quicwg/base-drafts/issues/2906?email_source=notifications\u0026email_token=AFTOJKZRVFO2H4EYYUYYQYDP76OY5A5CNFSM4IEUP7PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2GZX2I#issuecomment-512596969",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d2fa60ec71a9_340e3ff1af0cd95c111531--


From nobody Wed Jul 17 15:50:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6F37D120139 for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:50:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dSJQzCUuqTcX for <quic-issues@ietfa.amsl.com>; Wed, 17 Jul 2019 15:50:34 -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 404B812006A for <quic-issues@ietf.org>; Wed, 17 Jul 2019 15:50:34 -0700 (PDT)
Date: Wed, 17 Jul 2019 15:50:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563403833; bh=DhGz/hZC06NQd+WfrM7142s4bCnAoTvq3PShnGiZ0CU=; h=Date:From:To:Subject:From; b=EYT+ehdIwpPdQB0j+CGcAwQyqY+nhKwP16GJtsD4xQax4mTJ9CJvXHR1lVCpYPrbj Kfzo617aNKHGEvOtnQR1xNSEu12KFqhnpNELpBFZzxS91fzZ5loqWugyawVBzFEjJM gFVptqaZ2Qfw9k1D5JGOHmwoR8a9YXvVOmFhMglM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/286d50-6f673a@github.com>
Subject: [quicwg/base-drafts] 6f673a: Script updating issues at 2019-07-17T22:50:27Z. [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/xd9o7bdWINfWgysN5ydkeXjR7Lg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 17 Jul 2019 22:50:35 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6f673a328f1f785307e2f433c8845b3ca21b29f3
      https://github.com/quicwg/base-drafts/commit/6f673a328f1f785307e2f433c8845b3ca21b29f3
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-17T22:50:27Z. [ci skip]



From nobody Thu Jul 18 04:20:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F3A831200BA for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 04:20:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sN9c1e_ebs0R for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 04:20:08 -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 85C03120052 for <quic-issues@ietf.org>; Thu, 18 Jul 2019 04:20:08 -0700 (PDT)
Date: Thu, 18 Jul 2019 04:20:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563448807; bh=tAo+l+BTLgXkX68DVP9npnvzRZbkIHZayHicnztWJvY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mutEpVWZ1eOTgEbXRwbT1SIobkpP6cwj3SSROSdp3e++Q3neKR4Oag4yHICK7nVFC BgG+16Q5ZoNzZC6YmGjtYs3Uls2R2eLY2rn1/ZLG+m3yWA4n+19GW/je2YTRT9BBQ4 BaS3BseWxoXVJ7ivFu1IwN0/N+ie4evqzj0hxZQM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63GGTQHN6HGQTOGQF3HWEGPEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/c512775188@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3055e788577_2fef3f8415acd96427293d"; 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/7gq1c80I6C1-rGlCL1Zq9T4CBSw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 18 Jul 2019 11:20:10 -0000

----==_mimepart_5d3055e788577_2fef3f8415acd96427293d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

When do you use parentheses? 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907#issuecomment-512775188
----==_mimepart_5d3055e788577_2fef3f8415acd96427293d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>When do you use parentheses?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK3FN3JLL5KYI2343LDQABGWPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IFIFA#issuecomment-512775188">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6I2GWTYYHTTOPQ6A3QABGWPANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34LW2DPERRR5HJZADQABGWPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IFIFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK3FN3JLL5KYI2343LDQABGWPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IFIFA#issuecomment-512775188",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK3FN3JLL5KYI2343LDQABGWPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IFIFA#issuecomment-512775188",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3055e788577_2fef3f8415acd96427293d--


From nobody Thu Jul 18 05:05:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A961F120075 for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 05:05:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dFDOy3Ie_i1u for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 05:05: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 257C012006E for <quic-issues@ietf.org>; Thu, 18 Jul 2019 05:05:01 -0700 (PDT)
Date: Thu, 18 Jul 2019 05:05:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563451500; bh=VFPVgOPr4CLjZHsYyES9nb9i5TwZvETGoFiVWwArQRs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=L3RjoaMrjzYb5+YVnWsOrP7arIMtnOwqsOo1IfEqi4r+6XBDRaqfqjgRP57tzWUbm KpH43WNh2+1mwrf8opedjbDwousUCwNnAfktYIMvnzIfa1XkZlzMJppuRTCMWPlyaU 7kkbdEzdFRZUealZ2e2FuSqbS8Fcrht5b5Ubya9M=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PSIAWUK2OLBRMAJN3HWJOZEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/c512787400@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d30606c539c4_7e763f835a0cd95c27115"; 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/Fvjycj-o_yXTYKfY6ZH8wRDzwTI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 18 Jul 2019 12:05:03 -0000

----==_mimepart_5d30606c539c4_7e763f835a0cd95c27115
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It appears most conditionals have parentheses currently, except for 1177.  Are you suggesting to add them there or 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/2907#issuecomment-512787400
----==_mimepart_5d30606c539c4_7e763f835a0cd95c27115
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It appears most conditionals have parentheses currently, except for 1177.  Are you suggesting to add them there or 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/2907?email_source=notifications&amp;email_token=AFTOJK5775JJMAKPXOGBV5LQABL6ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IIHSA#issuecomment-512787400">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK33KJCE77JTMXSB7BLQABL6ZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4IRQER5SUNKMELKFDQABL6ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IIHSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK5775JJMAKPXOGBV5LQABL6ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IIHSA#issuecomment-512787400",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK5775JJMAKPXOGBV5LQABL6ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IIHSA#issuecomment-512787400",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d30606c539c4_7e763f835a0cd95c27115--


From nobody Thu Jul 18 06:00:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 61E0212025C for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:00:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AD9wVT6W-iix for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:00:36 -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 592B2120167 for <quic-issues@ietf.org>; Thu, 18 Jul 2019 06:00:36 -0700 (PDT)
Date: Thu, 18 Jul 2019 06:00:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563454835; bh=IankBzjIyVu7E4fOqdg3ap3uwSfyIteTBpyvuNwOfhQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q8W4r4PoB7pyN+p3GHaQ0zRtn2jD3lU4koK5VKiSHLnikn9IK0gEwXaPMh06uMpiP 3cWhm9p0bAaRgIPJAuCr5zeSPtKs3Ng/26fc9JFY0HGsOYzwISkCkt0WotRS9Eeuoe HN5RuiImvjEkUtKX8QTBbBLsps0zqA06xPb8tlEA=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5OUXONOCX3NR77BJF3HWP7HEVBNHHBWLLVNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2789/512804808@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2789@github.com>
References: <quicwg/base-drafts/issues/2789@github.com>
Subject: Re: [quicwg/base-drafts] Use a higher seed RTT for new paths (#2789)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d306d73c4fc_fcc3fe7af0cd95c3070c2"; 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/N_dpP52tf2gKepG2q_HObV40xlM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 18 Jul 2019 13:00:38 -0000

----==_mimepart_5d306d73c4fc_fcc3fe7af0cd95c3070c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I get this text. The vacation helped me, but I still struggle to work out the full pathology.

So, can we move forward: What happens if that "unmeasured" timeout period expires,  is the timeout re-initialized to increase it to 3 seconds [RFC6298] [RFC8085]. I think this conservative increase is necessary to avoid congestion collapse when many flows retransmit across a shared bottleneck with restricted capacity.


-- 
You are receiving 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/2789#issuecomment-512804808
----==_mimepart_5d306d73c4fc_fcc3fe7af0cd95c3070c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I get this text. The vacation helped me, but I still struggle to work out the full pathology.</p>
<p>So, can we move forward: What happens if that "unmeasured" timeout period expires,  is the timeout re-initialized to increase it to 3 seconds [RFC6298] [RFC8085]. I think this conservative increase is necessary to avoid congestion collapse when many flows retransmit across a shared bottleneck with restricted capacity.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2789?email_source=notifications&amp;email_token=AFTOJK4TVED6PBE43YTLJ3TQABSPHA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IMPSA#issuecomment-512804808">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWNC24D3RU7SZ2GDLQABSPHANCNFSM4HX7UTKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4HMROR72L2ZODJYYLQABSPHA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IMPSA.gif" height="1" width="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/2789?email_source=notifications\u0026email_token=AFTOJK4TVED6PBE43YTLJ3TQABSPHA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IMPSA#issuecomment-512804808",
"url": "https://github.com/quicwg/base-drafts/issues/2789?email_source=notifications\u0026email_token=AFTOJK4TVED6PBE43YTLJ3TQABSPHA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2IMPSA#issuecomment-512804808",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d306d73c4fc_fcc3fe7af0cd95c3070c2--


From nobody Thu Jul 18 06:14:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 59464120270 for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:14:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0PU5U95d3tQM for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:14: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 7AD4E12008F for <quic-issues@ietf.org>; Thu, 18 Jul 2019 06:14:23 -0700 (PDT)
Date: Thu, 18 Jul 2019 06:14:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563455662; bh=Xhv7JUKZXiGz6vdH7xzZ7IYyV0AWDveAnuBZXVzA52M=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ogaGDgAzG6tWm9H7crdVU+77IVPzk534dJ5uOlpx5v3paBxZg+peG0qDJEvtQUEmi qR6qk7PjHkB70MFvl55Chb32XTZ25ujfrk5dmU+WurbMWfTLC7Ld7gC/oryRC4jQky u/wzT3Ngyd4xw0NWqCbHUN+f9Izv65EIjUjaLKxY=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JEHVQUZY7H2FGCOV3HWRS5EVBNHHBYAADQY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2908@github.com>
Subject: [quicwg/base-drafts] Why is Min RTT kept for the connection lifetime? (#2908)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3070ae8d924_614d3f7e840cd9643417eb"; 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/ZjKmHdqmKif7oC6--88U_Icq0fc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 18 Jul 2019 13:14:25 -0000

----==_mimepart_5d3070ae8d924_614d3f7e840cd9643417eb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Section 5.2 of draft-ietf-quic-recovery:=0D
=0D
(1)   the minimum value observed over the lifetime of the connection=0D
=0D
- Why a minimum specified over the entire lifetime? There are paths where=
 the initial RTT may the lower, I am unable to see why that artefact shou=
ld have a long-term impact on the connection. Even if it is just a change=
 in traffic sharing the path=E2=80=99s bottleneck, it still isn=E2=80=99t=
 something that needs to have impact for the lifetime of a connection. Ca=
n=E2=80=99t we decay the value somehow, so that it reflect the recent min=
_RTT.=0D
=0D
draft-ietf-quic-recovery, and here is why a smaller than current min_RTT =
is problematic:=0D
(2)  MUST NOT apply the adjustment if the resulting RTT sample is=0D
      smaller than the min_rtt.  This limits the underestimation that a=0D=

      misreporting peer can cause to the smoothed_rtt.=0D
=0D
- How do I understand this works with paths exhibiting varying path delay=
?  I still can=E2=80=99t fathom what will happen when the lowest RTT in r=
ecent time is much larger than the min_RTT, because the RTT floor has inc=
reased (e.g. because of a change at L2). I see some rather strange behavi=
our in traces of QUIC when there is large long-term jitter. At present, I=
 think this results in making inappropriate adjustments?=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/2908=

----==_mimepart_5d3070ae8d924_614d3f7e840cd9643417eb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>Section 5.2 of draft-ietf-quic-recovery:</p>=0D
<p>(1)   the minimum value observed over the lifetime of the connection</=
p>=0D
<ul>=0D
<li>Why a minimum specified over the entire lifetime? There are paths whe=
re the initial RTT may the lower, I am unable to see why that artefact sh=
ould have a long-term impact on the connection. Even if it is just a chan=
ge in traffic sharing the path=E2=80=99s bottleneck, it still isn=E2=80=99=
t something that needs to have impact for the lifetime of a connection. C=
an=E2=80=99t we decay the value somehow, so that it reflect the recent mi=
n_RTT.</li>=0D
</ul>=0D
<p>draft-ietf-quic-recovery, and here is why a smaller than current min_R=
TT is problematic:<br>=0D
(2)  MUST NOT apply the adjustment if the resulting RTT sample is<br>=0D
smaller than the min_rtt.  This limits the underestimation that a<br>=0D
misreporting peer can cause to the smoothed_rtt.</p>=0D
<ul>=0D
<li>How do I understand this works with paths exhibiting varying path del=
ay?  I still can=E2=80=99t fathom what will happen when the lowest RTT in=
 recent time is much larger than the min_RTT, because the RTT floor has i=
ncreased (e.g. because of a change at L2). I see some rather strange beha=
viour in traces of QUIC when there is large long-term jitter. At present,=
 I think this results in making inappropriate adjustments?</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/issues/2908?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK3CJFAZMPCHHZT5KALQABUC5A5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFUVEXG43VM=
WVGG33NNVSW45C7NFSM4HAAAODA">view it on GitHub</a>, or <a href=3D"https:/=
/github.com/notifications/unsubscribe-auth/AFTOJKY22N7SUXECUQWBO2DQABUC5A=
NCNFSM4IE2TSCQ">mute the thread</a>.<img src=3D"https://github.com/notifi=
cations/beacon/AFTOJK7AZ5AGE7MDFXLJMELQABUC5A5CNFSM4IE2TSC2YY3PNVWWK3TUL5=
2HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAAAODA.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/issues/2908?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK3CJFAZMPCHHZT5KALQABUC5A5CNFSM4=
IE2TSC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAAAODA",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2908?email_source=3D=
notifications\u0026email_token=3DAFTOJK3CJFAZMPCHHZT5KALQABUC5A5CNFSM4IE2=
TSC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAAAODA",=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_5d3070ae8d924_614d3f7e840cd9643417eb--


From nobody Thu Jul 18 06:25:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 06C9C120278 for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:25:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zV42EeZmGeob for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:25: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 6DB2B120276 for <quic-issues@ietf.org>; Thu, 18 Jul 2019 06:25:14 -0700 (PDT)
Date: Thu, 18 Jul 2019 06:25:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563456313; bh=cwDTb8mg6+ffT9IR/Hl6OxBex32cQt23HbKdx6SKVEA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=v4OHkwz/u9/vSjqwZQljX5ILAQdvP7A4Tdql/zdd4aHm+5lAzMuGGbwO+uYo6PKPy Hn9erS0MLVxTMU8gmXy+6jAz8vB2E3CImKqwYJ3WDdafbqCzgVj5igfknSGxee/FEa 758lcFXQgPcooIBCiraVE1P92WP+/K/BGjXILEN4=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6TDBZO672WPQS3N2V3HWS3TEVBNHHBYAAYHM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2909@github.com>
Subject: [quicwg/base-drafts] Path Migration makes unjustified assumptions about a new path. (#2909)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3073395d253_55603fa8f92cd96842261a"; 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/Nzr2sWlR9eGIZQpjz4PzLSgJWMc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 18 Jul 2019 13:25:16 -0000

----==_mimepart_5d3073395d253_55603fa8f92cd96842261a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

This is awkward, because the issue of assumptions about the path appears =
spread over multiple places.=0D
=0D
Section 9.4 of draft-ietf-quic-transport  :=0D
   The capacity available on the new path might not be the same as the=0D=

   old path.  Packets sent on the old path SHOULD NOT contribute to=0D
   congestion control or RTT estimation for the new path.=0D
GF: That would be fine **IF** the new path were a separate CC context, wh=
ich I am not yet clear whether it is, read on:=0D
=E2=80=94=0D
Section 9.4 of draft-ietf-quic-transport  :=0D
   On confirming a peer's ownership of its new address, an endpoint=0D
   SHOULD immediately reset the congestion controller and round-trip=0D
   time estimator for the new path.=0D
GF: Why not MUST? - because I think this is a new path, I think it can on=
ly be should if something can confirm this is the same set of network-dev=
ices and classifiers on the path. I don't know how you would know that, a=
nd I don't like the guess.=0D
=E2=80=94=0D
draft-ietf-quic-transport :=0D
   For instance, a change in the client's port=0D
   number is likely indicative of a rebinding in a middlebox and not a=0D=

   complete change in path. =0D
GF: So. maybe this is the guess, and I don't believe it! In a world of EC=
MP and other methods, this needs to be treated as a potential change of p=
ath.=0D
=E2=80=94=0D
Section 9.4 of draft-ietf-quic-transport:=0D
   While multiple paths might be used during connection migration, a=0D
   single congestion control context and a single loss recovery context=0D=

   (as described in [QUIC-RECOVERY]) may be adequate.  =0D
GF: Well it could if the paths **WERE** known to be identical, but how wo=
uld an endpoint guarantee that? Section 9.2 of QUIC transport seems to su=
ggest the CC is reset for the new path, which I would agree with, but whi=
ch part of QUIC recovery says that?=0D
=E2=80=94=0D
draft-ietf-quic-recovery:=0D
   For instance, an=0D
   endpoint might delay switching to a new congestion control context=0D
   until it is confirmed that an old path is no longer needed (such as=0D=

   the case in Section 9.3.3).=0D
GF:  This seems underspecified and novel to me. I think it may b quite OK=
 to continue using the old path and the old CC, for a while. Same questio=
n: is this implying the two paths share a single CC and is there some rea=
l mechanism to detect that they are really the same set of network device=
s on path?=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/2909=

----==_mimepart_5d3073395d253_55603fa8f92cd96842261a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>This is awkward, because the issue of assumptions about the path appea=
rs spread over multiple places.</p>=0D
<p>Section 9.4 of draft-ietf-quic-transport  :<br>=0D
The capacity available on the new path might not be the same as the<br>=0D=

old path.  Packets sent on the old path SHOULD NOT contribute to<br>=0D
congestion control or RTT estimation for the new path.<br>=0D
GF: That would be fine <strong>IF</strong> the new path were a separate C=
C context, which I am not yet clear whether it is, read on:<br>=0D
=E2=80=94<br>=0D
Section 9.4 of draft-ietf-quic-transport  :<br>=0D
On confirming a peer's ownership of its new address, an endpoint<br>=0D
SHOULD immediately reset the congestion controller and round-trip<br>=0D
time estimator for the new path.<br>=0D
GF: Why not MUST? - because I think this is a new path, I think it can on=
ly be should if something can confirm this is the same set of network-dev=
ices and classifiers on the path. I don't know how you would know that, a=
nd I don't like the guess.<br>=0D
=E2=80=94<br>=0D
draft-ietf-quic-transport :<br>=0D
For instance, a change in the client's port<br>=0D
number is likely indicative of a rebinding in a middlebox and not a<br>=0D=

complete change in path.<br>=0D
GF: So. maybe this is the guess, and I don't believe it! In a world of EC=
MP and other methods, this needs to be treated as a potential change of p=
ath.<br>=0D
=E2=80=94<br>=0D
Section 9.4 of draft-ietf-quic-transport:<br>=0D
While multiple paths might be used during connection migration, a<br>=0D
single congestion control context and a single loss recovery context<br>=0D=

(as described in [QUIC-RECOVERY]) may be adequate.<br>=0D
GF: Well it could if the paths <strong>WERE</strong> known to be identica=
l, but how would an endpoint guarantee that? Section 9.2 of QUIC transpor=
t seems to suggest the CC is reset for the new path, which I would agree =
with, but which part of QUIC recovery says that?<br>=0D
=E2=80=94<br>=0D
draft-ietf-quic-recovery:<br>=0D
For instance, an<br>=0D
endpoint might delay switching to a new congestion control context<br>=0D=

until it is confirmed that an old path is no longer needed (such as<br>=0D=

the case in Section 9.3.3).<br>=0D
GF:  This seems underspecified and novel to me. I think it may b quite OK=
 to continue using the old path and the old CC, for a while. Same questio=
n: is this implying the two paths share a single CC and is there some rea=
l mechanism to detect that they are really the same set of network device=
s on path?</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/2909?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK2EVL4L7WH4IF73XO3QABVLTA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFUVEXG43VM=
WVGG33NNVSW45C7NFSM4HAADA5Q">view it on GitHub</a>, or <a href=3D"https:/=
/github.com/notifications/unsubscribe-auth/AFTOJK7XNJLVRLYKULB2T5TQABVLTA=
NCNFSM4IE2X3AQ">mute the thread</a>.<img src=3D"https://github.com/notifi=
cations/beacon/AFTOJK5VVNUJPLAAHYWUCS3QABVLTA5CNFSM4IE2X3A2YY3PNVWWK3TUL5=
2HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAADA5Q.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/issues/2909?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK2EVL4L7WH4IF73XO3QABVLTA5CNFSM4=
IE2X3A2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAADA5Q",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2909?email_source=3D=
notifications\u0026email_token=3DAFTOJK2EVL4L7WH4IF73XO3QABVLTA5CNFSM4IE2=
X3A2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAADA5Q",=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_5d3073395d253_55603fa8f92cd96842261a--


From nobody Thu Jul 18 06:32:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2C4771200C7 for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:32:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hoACO3RSc8uN for <quic-issues@ietfa.amsl.com>; Thu, 18 Jul 2019 06:32: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 CD1521200A3 for <quic-issues@ietf.org>; Thu, 18 Jul 2019 06:32:39 -0700 (PDT)
Date: Thu, 18 Jul 2019 06:32:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563456758; bh=/LWwWwfG9Q3KaDsReJaCAWEPVmq8ntXiFigIwngSLZ8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=jcX3uEzPeBM3j5HqLNTTO6RrAtwgt6AomLChYS05ftetE/S5+BdKK9VsFxK3anfZz l+lZn9qhhVED7Qjgtq6SOjOhjmsjTfmJ5MWWyiOReMMB8NEmIEs7w/BiVBTbPu85Xn KWkUuX+wtCe99MklIvWZICHADGL1ixAaoZritscs=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6W4VNUTSZVGXEA3P53HWTXNEVBNHHBYABG4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2910@github.com>
Subject: [quicwg/base-drafts] PATH_CHALLENGE timer period (#2910)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3074f6ab9d0_1fb33fb2028cd964556141"; 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/UJo5x15SnPcKbVOJgQJX1an03-g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 18 Jul 2019 13:32:41 -0000

----==_mimepart_5d3074f6ab9d0_1fb33fb2028cd964556141
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Section 9.4 of draft-ietf-quic-transport:
   An endpoint might set a
   separate timer when a PATH_CHALLENGE is sent, which is cancelled when
   the corresponding PATH_RESPONSE is received.  If the timer fires
   before the PATH_RESPONSE is received, the endpoint might send a new
   PATH_CHALLENGE, and restart the timer for a longer period of time.

GF: Possibly so, but what value has this timeout? 
- To avoid potential congestion collapse, I think this needs to be conservative enough to deal with paths with significant RTT variance, or where there is a change of base RTT. 1 sec, then 3 seconds, and then exponentially backed-off would be expected for TCP SYNs, and I suggest could be appropriate.


-- 
You are receiving 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/2910
----==_mimepart_5d3074f6ab9d0_1fb33fb2028cd964556141
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Section 9.4 of draft-ietf-quic-transport:<br>
An endpoint might set a<br>
separate timer when a PATH_CHALLENGE is sent, which is cancelled when<br>
the corresponding PATH_RESPONSE is received.  If the timer fires<br>
before the PATH_RESPONSE is received, the endpoint might send a new<br>
PATH_CHALLENGE, and restart the timer for a longer period of time.</p>
<p>GF: Possibly so, but what value has this timeout?</p>
<ul>
<li>To avoid potential congestion collapse, I think this needs to be conservative enough to deal with paths with significant RTT variance, or where there is a change of base RTT. 1 sec, then 3 seconds, and then exponentially backed-off would be expected for TCP SYNs, and I suggest could be appropriate.</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/2910?email_source=notifications&amp;email_token=AFTOJK4H45WBFI6YTR7XXITQABWHNA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAAE3SA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY35GA2G45X4OP572DQABWHNANCNFSM4IE24RKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4P7SZCF2WIEUABKJTQABWHNA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAAE3SA.gif" height="1" width="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/2910?email_source=notifications\u0026email_token=AFTOJK4H45WBFI6YTR7XXITQABWHNA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAAE3SA",
"url": "https://github.com/quicwg/base-drafts/issues/2910?email_source=notifications\u0026email_token=AFTOJK4H45WBFI6YTR7XXITQABWHNA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAAE3SA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3074f6ab9d0_1fb33fb2028cd964556141--


From nobody Fri Jul 19 04:12:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 349DB120154 for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 04:12:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NnPSKp5AIrvk for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 04:11: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 90C2212001E for <quic-issues@ietf.org>; Fri, 19 Jul 2019 04:11:59 -0700 (PDT)
Date: Fri, 19 Jul 2019 04:11:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563534718; bh=UyIlRLnjzShcP+2gvaFn7+hqbssV3ZH5gffkKLKD0/k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XEJODw4bqSSKWnu9hiMi6cuLBN9T7+P4I6kKr56Xi7mk520aESJaAGr9iLwOqL/Rs 9dto+g6m98pCiIhyOSbfWFdZl1/dd3qyacmGLhRiShBk2UebWGbPy0RwFHTz9B3jhk ji48HarxOS9ilrD502IrwSTN1/Vm1S6I9NCjn2XQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWPR44QGM7UOOLRCV3H3L75EVBNHHBWLLVNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2789/513190762@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2789@github.com>
References: <quicwg/base-drafts/issues/2789@github.com>
Subject: Re: [quicwg/base-drafts] Use a higher seed RTT for new paths (#2789)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d31a57e98847_26713fa3f02cd96c20826c"; 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/FKfufzjwXbcLBs2y7upNpzt1mSg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 11:12:02 -0000

----==_mimepart_5d31a57e98847_26713fa3f02cd96c20826c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I believe the relevant text is(?):
" (5.7) If the timer expires awaiting the ACK of a SYN segment and the
         TCP implementation is using an RTO less than 3 seconds, the RTO
         MUST be re-initialized to 3 seconds when data transmission
         begins (i.e., after the three-way handshake completes)."

I believe that's saying the RTO should be set to 3 seconds if any syn timers expired?  Do implementations(ie: Linux, Windows, etc) do that?  If so, that means a single packet loss in the handshake causes the RTO to increase to 3 seconds, but a subsequent data packet loss would not have that effect?

@gorryfair  If you're in Montreal Saturday or Sunday at the Hackathon, maybe we can talk about this more and figure out what to do 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/2789#issuecomment-513190762
----==_mimepart_5d31a57e98847_26713fa3f02cd96c20826c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I believe the relevant text is(?):<br>
" (5.7) If the timer expires awaiting the ACK of a SYN segment and the<br>
TCP implementation is using an RTO less than 3 seconds, the RTO<br>
MUST be re-initialized to 3 seconds when data transmission<br>
begins (i.e., after the three-way handshake completes)."</p>
<p>I believe that's saying the RTO should be set to 3 seconds if any syn timers expired?  Do implementations(ie: Linux, Windows, etc) do that?  If so, that means a single packet loss in the handshake causes the RTO to increase to 3 seconds, but a subsequent data packet loss would not have that effect?</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=7386514" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gorryfair">@gorryfair</a>  If you're in Montreal Saturday or Sunday at the Hackathon, maybe we can talk about this more and figure out what to do 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/2789?email_source=notifications&amp;email_token=AFTOJK35NKXBQM4CDGNOTWLQAGOP5A5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LKW2Q#issuecomment-513190762">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63N34SRU34WMFUZATQAGOP5ANCNFSM4HX7UTKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EVQH63HK2Q2Y5TODQAGOP5A5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LKW2Q.gif" height="1" width="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/2789?email_source=notifications\u0026email_token=AFTOJK35NKXBQM4CDGNOTWLQAGOP5A5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LKW2Q#issuecomment-513190762",
"url": "https://github.com/quicwg/base-drafts/issues/2789?email_source=notifications\u0026email_token=AFTOJK35NKXBQM4CDGNOTWLQAGOP5A5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LKW2Q#issuecomment-513190762",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d31a57e98847_26713fa3f02cd96c20826c--


From nobody Fri Jul 19 05:59:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CECE4120183 for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 05:59:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ak3t_gxr7ASi for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 05:59: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 ED563120052 for <quic-issues@ietf.org>; Fri, 19 Jul 2019 05:59:15 -0700 (PDT)
Date: Fri, 19 Jul 2019 05:59:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563541155; bh=BzNIthP56yOsJBFN75BW2l18AacJLwg986XQCwgdO0A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QmWqWD/e0iB9UCl5jIzmOck6Dl5wgtNAjQPz7pvWQJ1jctzm9Dq2v5MDRGjSGsPNt iYiad+5sAiwJ6N5X3z+r0DGcYDvWNcHEdhMx9KnbfBBpEr07novbMHDKuxOfd/7AVG +QT+6eu1q/SGBveJowSePT5EAYw2cBfSLnvLuaYo=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK42Z7VOFGVZZUU7EU53H3YSHEVBNHHBWLLVNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2789/513219110@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2789@github.com>
References: <quicwg/base-drafts/issues/2789@github.com>
Subject: Re: [quicwg/base-drafts] Use a higher seed RTT for new paths (#2789)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d31bea3196e_529b3fa050acd96c1162f6"; 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/HqN_-6Uh2oev9-0Z89EwmDFIQCc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 12:59:18 -0000

----==_mimepart_5d31bea3196e_529b3fa050acd96c1162f6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Yes, let=E2=80=99s talk Montreal.=0D
=0D
I think your comments hold true - and this is about backing off an initia=
l exchange, not about data when there has already been a handshake. In a =
@normal@ case, you should not see this happen. Talk to you sat (or if not=
, on sun).=0D
=0D
Gorry=0D
=0D
> On 19 Jul 2019, at 12:11, ianswett <notifications@github.com> wrote:=0D=

> =0D
> I believe the relevant text is(?):=0D
> " (5.7) If the timer expires awaiting the ACK of a SYN segment and the=0D=

> TCP implementation is using an RTO less than 3 seconds, the RTO=0D
> MUST be re-initialized to 3 seconds when data transmission=0D
> begins (i.e., after the three-way handshake completes)."=0D
> =0D
> I believe that's saying the RTO should be set to 3 seconds if any syn t=
imers expired? Do implementations(ie: Linux, Windows, etc) do that? If so=
, that means a single packet loss in the handshake causes the RTO to incr=
ease to 3 seconds, but a subsequent data packet loss would not have that =
effect?=0D
> =0D
> @gorryfair If you're in Montreal Saturday or Sunday at the Hackathon, m=
aybe we can talk about this more and figure out what to do here?=0D
> =0D
> =E2=80=94=0D
> You are receiving this because you were mentioned.=0D
> Reply to this email directly, view it on GitHub, or mute the thread.=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/2789#issuecomment-513219110=

----==_mimepart_5d31bea3196e_529b3fa050acd96c1162f6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Yes, let=E2=80=99s talk Montreal.<br>=0D
<br>=0D
I think your comments hold true - and this is about backing off an initia=
l exchange, not about data when there has already been a handshake. In a =
@normal@ case, you should not see this happen. Talk to you sat (or if not=
, on sun).<br>=0D
<br>=0D
Gorry<br>=0D
<br>=0D
&gt; On 19 Jul 2019, at 12:11, ianswett &lt;notifications@github.com&gt; =
wrote:<br>=0D
&gt; <br>=0D
&gt; I believe the relevant text is(?):<br>=0D
&gt; &quot; (5.7) If the timer expires awaiting the ACK of a SYN segment =
and the<br>=0D
&gt; TCP implementation is using an RTO less than 3 seconds, the RTO<br>=0D=

&gt; MUST be re-initialized to 3 seconds when data transmission<br>=0D
&gt; begins (i.e., after the three-way handshake completes).&quot;<br>=0D=

&gt; <br>=0D
&gt; I believe that&#39;s saying the RTO should be set to 3 seconds if an=
y syn timers expired? Do implementations(ie: Linux, Windows, etc) do that=
? If so, that means a single packet loss in the handshake causes the RTO =
to increase to 3 seconds, but a subsequent data packet loss would not hav=
e that effect?<br>=0D
&gt; <br>=0D
&gt; @gorryfair If you&#39;re in Montreal Saturday or Sunday at the Hacka=
thon, maybe we can talk about this more and figure out what to do here?<b=
r>=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, or mute the thread.=
<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/2789?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK67Q3QL36WCEHR6PK3QAG3CHA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LRUJQ#issuecomment-513219110">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK2F5TY4JCWSSJRAMITQAG3CHANCNFSM4HX7UTKA">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK5BCOSMZGIYV44R2WDQ=
AG3CHA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2LRUJQ.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/issues/2789?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK67Q3QL36WCEHR6PK3QAG3CHA5CNFSM4=
HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LRUJ=
Q#issuecomment-513219110",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2789?email_source=3D=
notifications\u0026email_token=3DAFTOJK67Q3QL36WCEHR6PK3QAG3CHA5CNFSM4HX7=
UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LRUJQ#i=
ssuecomment-513219110",=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_5d31bea3196e_529b3fa050acd96c1162f6--


From nobody Fri Jul 19 06:26:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 105EE120198 for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:26:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id c56nRckYo5uV for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:26: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 A293C12014B for <quic-issues@ietf.org>; Fri, 19 Jul 2019 06:26:54 -0700 (PDT)
Date: Fri, 19 Jul 2019 06:26:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563542813; bh=UVA48wck6Yc8sFJohKYhdF0HtO3CZS1HQgcU7vUvxL4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LAvo8uaT0uiSgLFZ7aVx4yy4kRpHi93V1qBoqlVXBUgNv3YHPZ9471GovfHRHhJ0d RVp+wKi0nHRn1mIVqSaVO+UPg5G0Kv9GkCltxJTJ3eMQu5h1bBkS1iEiB7xfb62eGV c+6LLqOnmiQeMcoFtvZ/22QUArcAVpf45EBBZeWQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NUK4THHXTDZJV5GN3H33Z3EVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/c513228034@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d31c51daa66a_4ab13fd724ccd96412682e"; 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/pAgtDnpYZL5qILgyZ8MPpz4mnV8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 13:26:56 -0000

----==_mimepart_5d31c51daa66a_4ab13fd724ccd96412682e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Pick one.  Be 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/pull/2907#issuecomment-513228034
----==_mimepart_5d31c51daa66a_4ab13fd724ccd96412682e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Pick one.  Be 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/pull/2907?email_source=notifications&amp;email_token=AFTOJK4NSPFQTAHAP5PQP63QAG6J3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LT2AQ#issuecomment-513228034">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6PAGAB2L7KFZU77YLQAG6J3ANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XZWW6ZFZFY3GDMZLQAG6J3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LT2AQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4NSPFQTAHAP5PQP63QAG6J3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LT2AQ#issuecomment-513228034",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4NSPFQTAHAP5PQP63QAG6J3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LT2AQ#issuecomment-513228034",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d31c51daa66a_4ab13fd724ccd96412682e--


From nobody Fri Jul 19 06:31:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2D90212019B for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:31:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id S8M0P9lneuWl for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:31: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 C07CC120193 for <quic-issues@ietf.org>; Fri, 19 Jul 2019 06:31:27 -0700 (PDT)
Date: Fri, 19 Jul 2019 06:31:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563543086; bh=ZTlZFvXB1NVmJ1VpIFqCm6nHHoT6BuY3rbJlgKQiEe4=; h=Date:From:To:Subject:From; b=p+LK7CzDZ/I0t5w+TrRWlopiDxK/T/7yTUmWRn5vusDJhVqdR8gdnBtTgNKw/4tTB LLAx7DLh3N4p+U1sIwIBiu4ZmczmrykFpv+oFgSIzYsl5iG/uNc+J3WxC9TA8a+hpT XsBBPmDRctyDDrTGDZ7F8hGxHp+xqpWZYLQdmhmA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/ad064c-d1d9bc@github.com>
Subject: [quicwg/base-drafts] d1d9bc: Consistent ifs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/t5AwqOsdXxNgUL81CAev3FE9k4s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 13:31:29 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: d1d9bc9d5bf77b460a14cefc94938753996c010d
      https://github.com/quicwg/base-drafts/commit/d1d9bc9d5bf77b460a14cefc94938753996c010d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-19 (Fri, 19 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Consistent ifs



From nobody Fri Jul 19 06:31:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C11FA12004F for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:31:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d8V7ehQeuDsn for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:31:36 -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 AECC012001E for <quic-issues@ietf.org>; Fri, 19 Jul 2019 06:31:36 -0700 (PDT)
Date: Fri, 19 Jul 2019 06:31:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563543096; bh=kritqbbvoTSm6m5TMN4ekdoybVnXC7B4SNyVzKGxVGM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nDlsrlvsNFaTKFb6xIs3lKf3i+2yo6+fTR0qRwrduHDIAg5OsYYM2tgy10J6NSFMM jtCZYxJoQSmvK2KoeJ56sXm3c7wvh++pLIFdZe5spVK/Q23dDOq4T3aTM1aBWLVylp rwHBJoQ6XZryejIc6GMrLV0TLaTkZsh8EHBKjrMo=
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/2907/push/3835002196@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d31c637ef191_43193f847accd95c419116"; 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/Nd1a8bDQ7yCUW1H1M80-tmR9Wtw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 13:31:38 -0000

----==_mimepart_5d31c637ef191_43193f847accd95c419116
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

d1d9bc9d5bf77b460a14cefc94938753996c010d  Consistent ifs


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907/files/ad064cca079cd1f40f04253bffd470fd7f69eebe..d1d9bc9d5bf77b460a14cefc94938753996c010d

----==_mimepart_5d31c637ef191_43193f847accd95c419116
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/d1d9bc9d5bf77b460a14cefc94938753996c010d">d1d9bc9</a>  Consistent ifs</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/2907/files/ad064cca079cd1f40f04253bffd470fd7f69eebe..d1d9bc9d5bf77b460a14cefc94938753996c010d?email_source=notifications&amp;email_token=AFTOJK4ZXUXFIRC4WAO2UJDQAG63PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTKMBQGIYTSNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY6LN5RWTDYORZ7TE3QAG63PANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6R32M4G3LPJWO2D3QAG63PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTKMBQGIYTSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907/files/ad064cca079cd1f40f04253bffd470fd7f69eebe..d1d9bc9d5bf77b460a14cefc94938753996c010d?email_source=notifications\u0026email_token=AFTOJK4ZXUXFIRC4WAO2UJDQAG63PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTKMBQGIYTSNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/ad064cca079cd1f40f04253bffd470fd7f69eebe..d1d9bc9d5bf77b460a14cefc94938753996c010d?email_source=notifications\u0026email_token=AFTOJK4ZXUXFIRC4WAO2UJDQAG63PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTKMBQGIYTSNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d31c637ef191_43193f847accd95c419116--


From nobody Fri Jul 19 06:31:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3538D12004F for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:31:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xOFHjd3r3HTh for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:31:51 -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 BE5F612001E for <quic-issues@ietf.org>; Fri, 19 Jul 2019 06:31:51 -0700 (PDT)
Date: Fri, 19 Jul 2019 06:31:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563543111; bh=Hqcw69SHMamxr5kIU6H9wLoOmhm6sWAE+/sMvM1GrEY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TE/Tak9sPKOkdicN554Y67cstKn0m9tovOF3eXbV1rpxfnw0MdEmNk6xm4S05aRNt Ko/Zd+RpgR1J6ZVWUadE50B8cna8h9mX4+dpRDA5hu21CH2asMt7C6+rCbW4zJ8tKl +rVuLeCDE1U5uHS6SsLuCOPI9lMR8FKIQrPu8v4E=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XZVSLXREWVAF4DWF3H34MPEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/c513229642@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d31c6476a52_1aac3fd1d12cd96c257565"; 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/IA4hJXAk2gEuOtuYWLbYhTe_pWM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 13:31:53 -0000

----==_mimepart_5d31c6476a52_1aac3fd1d12cd96c257565
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

SG, done.  I also fixed some missing ':'

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907#issuecomment-513229642
----==_mimepart_5d31c6476a52_1aac3fd1d12cd96c257565
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>SG, done.  I also fixed some missing ':'</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK2GFDDVFGTS5HRYFMDQAG64PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LUGSQ#issuecomment-513229642">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYB4RM2UICSQZ46KNLQAG64PANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2SBWK3ODIGQ7C2DLTQAG64PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LUGSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2GFDDVFGTS5HRYFMDQAG64PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LUGSQ#issuecomment-513229642",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2GFDDVFGTS5HRYFMDQAG64PA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LUGSQ#issuecomment-513229642",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d31c6476a52_1aac3fd1d12cd96c257565--


From nobody Fri Jul 19 06:32:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DB5BF12004F for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:32:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yw1DdPDOhoSU for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:32: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 274D012001E for <quic-issues@ietf.org>; Fri, 19 Jul 2019 06:32:45 -0700 (PDT)
Date: Fri, 19 Jul 2019 06:32:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563543164; bh=02bLmOE433/06Ew7Wy4wVFDoTGogr9Gdxeytgu3UOEM=; h=Date:From:To:Subject:From; b=QQpNfMEHrUj4vJK1BwiDI2w6ZcbXqMj0BT0Z3Ll924bG21uuQ9/DVvhVjie5jwpfz L0JSFkKYSqe9x81bgVWSN/vPUE33foKXzgTCdFztrZ3ACQ5SWMfH1UD2w3HpGkjUpc FMPXDz7t1dOsxlhzJlNInD7hj9A6pd2+3gCoAeYY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6f673a-69ab8d@github.com>
Subject: [quicwg/base-drafts] 69ab8d: Script updating gh-pages from d1d9bc9d. [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/2bAjnbYTAJZHJuOi4aXP7iFQeHA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 13:32:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 69ab8d3425c5bc04b7bed2c78de89ff5a370a21f
      https://github.com/quicwg/base-drafts/commit/69ab8d3425c5bc04b7bed2c78de89ff5a370a21f
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-19 (Fri, 19 Jul 2019)

  Changed paths:
    R http/break_up_h2_considerations/draft-ietf-quic-http.html
    R http/break_up_h2_considerations/draft-ietf-quic-http.txt
    R http/break_up_h2_considerations/draft-ietf-quic-invariants.html
    R http/break_up_h2_considerations/draft-ietf-quic-invariants.txt
    R http/break_up_h2_considerations/draft-ietf-quic-qpack.html
    R http/break_up_h2_considerations/draft-ietf-quic-qpack.txt
    R http/break_up_h2_considerations/draft-ietf-quic-recovery.html
    R http/break_up_h2_considerations/draft-ietf-quic-recovery.txt
    R http/break_up_h2_considerations/draft-ietf-quic-tls.html
    R http/break_up_h2_considerations/draft-ietf-quic-tls.txt
    R http/break_up_h2_considerations/draft-ietf-quic-transport.html
    R http/break_up_h2_considerations/draft-ietf-quic-transport.txt
    R http/break_up_h2_considerations/index.html
    R http/criticaler-streams/draft-ietf-quic-http.html
    R http/criticaler-streams/draft-ietf-quic-http.txt
    R http/criticaler-streams/draft-ietf-quic-invariants.html
    R http/criticaler-streams/draft-ietf-quic-invariants.txt
    R http/criticaler-streams/draft-ietf-quic-qpack.html
    R http/criticaler-streams/draft-ietf-quic-qpack.txt
    R http/criticaler-streams/draft-ietf-quic-recovery.html
    R http/criticaler-streams/draft-ietf-quic-recovery.txt
    R http/criticaler-streams/draft-ietf-quic-tls.html
    R http/criticaler-streams/draft-ietf-quic-tls.txt
    R http/criticaler-streams/draft-ietf-quic-transport.html
    R http/criticaler-streams/draft-ietf-quic-transport.txt
    R http/criticaler-streams/index.html
    R http/goaway-limits/draft-ietf-quic-http.html
    R http/goaway-limits/draft-ietf-quic-http.txt
    R http/goaway-limits/draft-ietf-quic-invariants.html
    R http/goaway-limits/draft-ietf-quic-invariants.txt
    R http/goaway-limits/draft-ietf-quic-qpack.html
    R http/goaway-limits/draft-ietf-quic-qpack.txt
    R http/goaway-limits/draft-ietf-quic-recovery.html
    R http/goaway-limits/draft-ietf-quic-recovery.txt
    R http/goaway-limits/draft-ietf-quic-spin-exp.html
    R http/goaway-limits/draft-ietf-quic-spin-exp.txt
    R http/goaway-limits/draft-ietf-quic-tls.html
    R http/goaway-limits/draft-ietf-quic-tls.txt
    R http/goaway-limits/draft-ietf-quic-transport.html
    R http/goaway-limits/draft-ietf-quic-transport.txt
    R http/goaway-limits/index.html
    R http/goaway_error/draft-ietf-quic-http.html
    R http/goaway_error/draft-ietf-quic-http.txt
    R http/goaway_error/draft-ietf-quic-invariants.html
    R http/goaway_error/draft-ietf-quic-invariants.txt
    R http/goaway_error/draft-ietf-quic-qpack.html
    R http/goaway_error/draft-ietf-quic-qpack.txt
    R http/goaway_error/draft-ietf-quic-recovery.html
    R http/goaway_error/draft-ietf-quic-recovery.txt
    R http/goaway_error/draft-ietf-quic-tls.html
    R http/goaway_error/draft-ietf-quic-tls.txt
    R http/goaway_error/draft-ietf-quic-transport.html
    R http/goaway_error/draft-ietf-quic-transport.txt
    R http/goaway_error/index.html
    R http/invalid_duplicate/draft-ietf-quic-http.html
    R http/invalid_duplicate/draft-ietf-quic-http.txt
    R http/invalid_duplicate/draft-ietf-quic-invariants.html
    R http/invalid_duplicate/draft-ietf-quic-invariants.txt
    R http/invalid_duplicate/draft-ietf-quic-qpack.html
    R http/invalid_duplicate/draft-ietf-quic-qpack.txt
    R http/invalid_duplicate/draft-ietf-quic-recovery.html
    R http/invalid_duplicate/draft-ietf-quic-recovery.txt
    R http/invalid_duplicate/draft-ietf-quic-tls.html
    R http/invalid_duplicate/draft-ietf-quic-tls.txt
    R http/invalid_duplicate/draft-ietf-quic-transport.html
    R http/invalid_duplicate/draft-ietf-quic-transport.txt
    R http/invalid_duplicate/index.html
    R http/max-header-list-size/draft-ietf-quic-http.html
    R http/max-header-list-size/draft-ietf-quic-http.txt
    R http/max-header-list-size/draft-ietf-quic-invariants.html
    R http/max-header-list-size/draft-ietf-quic-invariants.txt
    R http/max-header-list-size/draft-ietf-quic-qpack.html
    R http/max-header-list-size/draft-ietf-quic-qpack.txt
    R http/max-header-list-size/draft-ietf-quic-recovery.html
    R http/max-header-list-size/draft-ietf-quic-recovery.txt
    R http/max-header-list-size/draft-ietf-quic-tls.html
    R http/max-header-list-size/draft-ietf-quic-tls.txt
    R http/max-header-list-size/draft-ietf-quic-transport.html
    R http/max-header-list-size/draft-ietf-quic-transport.txt
    R http/max-header-list-size/index.html
    R http/more_h2/draft-ietf-quic-http.html
    R http/more_h2/draft-ietf-quic-http.txt
    R http/more_h2/draft-ietf-quic-invariants.html
    R http/more_h2/draft-ietf-quic-invariants.txt
    R http/more_h2/draft-ietf-quic-qpack.html
    R http/more_h2/draft-ietf-quic-qpack.txt
    R http/more_h2/draft-ietf-quic-recovery.html
    R http/more_h2/draft-ietf-quic-recovery.txt
    R http/more_h2/draft-ietf-quic-tls.html
    R http/more_h2/draft-ietf-quic-tls.txt
    R http/more_h2/draft-ietf-quic-transport.html
    R http/more_h2/draft-ietf-quic-transport.txt
    R http/more_h2/index.html
    R http/no-server-bidi/draft-ietf-quic-http.html
    R http/no-server-bidi/draft-ietf-quic-http.txt
    R http/no-server-bidi/draft-ietf-quic-invariants.html
    R http/no-server-bidi/draft-ietf-quic-invariants.txt
    R http/no-server-bidi/draft-ietf-quic-qpack.html
    R http/no-server-bidi/draft-ietf-quic-qpack.txt
    R http/no-server-bidi/draft-ietf-quic-recovery.html
    R http/no-server-bidi/draft-ietf-quic-recovery.txt
    R http/no-server-bidi/draft-ietf-quic-tls.html
    R http/no-server-bidi/draft-ietf-quic-tls.txt
    R http/no-server-bidi/draft-ietf-quic-transport.html
    R http/no-server-bidi/draft-ietf-quic-transport.txt
    R http/no-server-bidi/index.html
    R http/no_push_on_connect/draft-ietf-quic-http.html
    R http/no_push_on_connect/draft-ietf-quic-http.txt
    R http/no_push_on_connect/draft-ietf-quic-invariants.html
    R http/no_push_on_connect/draft-ietf-quic-invariants.txt
    R http/no_push_on_connect/draft-ietf-quic-qpack.html
    R http/no_push_on_connect/draft-ietf-quic-qpack.txt
    R http/no_push_on_connect/draft-ietf-quic-recovery.html
    R http/no_push_on_connect/draft-ietf-quic-recovery.txt
    R http/no_push_on_connect/draft-ietf-quic-tls.html
    R http/no_push_on_connect/draft-ietf-quic-tls.txt
    R http/no_push_on_connect/draft-ietf-quic-transport.html
    R http/no_push_on_connect/draft-ietf-quic-transport.txt
    R http/no_push_on_connect/index.html
    R http/qpack-in-message/draft-ietf-quic-http.html
    R http/qpack-in-message/draft-ietf-quic-http.txt
    R http/qpack-in-message/draft-ietf-quic-invariants.html
    R http/qpack-in-message/draft-ietf-quic-invariants.txt
    R http/qpack-in-message/draft-ietf-quic-qpack.html
    R http/qpack-in-message/draft-ietf-quic-qpack.txt
    R http/qpack-in-message/draft-ietf-quic-recovery.html
    R http/qpack-in-message/draft-ietf-quic-recovery.txt
    R http/qpack-in-message/draft-ietf-quic-tls.html
    R http/qpack-in-message/draft-ietf-quic-tls.txt
    R http/qpack-in-message/draft-ietf-quic-transport.html
    R http/qpack-in-message/draft-ietf-quic-transport.txt
    R http/qpack-in-message/index.html
    R http/reorder_sections/draft-ietf-quic-http.html
    R http/reorder_sections/draft-ietf-quic-http.txt
    R http/reorder_sections/draft-ietf-quic-invariants.html
    R http/reorder_sections/draft-ietf-quic-invariants.txt
    R http/reorder_sections/draft-ietf-quic-qpack.html
    R http/reorder_sections/draft-ietf-quic-qpack.txt
    R http/reorder_sections/draft-ietf-quic-recovery.html
    R http/reorder_sections/draft-ietf-quic-recovery.txt
    R http/reorder_sections/draft-ietf-quic-tls.html
    R http/reorder_sections/draft-ietf-quic-tls.txt
    R http/reorder_sections/draft-ietf-quic-transport.html
    R http/reorder_sections/draft-ietf-quic-transport.txt
    R http/reorder_sections/index.html
    R http/restate-malformed/draft-ietf-quic-http.html
    R http/restate-malformed/draft-ietf-quic-http.txt
    R http/restate-malformed/draft-ietf-quic-invariants.html
    R http/restate-malformed/draft-ietf-quic-invariants.txt
    R http/restate-malformed/draft-ietf-quic-qpack.html
    R http/restate-malformed/draft-ietf-quic-qpack.txt
    R http/restate-malformed/draft-ietf-quic-recovery.html
    R http/restate-malformed/draft-ietf-quic-recovery.txt
    R http/restate-malformed/draft-ietf-quic-tls.html
    R http/restate-malformed/draft-ietf-quic-tls.txt
    R http/restate-malformed/draft-ietf-quic-transport.html
    R http/restate-malformed/draft-ietf-quic-transport.txt
    R http/restate-malformed/index.html
    R http/rst_if_possible/draft-ietf-quic-http.html
    R http/rst_if_possible/draft-ietf-quic-http.txt
    R http/rst_if_possible/draft-ietf-quic-invariants.html
    R http/rst_if_possible/draft-ietf-quic-invariants.txt
    R http/rst_if_possible/draft-ietf-quic-qpack.html
    R http/rst_if_possible/draft-ietf-quic-qpack.txt
    R http/rst_if_possible/draft-ietf-quic-recovery.html
    R http/rst_if_possible/draft-ietf-quic-recovery.txt
    R http/rst_if_possible/draft-ietf-quic-tls.html
    R http/rst_if_possible/draft-ietf-quic-tls.txt
    R http/rst_if_possible/draft-ietf-quic-transport.html
    R http/rst_if_possible/draft-ietf-quic-transport.txt
    R http/rst_if_possible/index.html
    R http/stupid_but_permitted/draft-ietf-quic-http.html
    R http/stupid_but_permitted/draft-ietf-quic-http.txt
    R http/stupid_but_permitted/draft-ietf-quic-invariants.html
    R http/stupid_but_permitted/draft-ietf-quic-invariants.txt
    R http/stupid_but_permitted/draft-ietf-quic-qpack.html
    R http/stupid_but_permitted/draft-ietf-quic-qpack.txt
    R http/stupid_but_permitted/draft-ietf-quic-recovery.html
    R http/stupid_but_permitted/draft-ietf-quic-recovery.txt
    R http/stupid_but_permitted/draft-ietf-quic-tls.html
    R http/stupid_but_permitted/draft-ietf-quic-tls.txt
    R http/stupid_but_permitted/draft-ietf-quic-transport.html
    R http/stupid_but_permitted/draft-ietf-quic-transport.txt
    R http/stupid_but_permitted/index.html
    R http/unknown_placeholder/draft-ietf-quic-http.html
    R http/unknown_placeholder/draft-ietf-quic-http.txt
    R http/unknown_placeholder/draft-ietf-quic-invariants.html
    R http/unknown_placeholder/draft-ietf-quic-invariants.txt
    R http/unknown_placeholder/draft-ietf-quic-qpack.html
    R http/unknown_placeholder/draft-ietf-quic-qpack.txt
    R http/unknown_placeholder/draft-ietf-quic-recovery.html
    R http/unknown_placeholder/draft-ietf-quic-recovery.txt
    R http/unknown_placeholder/draft-ietf-quic-tls.html
    R http/unknown_placeholder/draft-ietf-quic-tls.txt
    R http/unknown_placeholder/draft-ietf-quic-transport.html
    R http/unknown_placeholder/draft-ietf-quic-transport.txt
    R http/unknown_placeholder/index.html
    R http/why-default/draft-ietf-quic-http.html
    R http/why-default/draft-ietf-quic-http.txt
    R http/why-default/draft-ietf-quic-invariants.html
    R http/why-default/draft-ietf-quic-invariants.txt
    R http/why-default/draft-ietf-quic-qpack.html
    R http/why-default/draft-ietf-quic-qpack.txt
    R http/why-default/draft-ietf-quic-recovery.html
    R http/why-default/draft-ietf-quic-recovery.txt
    R http/why-default/draft-ietf-quic-tls.html
    R http/why-default/draft-ietf-quic-tls.txt
    R http/why-default/draft-ietf-quic-transport.html
    R http/why-default/draft-ietf-quic-transport.txt
    R http/why-default/index.html
    M ianswett-fix-loss-detection/draft-ietf-quic-http.html
    M ianswett-fix-loss-detection/draft-ietf-quic-http.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-invariants.html
    M ianswett-fix-loss-detection/draft-ietf-quic-invariants.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-qpack.html
    M ianswett-fix-loss-detection/draft-ietf-quic-qpack.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.html
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-tls.html
    M ianswett-fix-loss-detection/draft-ietf-quic-tls.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.html
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.txt
    R ianswett-move-retry/draft-ietf-quic-http.html
    R ianswett-move-retry/draft-ietf-quic-http.txt
    R ianswett-move-retry/draft-ietf-quic-invariants.html
    R ianswett-move-retry/draft-ietf-quic-invariants.txt
    R ianswett-move-retry/draft-ietf-quic-qpack.html
    R ianswett-move-retry/draft-ietf-quic-qpack.txt
    R ianswett-move-retry/draft-ietf-quic-recovery.html
    R ianswett-move-retry/draft-ietf-quic-recovery.txt
    R ianswett-move-retry/draft-ietf-quic-tls.html
    R ianswett-move-retry/draft-ietf-quic-tls.txt
    R ianswett-move-retry/draft-ietf-quic-transport.html
    R ianswett-move-retry/draft-ietf-quic-transport.txt
    R ianswett-move-retry/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d1d9bc9d. [ci skip]



From nobody Fri Jul 19 06:34:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1F27512004F for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:34:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q6SLFxhSDlrc for <quic-issues@ietfa.amsl.com>; Fri, 19 Jul 2019 06:34: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 DD099120193 for <quic-issues@ietf.org>; Fri, 19 Jul 2019 06:34:55 -0700 (PDT)
Date: Fri, 19 Jul 2019 06:34:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563543295; bh=We5I1EZjvT7aLgvoJkaJjxNzhrYB9Skl9ZYps+UstsA=; h=Date:From:To:Subject:From; b=EMmfWDUy9E+3AQs0Vanqkh3S6511MXL74jqmhJ3LLin0f28Ah4YJnEa7XXN5Blq/V LGGZv2Vi3DTawmLuLfWjznBoX4ObezpmoECVhkxuHysI4T9zqOpacKNQwlUEDuYUv7 xOqZ/QdyZKGhQOwA7op0LZI3RDZgKm4YacmlwGWo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/69ab8d-afe7dc@github.com>
Subject: [quicwg/base-drafts] afe7dc: Script updating issues at 2019-07-19T13:34:48Z. [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/XUszYdFTiUPq76uPb4oNMTKanIw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 19 Jul 2019 13:34:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: afe7dc1640bb15c65c4804276439e03f1162190f
      https://github.com/quicwg/base-drafts/commit/afe7dc1640bb15c65c4804276439e03f1162190f
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-19 (Fri, 19 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-19T13:34:48Z. [ci skip]



From nobody Sat Jul 20 07:46:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7EE42120103 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 07:46:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hAToKSmya4CY for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 07:46: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 28F221201B3 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 07:46:00 -0700 (PDT)
Date: Sat, 20 Jul 2019 07:45:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563633959; bh=9/J7r6DjdJFDy+4hlIB7A1mUgYP9jKAtBsMqDj6+pMQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ph/UfRCCSpQPKl6QpKwyaJyeiDN/zRNyrEdLjarhVlvbMBOAFdy0iH96LbB0c0eG5 GXKBRdrFtNeDN2M6VREj/vVunInFXZ/MixoVv9Nlv+lQ5gs35qelHknMPmel7ZOSOJ W1EsI+vIWvlUm7RaqktF5ZqxCteSH+JxbU7nNqhQ=
From: Daan De Meyer <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4V4RQKSHRNKHMBBQN3IBN2PEVBNHHBYDQKAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2911@github.com>
Subject: [quicwg/base-drafts] Separate HTTP/3 stream errors from connection errors. (#2911)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d33292746d84_1e8b3f85920cd96814093d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DaanDeMeyer
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SyjaBmFdk2Iriicp0jldLeWXiPw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 14:46:03 -0000

----==_mimepart_5d33292746d84_1e8b3f85920cd96814093d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

With the recent changes in HTTP/3 errors, it becomes possible to completely divide errors into stream errors and connection errors, with each error being either a stream error or connection error. As a result, we can also remove the possibility to treat a stream error as a connection error which allows implementations to determine whether an error is a stream error or a connection error based solely on its type.

As far as I can determine from the draft, only HTTP_STREAM_CREATION_ERROR is used as both a stream error and a connection error. It is only used as a stream error when a peer opens a unidirectional stream of an unknown type. If a new error HTTP_UKNOWN_STREAM_TYPE is split of as a stream error from HTTP_STREAM_CREATION_ERROR, HTTP_STREAM_CREATION_ERROR can be classed as solely a connection error.

[This analysis](https://github.com/quicwg/base-drafts/pull/2662#issuecomment-507529717) from @kazuho further lists HTTP_NO_ERROR and HTTP_GENERAL_PROTOCOL_ERROR as errors that can be both connection and stream errors. I think these can be safely classed as solely connection errors. 

HTTP_NO_ERROR is only defined in the draft for usage in CONNECTION_CLOSE, I'm not sure when it would be used as a stream error (we have more specific error codes to indicate intent when closing a stream).

HTTP_GENERAL_PROTOCOL_ERROR is only used as a stream error in the section discussing malformed requests/responses. I'd suggest using a more descriptive error for this case (HTTP_MALFORMED_MESSAGE  for example) and treating HTTP_GENERAL_PROTOCOL_ERROR as solely a connection error.

An error being either a connection error or a stream error simplifies implementation as they don't have to check on every error if it was communicated as a stream error or a connection error. Upgrading a stream error to a connection error is not a sensible approach for the existing stream errors (for example, closing the connection because of `REQUEST_CANCELLED` does not sound like a reasonable approach). If an implementation chooses to treat a stream error as a connection error, perhaps the INTERNAL_ERROR code should be used instead as not being able to handle a stream error without closing the connection is an implementation issue and should be treated as a bug.

There's probably some things I'm overlooking. Any feedback is welcome.

-- 
You are receiving 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/2911
----==_mimepart_5d33292746d84_1e8b3f85920cd96814093d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>With the recent changes in HTTP/3 errors, it becomes possible to completely divide errors into stream errors and connection errors, with each error being either a stream error or connection error. As a result, we can also remove the possibility to treat a stream error as a connection error which allows implementations to determine whether an error is a stream error or a connection error based solely on its type.</p>
<p>As far as I can determine from the draft, only HTTP_STREAM_CREATION_ERROR is used as both a stream error and a connection error. It is only used as a stream error when a peer opens a unidirectional stream of an unknown type. If a new error HTTP_UKNOWN_STREAM_TYPE is split of as a stream error from HTTP_STREAM_CREATION_ERROR, HTTP_STREAM_CREATION_ERROR can be classed as solely a connection error.</p>
<p><a href="https://github.com/quicwg/base-drafts/pull/2662#issuecomment-507529717" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2662/hovercard">This analysis</a> from <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> further lists HTTP_NO_ERROR and HTTP_GENERAL_PROTOCOL_ERROR as errors that can be both connection and stream errors. I think these can be safely classed as solely connection errors.</p>
<p>HTTP_NO_ERROR is only defined in the draft for usage in CONNECTION_CLOSE, I'm not sure when it would be used as a stream error (we have more specific error codes to indicate intent when closing a stream).</p>
<p>HTTP_GENERAL_PROTOCOL_ERROR is only used as a stream error in the section discussing malformed requests/responses. I'd suggest using a more descriptive error for this case (HTTP_MALFORMED_MESSAGE  for example) and treating HTTP_GENERAL_PROTOCOL_ERROR as solely a connection error.</p>
<p>An error being either a connection error or a stream error simplifies implementation as they don't have to check on every error if it was communicated as a stream error or a connection error. Upgrading a stream error to a connection error is not a sensible approach for the existing stream errors (for example, closing the connection because of <code>REQUEST_CANCELLED</code> does not sound like a reasonable approach). If an implementation chooses to treat a stream error as a connection error, perhaps the INTERNAL_ERROR code should be used instead as not being able to handle a stream error without closing the connection is an implementation issue and should be treated as a bug.</p>
<p>There's probably some things I'm overlooking. Any feedback is welcome.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2911?email_source=notifications&amp;email_token=AFTOJK2ZFZF45AFOZHCPNILQAMQKPA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAOBICA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5H5VMSK3Y4CWD2K3QAMQKPANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6E3OOYWY7FV3IPAPDQAMQKPA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAOBICA.gif" height="1" width="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/2911?email_source=notifications\u0026email_token=AFTOJK2ZFZF45AFOZHCPNILQAMQKPA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAOBICA",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK2ZFZF45AFOZHCPNILQAMQKPA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAOBICA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d33292746d84_1e8b3f85920cd96814093d7--


From nobody Sat Jul 20 12:11:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 504A5120077 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 12:11:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 SD16iiuWOK7A for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 12:11:46 -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 1D14112006E for <quic-issues@ietf.org>; Sat, 20 Jul 2019 12:11:46 -0700 (PDT)
Date: Sat, 20 Jul 2019 12:11:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563649905; bh=rwJpJdJtqsZugLay+l3AXB/tAXrYHf2Pfsli28RnihY=; h=Date:From:To:Subject:From; b=tM+GI0z2+VZL73fGyUnkJjfFg+P2XPX0oHpYn3P1uz04YtXwWkIXR80ncrFcWbGSX EW1CeJYq1Dm6bjMUsmBU7DvfcrIkvg8b6/ud393s/JEkuNHESkGi+jQ9OfhxMBbqeA uA50H6qWmYFqrE0sQKnWgYcvpWj+65jr0zuPPfKw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/251b42-94e02c@github.com>
Subject: [quicwg/base-drafts] 94e02c: Typo in change log
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wpgohTDFBZVXtOlBGKL4iWx3OQo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 19:11:47 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 94e02c1f34af486b0ef3cce6530ee1609da754b5
      https://github.com/quicwg/base-drafts/commit/94e02c1f34af486b0ef3cce6530ee1609da754b5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Typo in change log



From nobody Sat Jul 20 12:13:16 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 171AC12006E for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 12:13:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id u6qKbio4cDgN for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 12:13:13 -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 7812212001B for <quic-issues@ietf.org>; Sat, 20 Jul 2019 12:13:13 -0700 (PDT)
Date: Sat, 20 Jul 2019 12:13:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563649992; bh=yTNs9sB/5ts3iukbGBNIFyJhvA3hFkorl1m2Xb2pdYo=; h=Date:From:To:Subject:From; b=FdPfMUACIQlN+Dm8G0le83xxztHihtfF5DwliInxYlNL92GNH9BAAKbxENpJDBgYq MtoEIEIrL2T1rFycZyeZsE8j/0A3rnr0fWroXrbuApiKzIeRxXK4s12yrq36ECF4yB GN+N9MqeiG9/ZvVxjPjpY5EsBB6holzOdA5J5+os=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/afe7dc-60d83d@github.com>
Subject: [quicwg/base-drafts] 60d83d: Script updating gh-pages from 94e02c1f. [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/h7xprt_sZ_13zikoM0XZZ-XAqdU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 19:13:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 60d83ddc25fbf7e67c8a56d0a51c08cf3622a239
      https://github.com/quicwg/base-drafts/commit/60d83ddc25fbf7e67c8a56d0a51c08cf3622a239
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  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 94e02c1f. [ci skip]



From nobody Sat Jul 20 12:14:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DCC9C12006E for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 12:14:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UGXk-M8BN3Ez for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 12:14: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 8743A12001B for <quic-issues@ietf.org>; Sat, 20 Jul 2019 12:14:56 -0700 (PDT)
Date: Sat, 20 Jul 2019 12:14:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563650095; bh=VHSIjZ9OSHGKiSqQL6qSXEchzAwYt92CZZfSXTj9gEk=; h=Date:From:To:Subject:From; b=x2d2OFh2w1wWvYQZc+cJKDpQmlj5pK3alAAQMrJ2IBAhhywn+uISsFE2fPUh/oOJ5 APfVVK5aaAHuHizwT+rPAlSL9JS0ykjXk3ZeD8HlrQ/BI6gLhZDElJRPyUTuuKqglf 4AGjZmaQzz+rt+JwB5XRC7z3m7A4UNLt9obKkXig=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/60d83d-12555e@github.com>
Subject: [quicwg/base-drafts] 12555e: Script updating issues at 2019-07-20T19:14:49Z. [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/GptdssxemDyW-dqP9SBgorXLorI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 19:14:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 12555e9c057e978f7fbc3965a21f99b0df80af4b
      https://github.com/quicwg/base-drafts/commit/12555e9c057e978f7fbc3965a21f99b0df80af4b
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-20T19:14:49Z. [ci skip]



From nobody Sat Jul 20 13:24:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 894BB12014B for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 13:24:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hthYhzrPNOxD for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 13:24: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 0517712001E for <quic-issues@ietf.org>; Sat, 20 Jul 2019 13:24:19 -0700 (PDT)
Date: Sat, 20 Jul 2019 13:24:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563654259; bh=XYItseI13OTktvnydQGnFGpx0ftcKOuvFRLrZcqfyBg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=N8hN96sV+WrSwXoxokcuuwp2uTCS0fRApLsodFzxHOPYshlhfrpkoleRemHcgnPtd 5To89JeDAB+lVW0IQ4XpTwqcMw60gDjKz/ys07PvXcIUax4GL7/NiQ5nX0KvwaFdKQ 7fzN6Zy7M+gy6D0ibeT9HhtnCsoes6I9tWgYX358=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUJ4V66X5N32L5YFF3ICVPFEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/264510150@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d337872e9b74_13eb3fe6e68cd964632993"; 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/RyjbfvD-F08ReGRU37xwEwpyvd4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 20:24:22 -0000

----==_mimepart_5d337872e9b74_13eb3fe6e68cd964632993
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/2851#pullrequestreview-264510150
----==_mimepart_5d337872e9b74_13eb3fe6e68cd964632993
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2851?email_source=notifications&amp;email_token=AFTOJKYMAPXIKEX4YM5H733QANX7FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBVRQ#pullrequestreview-264510150">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5I4KY4SEXQEQKYLL3QANX7FANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZOBJSRAQ7XQSEWQW3QANX7FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBVRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJKYMAPXIKEX4YM5H733QANX7FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBVRQ#pullrequestreview-264510150",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJKYMAPXIKEX4YM5H733QANX7FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBVRQ#pullrequestreview-264510150",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d337872e9b74_13eb3fe6e68cd964632993--


From nobody Sat Jul 20 13:31:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 72E5E12001E for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 13:31:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fc9AithhxcJv for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 13:31: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 73CCA12014B for <quic-issues@ietf.org>; Sat, 20 Jul 2019 13:31:24 -0700 (PDT)
Date: Sat, 20 Jul 2019 13:31:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563654683; bh=Exw5GKkehBRou0U5ffIrzUEz4VJUnikZ1KXYkmN7SII=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TL4c+9FGoWKlCw9T9sGWp28DTeJ2dnoptXwLdyFKoPUR4T3oDA7bBikuGpVoxENnG ribqCx4FDsIfzjcSyPzHtKovAtlIuzA3AT9591vKskQGBIqSkwDFLFN3FUvWEyPD0D IoCgzIVNMyH0CaxWO/6dgTIQBraKAn59xAE4zscc=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75BLCI7MEOJIT6V2V3ICWJXEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/review/264510290@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d337a1b850b9_17483f9442ccd95c1756019"; 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/ceLVYXq2g1eQSSlpL1aWmXM9A3E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 20:31:27 -0000

----==_mimepart_5d337a1b850b9_17483f9442ccd95c1756019
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett approved this pull request.

One editorial suggestion

> -INVALID_MIGRATION.  Similarly, an endpoint MUST NOT initiate migration if its
-peer supplies a zero-length connection ID as packets without a Destination
-Connection ID cannot be attributed to a connection based on address tuple.
-
-Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer's address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close

This = Not generating a stateless reset?  If so, how about "Generating a stateless reset would allow third parties in the network to cause a connection to close by spoofing or other manipulation of observed traffic."?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2893#pullrequestreview-264510290
----==_mimepart_5d337a1b850b9_17483f9442ccd95c1756019
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> approved this pull request.</p>

<p>One editorial suggestion</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2893#discussion_r305592082">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -INVALID_MIGRATION.  Similarly, an endpoint MUST NOT initiate migration if its
-peer supplies a zero-length connection ID as packets without a Destination
-Connection ID cannot be attributed to a connection based on address tuple.
-
-Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer&#39;s address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
</pre>
<p>This = Not generating a stateless reset?  If so, how about "Generating a stateless reset would allow third parties in the network to cause a connection to close by spoofing or other manipulation of observed traffic."?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications&amp;email_token=AFTOJK4RCV7ODQ4DNMDL3IDQANYZXA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBWUQ#pullrequestreview-264510290">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ7D5IWXGPCLAMFUDTQANYZXANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PMVIVUV6LPCZQFILQANYZXA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBWUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK4RCV7ODQ4DNMDL3IDQANYZXA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBWUQ#pullrequestreview-264510290",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK4RCV7ODQ4DNMDL3IDQANYZXA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBWUQ#pullrequestreview-264510290",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d337a1b850b9_17483f9442ccd95c1756019--


From nobody Sat Jul 20 13:37:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F401D12019C for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 13:37:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id diGNzoRCUy0T for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 13:37:19 -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 516E312014B for <quic-issues@ietf.org>; Sat, 20 Jul 2019 13:37:19 -0700 (PDT)
Date: Sat, 20 Jul 2019 13:37:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563655038; bh=3U06CWTUFzOuxp77zqtqXndHGvPTj1ZWIp2iu+Kg0+Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dWR0nV+UXFX4dBoKZEnlnr7wfFqSD3E10U0rr6w/WIavvc8b0A0iG66E2VfzlNZL4 uftOy61B0vX+syRYG03nORbqjm1QzMMol376w3iPGcaXTTYQ9DJjX8aQ41K/2ES+Yz k1JU/qLI/JajFW75fer12zKRBkOSkPbfjAQ9+MeE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYAOJVV5QXZ453Y253ICW75EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264510547@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d337b7e63922_3e213fe838ccd96c1761423"; 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/lTt7ZH5-IUMLKeZfZPgPtHgMXJE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 20:37:21 -0000

----==_mimepart_5d337b7e63922_3e213fe838ccd96c1761423
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -391,6 +391,15 @@ sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
 in any received 1-RTT ACK frame: once the latter is higher than or equal to the
 former, the handshake is confirmed.
 
+Note:
+
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an endpoint,
+  the handshake might never be confirmed by an endpoint.  If the peer does
+  confirm the handshake, this could result in perpetual retransmission of
+  Handshake packets, which cannot be acknowledged.  To avoid this problem, in

I thought the whole point of QUIC is that frames or data are retransmitted, not 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/2881#discussion_r305592337
----==_mimepart_5d337b7e63922_3e213fe838ccd96c1761423
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2881#discussion_r305592337">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -391,6 +391,15 @@ sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
 in any received 1-RTT ACK frame: once the latter is higher than or equal to the
 former, the handshake is confirmed.
 
+Note:
+
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an endpoint,
+  the handshake might never be confirmed by an endpoint.  If the peer does
+  confirm the handshake, this could result in perpetual retransmission of
+  Handshake packets, which cannot be acknowledged.  To avoid this problem, in
</pre>
<p>I thought the whole point of QUIC is that frames or data are retransmitted, not 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/2881?email_source=notifications&amp;email_token=AFTOJKY6CFHVASQVZBIFDC3QANZP5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBYUY#discussion_r305592337">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XI6AF5A3I6IMUF5LQANZP5ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK73YSWSMT257O7CE63QANZP5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBYUY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKY6CFHVASQVZBIFDC3QANZP5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBYUY#discussion_r305592337",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKY6CFHVASQVZBIFDC3QANZP5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CBYUY#discussion_r305592337",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d337b7e63922_3e213fe838ccd96c1761423--


From nobody Sat Jul 20 14:29:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2CDA01200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:29:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Q3mGMBblmH0q for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:29: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 44FFD1200C7 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:29:45 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:29:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658184; bh=2PaKWpNnklGVlPd3Skkml1LNlcNZDxzzwhkb0fiAnr4=; h=Date:From:To:Subject:From; b=vk3xIlF5dEd5d/XLmBXZDEd1NjfmStNf+rIPsWNHmgEbU8gIvuKoetd8J6BR4Gx3R iRxHkg+9vlirjQs0s1QbY5lJynGdCKNIxZUiIGwfyOIk9AEis3Vn9UFgeiPAgNCURn iFtEyxbr2nvT01igDj4awopYH6GqLuTRSSHAVoDM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/0ff466-bc61fd@github.com>
Subject: [quicwg/base-drafts] bc61fd: Update draft-ietf-quic-tls.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/1I-cUxFdvjiVo2qDxbp5KlqqsPs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:29:47 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: bc61fd05a1eda1f92240d39f9006a22e096d7676
      https://github.com/quicwg/base-drafts/commit/bc61fd05a1eda1f92240d39f9006a22e096d7676
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Update draft-ietf-quic-tls.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>



From nobody Sat Jul 20 14:29:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 18CFE1200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:29:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 maArhPOiL-t1 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:29: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 9F05A1200C7 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:29:52 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:29:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658192; bh=dBZjcG/deQzIMQ8IjgS9Suyvax556/IWqOsd6MK6I8o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=D/vr5v/+HuslFoVCIMdhiQAlXZ9X0K6GueUfxLDJSnP7eyUZ+XVURm4uTZcZyIpNA aZnoVNHkb2c4SzJ755qe4WyFng9avrIWtQmnrRtFp9nlMBGZcwiPq9+N053VKt8eMf 7Pip/7sJ2RwegYae41Unp1w+vzceignNAtt6X+PE=
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/2878/push/3838296930@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3387cfea132_3ae93ff0284cd968223409d"; 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/GzoD_fJvGKp2P3IeJgn_yoMQV1I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:29:54 -0000

----==_mimepart_5d3387cfea132_3ae93ff0284cd968223409d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

bc61fd05a1eda1f92240d39f9006a22e096d7676  Update draft-ietf-quic-tls.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878/files/0ff466747fa6d13fcb1cf5fc8758f534f5b856c3..bc61fd05a1eda1f92240d39f9006a22e096d7676

----==_mimepart_5d3387cfea132_3ae93ff0284cd968223409d
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/bc61fd05a1eda1f92240d39f9006a22e096d7676">bc61fd0</a>  Update draft-ietf-quic-tls.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/2878/files/0ff466747fa6d13fcb1cf5fc8758f534f5b856c3..bc61fd05a1eda1f92240d39f9006a22e096d7676?email_source=notifications&amp;email_token=AFTOJK3UIUVDDCGLWSDLGDTQAN7U7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZGY4TGMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4B6UH5RHGQX6Z7SO3QAN7U7ANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RHXRUF2OPOG7Z7LDQAN7U7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZGY4TGMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878/files/0ff466747fa6d13fcb1cf5fc8758f534f5b856c3..bc61fd05a1eda1f92240d39f9006a22e096d7676?email_source=notifications\u0026email_token=AFTOJK3UIUVDDCGLWSDLGDTQAN7U7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZGY4TGMA",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/0ff466747fa6d13fcb1cf5fc8758f534f5b856c3..bc61fd05a1eda1f92240d39f9006a22e096d7676?email_source=notifications\u0026email_token=AFTOJK3UIUVDDCGLWSDLGDTQAN7U7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZGY4TGMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3387cfea132_3ae93ff0284cd968223409d--


From nobody Sat Jul 20 14:30:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EDD001200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:30:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 8lH4Qiq4YCfk for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:30: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 8A4851200C7 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:30:25 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:30:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658224; bh=22MZuz4INgwy6U0oZ82K8u0YSNgT4QTWQTXAhZVIVFg=; h=Date:From:To:Subject:From; b=f4Wjn968tRFzzz3KvTxFxKoj4josM6d6s7pGIVXRx0RsRs5ufsIWmDg4RYwaH7K/Y 8wlwvGT/JjMxEVwPAYJkBitw4NV8y55UwxQr87pYE4QS3l0wckmKlDXqRy8MiEU+1j sDhZ2sUJkR6R4NxcOlZjoX2TsbCZkKD9YjVn3XHA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/bc61fd-6aaad3@github.com>
Subject: [quicwg/base-drafts] 6aaad3: Update draft-ietf-quic-tls.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/hujV2JEqczL7qctsAQtttroxzcw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:30:27 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7
      https://github.com/quicwg/base-drafts/commit/6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Update draft-ietf-quic-tls.md



From nobody Sat Jul 20 14:30:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 427161200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:30:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 wZRFSVDmmxKy for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:30: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 A01811200C7 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:30:33 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:30:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658232; bh=rciCh66mp49jmOgcwotrHz8tsdGDY0mJ87oFeWbVtVg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jxldtOpeCDeoOApT4m7BiPKiA0QpHqZ0DkXiTQEcIZ63vbdqs17I2v0Thwy5LllTS A2mXbCGMcJO/C8DZmrlXLFT2Exa3iVwGXdkq95/WFA4e/XTEaLy5lOszihtyE1w0JP Xg5LTAQx6rVyWUhdwVLg6fQrjmUSoLnEGJ2f6DzM=
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/2878/push/3838297713@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3387f8a3474_13ef3f9cb0ecd95c199498b"; 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/i4pSQr6osRUVHlVmydZShF274PM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:30:35 -0000

----==_mimepart_5d3387f8a3474_13ef3f9cb0ecd95c199498b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7  Update draft-ietf-quic-tls.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878/files/bc61fd05a1eda1f92240d39f9006a22e096d7676..6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7

----==_mimepart_5d3387f8a3474_13ef3f9cb0ecd95c199498b
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/6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7">6aaad3e</a>  Update draft-ietf-quic-tls.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/2878/files/bc61fd05a1eda1f92240d39f9006a22e096d7676..6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7?email_source=notifications&amp;email_token=AFTOJK5NDAB3W5GGRMMCYZDQAN7XRA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZG43TCMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62DPHQ7BPQ5X7BD6LQAN7XRANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYKWZOPG22YGVXOZMLQAN7XRA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZG43TCMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878/files/bc61fd05a1eda1f92240d39f9006a22e096d7676..6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7?email_source=notifications\u0026email_token=AFTOJK5NDAB3W5GGRMMCYZDQAN7XRA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZG43TCMY",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/bc61fd05a1eda1f92240d39f9006a22e096d7676..6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7?email_source=notifications\u0026email_token=AFTOJK5NDAB3W5GGRMMCYZDQAN7XRA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTQMRZG43TCMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3387f8a3474_13ef3f9cb0ecd95c199498b--


From nobody Sat Jul 20 14:31:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 976151200DF for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:31:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id A7EH72tu_740 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:31: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 23A1E1200F8 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:31:01 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:31:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658260; bh=gBRAOCC9dN1A4QvHm2EaOFtjCg9QHzM/VkdF7T5/FDI=; h=Date:From:To:Subject:From; b=Tst+Pr2KG5dSKEz8rnn9WCB8D1rEygQuA9alApXc2R2hpvkA2ZMdEErGx2OM6x8JN MD7MFaV3MTDJ8X9tYMk7oRJOp4np6kE/8uvO1GeoidfFdsY1gze9h8jYYw1/4zaB1c gQpq0HK2xbcJYJRKBHoYYGZuUqo92NukVSwY29z8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/12555e-6d7b79@github.com>
Subject: [quicwg/base-drafts] 6d7b79: Script updating gh-pages from bc61fd05. [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/z6ipFf5MajgO4JDA7iUczE0Pyvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:31:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6d7b794b60ae77fb3468ccba256f13f68a1ef0bb
      https://github.com/quicwg/base-drafts/commit/6d7b794b60ae77fb3468ccba256f13f68a1ef0bb
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M ianswett-initial-secrets-constant/draft-ietf-quic-http.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-http.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-invariants.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-invariants.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-qpack.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-qpack.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-recovery.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-recovery.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bc61fd05. [ci skip]



From nobody Sat Jul 20 14:31:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9B5C81200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:31:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qgAKUW1cTedc for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:31: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 4B9911200DF for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:31:19 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:31:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658278; bh=yXO5CcqqZXOS5nXdNDd2sFIe3BX3eU9JdlmKzb7GpOM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UtmrIFIESNY8Yl3cz4ahrruTdjjKXVSO/PfxOPoVxWtekxzaOmpOUXiqq/VMP6OmH zYDGCdhVLII9wVjKX2zKISxmFAWpJhmBHWDM42TApKqCbkucJUfbszGVUWjuQViRhW 1V03rGH/6FgQaAAkSjH663sqlTdMZakq4dcAX9aA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73IEYVO2ZKLMAZC7N3IC5KNEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/c513500664@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3388264d744_2b083feb16ccd96841521a"; 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/xwDGMTBJ23nVwnReEeIASRVFLwA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:31:21 -0000

----==_mimepart_5d3388264d744_2b083feb16ccd96841521a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks for the suggestion Martin, accepted.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878#issuecomment-513500664
----==_mimepart_5d3388264d744_2b083feb16ccd96841521a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thanks for the suggestion Martin, accepted.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications&amp;email_token=AFTOJK33VLFQLNQLSXPWVFDQAN72NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWL6A#issuecomment-513500664">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67WH72P6CTWSOWW6LQAN72NANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3XRH7KAQLW42NQRM3QAN72NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWL6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK33VLFQLNQLSXPWVFDQAN72NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWL6A#issuecomment-513500664",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK33VLFQLNQLSXPWVFDQAN72NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWL6A#issuecomment-513500664",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3388264d744_2b083feb16ccd96841521a--


From nobody Sat Jul 20 14:31:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A3BA112017E for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:31:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ExmWNp1_Hnim for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:31:42 -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 5B5701200F8 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:31:42 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:31:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658301; bh=/Ucdh8d81cCvA78YepaOEQN9X0Yl5IaF0pTlAFK2fZw=; h=Date:From:To:Subject:From; b=ISiVhfISqQh1GvoaODAYgQhATvPi+nPSNT2vNy0W/E2/Sy7JTonOv+9raSQ/TREqh UFPN/OopOW6SCQVfqKKDwrNGP46/+ZfX5b76Qx+jxJpkUmouFw6wL7v2LiLWAR5+WO sQIkZ99kbdjxrNDiqDj4xIjiJKuuzGDDw4j60iDk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6d7b79-0d7471@github.com>
Subject: [quicwg/base-drafts] 0d7471: Script updating gh-pages from 6aaad3e1. [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/Z_FdGD2nVaTlealWKUrcH_iCTh4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:31:44 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0d747195724d8172ab13cdc9b1abbe987e128e1a
      https://github.com/quicwg/base-drafts/commit/0d747195724d8172ab13cdc9b1abbe987e128e1a
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6aaad3e1. [ci skip]



From nobody Sat Jul 20 14:36:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 21DD41200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:36:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 LmRCSyhkltg8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:36:40 -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 EAFC81200DF for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:36:39 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:36:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658598; bh=fxoN22baOnuc9F0AIVWS9rN+fePHMH+nRg1pY1Rr404=; h=Date:From:To:Subject:From; b=BXOziX2jxjHDAIrQOAJMY4VeEgT96t9BxOION3D0JWoiPvXk0CuiQTx60CajuWc55 eFlgbY/UazrjZo/X6V/Bmtr8NIx/ZJoJC7M/jZ2KX4rHI1Gu4q2zDQUG2I7BLfkyFB NnaAFD1k2GTbAyGkttPcJHaX91qLDXxgh+41PhgI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/7ec975-50f28c@github.com>
Subject: [quicwg/base-drafts] 50f28c: It's not really retransmission
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yCcJWn8V-cm5Y1DiEIVZl4g9HXo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:36:41 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 50f28c150ccd8ddef4998ee44433ec3308db1e66
      https://github.com/quicwg/base-drafts/commit/50f28c150ccd8ddef4998ee44433ec3308db1e66
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  It's not really retransmission



From nobody Sat Jul 20 14:36:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D773C1200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:36:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0pxI0vHSvrs4 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:36: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 5DA991200C7 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:36:47 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:36:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658606; bh=9O05KBAuV9TTioU3EVPSnSDrephak2MOlYkyA62mhmY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ho7/m19lAKVjMIpeyIh/tPtFPoa7nuxRqUP1qAgSMqoqBfUimwkfHKH/2Fy/kxKF7 hoQxv2p0wfYsTOc1JgJfhQ4GHTeRD17fl/UKpP0lknJQkfOnnHkozzjZsQE6nhdWGM 7FiSt4YUtbxejsOg4aOPlQhcOVKWa5hC+m4DOYec=
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/2881/push/3838304347@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d33896e3da90_174a3f9442ccd95c1655647"; 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/jkYSiCa9xihQzm_8CzXhgxIzeCA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:36:49 -0000

----==_mimepart_5d33896e3da90_174a3f9442ccd95c1655647
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

50f28c150ccd8ddef4998ee44433ec3308db1e66  It's not really retransmission


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881/files/7ec975789ec99f28ff853961624641ea0fb06f23..50f28c150ccd8ddef4998ee44433ec3308db1e66

----==_mimepart_5d33896e3da90_174a3f9442ccd95c1655647
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/50f28c150ccd8ddef4998ee44433ec3308db1e66">50f28c1</a>  It&#39;s not really retransmission</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/2881/files/7ec975789ec99f28ff853961624641ea0fb06f23..50f28c150ccd8ddef4998ee44433ec3308db1e66?email_source=notifications&amp;email_token=AFTOJK5FIW6R2NCKLVLNKGDQAOAO5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZQGQZTINY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UK5O7CWIYHAETNFDQAOAO5ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7KXHCXQXTMBJSXJ6TQAOAO5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZQGQZTINY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881/files/7ec975789ec99f28ff853961624641ea0fb06f23..50f28c150ccd8ddef4998ee44433ec3308db1e66?email_source=notifications\u0026email_token=AFTOJK5FIW6R2NCKLVLNKGDQAOAO5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZQGQZTINY",
"url": "https://github.com/quicwg/base-drafts/pull/2881/files/7ec975789ec99f28ff853961624641ea0fb06f23..50f28c150ccd8ddef4998ee44433ec3308db1e66?email_source=notifications\u0026email_token=AFTOJK5FIW6R2NCKLVLNKGDQAOAO5A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZQGQZTINY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d33896e3da90_174a3f9442ccd95c1655647--


From nobody Sat Jul 20 14:38:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3A9F91200F8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:38:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id seN3SjewZazo for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:38:11 -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 398D01200DF for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:38:11 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:38:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658690; bh=Msp10KAFv9RKFgT77lB6odO++ZjuhjNPMBWPKujE0ck=; h=Date:From:To:Subject:From; b=FIibKTe66+xZG9ib+h7Ksp3xMyaWg9u0nnTXkzYvodZFLjfayKQ2iJWpHMxDAM9mo MRbaX1Yw8f3BVnSfe2kmWxMmAj76WtGrsUWGns1jWekboIgjLI2zR+kJWQq+2bahzZ 0s9u6OtxnjnlSw71LV5zdfE3U7/DsDXqQp28kWZs=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0d7471-0f2855@github.com>
Subject: [quicwg/base-drafts] 0f2855: Script updating gh-pages from 50f28c15. [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/U7fHrldHtLl5LGVgFQDNZ4bvnxw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:38:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0f2855a481e1f8799dc32129d3e83f15cc059bec
      https://github.com/quicwg/base-drafts/commit/0f2855a481e1f8799dc32129d3e83f15cc059bec
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M index.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.html
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.html
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.html
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.html
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 50f28c15. [ci skip]



From nobody Sat Jul 20 14:40:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0501F1201D9 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:40:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vWolHRqMKHNB for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:40: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 341E81201D8 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:40:00 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:39:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658799; bh=1p2RxaXxxHr89RFkMA9xowI0ddOtaypNEQDMGMxSSr0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FLUxbe/z0dh5zLLo4K2tsHnVfeR91xahqM1vhBKOeYyoo4uHCAFudWjjm5k+/hMCY v7puBNHqR5ZjlcOgCkGos5EQK4/CRK9eGHzEFzDMg7jcFmNf+RQQE5yU3XzEH73Hez CDuLrcdty/mJYaowMpXnASNdMrgHV0ojiVSM+cQM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZR5ZWUB4HZTO6JUR53IC6K7EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264512230@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d338a2f1b09c_3ad33ff0284cd96820182e6"; 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/puIOKOxRXDti9W1CBoFXvKiZ1rs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:40:02 -0000

----==_mimepart_5d338a2f1b09c_3ad33ff0284cd96820182e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -391,6 +391,15 @@ sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
 in any received 1-RTT ACK frame: once the latter is higher than or equal to the
 former, the handshake is confirmed.
 
+Note:
+
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an endpoint,
+  the handshake might never be confirmed by an endpoint.  If the peer does
+  confirm the handshake, this could result in perpetual retransmission of
+  Handshake packets, which cannot be acknowledged.  To avoid this problem, in

This isn't really about retransmission, so I removed the "re".

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881#discussion_r305594026
----==_mimepart_5d338a2f1b09c_3ad33ff0284cd96820182e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2881#discussion_r305594026">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -391,6 +391,15 @@ sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
 in any received 1-RTT ACK frame: once the latter is higher than or equal to the
 former, the handshake is confirmed.
 
+Note:
+
+: Unless ack-eliciting packets protected by 1-RTT keys are sent by an endpoint,
+  the handshake might never be confirmed by an endpoint.  If the peer does
+  confirm the handshake, this could result in perpetual retransmission of
+  Handshake packets, which cannot be acknowledged.  To avoid this problem, in
</pre>
<p>This isn't really about retransmission, so I removed the "re".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications&amp;email_token=AFTOJK4UE6NWCX53ODQRVNTQAOA27A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCFZQ#discussion_r305594026">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ATETUSLD22IXUFBTQAOA27ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JG2YHT5WRIZMP5SLQAOA27A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCFZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4UE6NWCX53ODQRVNTQAOA27A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCFZQ#discussion_r305594026",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4UE6NWCX53ODQRVNTQAOA27A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCFZQ#discussion_r305594026",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d338a2f1b09c_3ad33ff0284cd96820182e6--


From nobody Sat Jul 20 14:42:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 533591201DC for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:42:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XsVEbQ-maNzI for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:41: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 AFFDE1201DB for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:41:58 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:41:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563658917; bh=ZXhkn9wLQQXZZJisalS9Y9YeArNz4Aai8+YjFcLrcX0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uZNnHW2MOir9vjumJxngu0NvGoBrEYxJx+VwAhzpsHJNTLv9T0IHtrN4u7Qcfy0cG dLNYVoVAlfA5QRQ7mlqiqg0h9Q/7FMXAupXy0mVFMm8utfvOWURvgN3hdHEgkquIrB Fi4YN1X/gF91RClnJUq6GV1H99ys/c2lbIC3aiOM=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ4EUQLKJUS5ZC5CH53IC6SLEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/c513501310@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d338aa5b2cee_3af13ff0284cd968207206b"; 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/WuLNgejUTLRNQI5vU2AEIlNXhaY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:42:00 -0000

----==_mimepart_5d338aa5b2cee_3af13ff0284cd968207206b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I merged #2806, so you'll need to resolve conflicts, unless you want me to try to do 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/2881#issuecomment-513501310
----==_mimepart_5d338aa5b2cee_3af13ff0284cd968207206b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457781071" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2806" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2806/hovercard" href="https://github.com/quicwg/base-drafts/pull/2806">#2806</a>, so you'll need to resolve conflicts, unless you want me to try to do 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/2881?email_source=notifications&amp;email_token=AFTOJKYGKNSZ5RPB6KVS3RLQAOBCLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWQ7Q#issuecomment-513501310">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XJBIIL26DV2A4EW3QAOBCLANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SDVLJAW6FZH33DRLQAOBCLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWQ7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKYGKNSZ5RPB6KVS3RLQAOBCLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWQ7Q#issuecomment-513501310",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJKYGKNSZ5RPB6KVS3RLQAOBCLA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2NWQ7Q#issuecomment-513501310",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d338aa5b2cee_3af13ff0284cd968207206b--


From nobody Sat Jul 20 14:55:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 11DFA1201D8 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:55:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mSoqdwSjCH3Y for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:55: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 8E8201201A0 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:55:53 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:55:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563659752; bh=KgewTBI+t/07V371Uk1i6P135h16yIL9HesbrQ50scc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Uev/yVEYS7pNRRUhi0zKyA9CY0yjy4ZJCTSvliA/Ms/l73GeX7P74JWE/0mI+1/t3 NrIMTCerRF6eMrVZc95GQHYWtSDGsgEiGsIUlzCwPefwoeT/2ebFZA2Uql7J7Xe3T6 Ia2vEM88raiq66+zgcDsar96JYrIqnVy3jkefOwg=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2WEVRJKC5FMFILWGN3IDAGREVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264512647@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d338de8864f1_6b3e3feb16ccd968151278"; 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/vYfI_JgxaDdbEJ-RbON5FBNR7h4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:55:55 -0000

----==_mimepart_5d338de8864f1_6b3e3feb16ccd968151278
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

nibanks 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/2881#pullrequestreview-264512647
----==_mimepart_5d338de8864f1_6b3e3feb16ccd968151278
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@nibanks</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/2881?email_source=notifications&amp;email_token=AFTOJK6EDQ7YFPWZONGKS6TQAOCWRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJBY#pullrequestreview-264512647">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ZVUDI6JTC3CE7IYLQAOCWRANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3T6QORXVHQGIWMLPTQAOCWRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJBY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK6EDQ7YFPWZONGKS6TQAOCWRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJBY#pullrequestreview-264512647",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK6EDQ7YFPWZONGKS6TQAOCWRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJBY#pullrequestreview-264512647",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d338de8864f1_6b3e3feb16ccd968151278--


From nobody Sat Jul 20 14:56:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EEB841201E0 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:56:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lyW0oFLXFEVJ for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 14:56: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 51CD61201D9 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 14:56:16 -0700 (PDT)
Date: Sat, 20 Jul 2019 14:56:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563659775; bh=209pjA3+bjpq4RplOJgUjy6BVBtkKfVG8eCPCRHvCOw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TX/2iAJnXgWmcR5eWhfwFuhWcbmmB3WSYm3YBxoueVA1fO9YGA+56hpg6sEqqy8SC GdjPIZPczLKUAN4ehFEq4egtTwkJ7MznCsc8KFsxBigAEvACHwioo4vY2Fz06quVqS By8WdsLRp9HJQkBqWgOfu3GuL653mmBAaB+3ADlY=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27WDHU5ET32CW5FLV3IDAH7EVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264512654@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d338dff6821f_182e3fb806ecd96815107d4"; 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/H1p31XesEkamN5HekHz8Np_rDlQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 21:56:18 -0000

----==_mimepart_5d338dff6821f_182e3fb806ecd96815107d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinduke requested changes on this pull request.



> @@ -1188,9 +1188,10 @@ SetLossDetectionTimer():
     return
 
   // Don't arm timer if there are no ack-eliciting packets
-  // in flight and the handshake is complete.
-  if (endpoint is client with 1-RTT keys &&
-      no ack-eliciting packets in flight):
+  // in flight and the endpoint is a server or has
+  // completed the handshake.
+  if (no ack-eliciting packets in flight &&
+      (endpoint is server or has 1-RTT keys)):

endpoint is server or has received hs ack or an ack of an 1-RTT packet (not a 1-RTT packet, this could be an ack of 0RTT)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907#pullrequestreview-264512654
----==_mimepart_5d338dff6821f_182e3fb806ecd96815107d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinduke</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2907#discussion_r305594508">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1188,9 +1188,10 @@ SetLossDetectionTimer():
     return
 
   // Don&#39;t arm timer if there are no ack-eliciting packets
-  // in flight and the handshake is complete.
-  if (endpoint is client with 1-RTT keys &amp;&amp;
-      no ack-eliciting packets in flight):
+  // in flight and the endpoint is a server or has
+  // completed the handshake.
+  if (no ack-eliciting packets in flight &amp;&amp;
+      (endpoint is server or has 1-RTT keys)):
</pre>
<p>endpoint is server or has received hs ack or an ack of an 1-RTT packet (not a 1-RTT packet, this could be an ack of 0RTT)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK4NCMMJC7YVCXKF6CLQAOCX7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJDQ#pullrequestreview-264512654">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7KXIYFTZVF5ORWXDTQAOCX7ANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7CGFYDVN3RGLOD2KLQAOCX7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4NCMMJC7YVCXKF6CLQAOCX7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJDQ#pullrequestreview-264512654",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4NCMMJC7YVCXKF6CLQAOCX7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCJDQ#pullrequestreview-264512654",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d338dff6821f_182e3fb806ecd96815107d4--


From nobody Sat Jul 20 15:05:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6B0F01201E0 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:05:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.597
X-Spam-Level: 
X-Spam-Status: No, score=-6.597 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 8mvUbYjTHbGw for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:05:22 -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 93F8F120112 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 15:05:22 -0700 (PDT)
Date: Sat, 20 Jul 2019 15:05:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563660321; bh=OOGvGurdRc5detAcIHTP76Tl9XMGyDNrd5pJXrZkHko=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y367qVzQhQ54nFbQegMpXKTZZYaa99KCL0f/UhkMbO/1x1oP3wNraTkQi1/P/QAd4 Q8axYlKIyDcFoh6sRB/pyFlQ+2bWCMU+BqnfsSSMWnK37Rpf8ro+79I8XZoUPi/ws/ ay7R+Z2MjY5Y6Hbc9eizVqDMM/nl4/1ObyNXNdsw=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK53V3SBUZQMFBJUGUV3IDBKDEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264513006@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d33902137e25_2fee3fbe25ecd95c5172c4"; 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/mcHXuoh1vgVa0IbBhgiT4x-GsfQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 22:05:24 -0000

----==_mimepart_5d33902137e25_2fee3fbe25ecd95c5172c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinduke commented on this pull request.



> @@ -1188,9 +1188,10 @@ SetLossDetectionTimer():
     return
 
   // Don't arm timer if there are no ack-eliciting packets
-  // in flight and the handshake is complete.
-  if (endpoint is client with 1-RTT keys &&
-      no ack-eliciting packets in flight):
+  // in flight and the endpoint is a server or has
+  // completed the handshake.
+  if (no ack-eliciting packets in flight &&
+      (endpoint is server or has 1-RTT keys)):

Sorry, just add "has received HS ack" and we're good. There's a case where the server flight doesn't fit in a cwnd and the extra text may save us a crypto 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/2907#discussion_r305594861
----==_mimepart_5d33902137e25_2fee3fbe25ecd95c5172c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinduke</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2907#discussion_r305594861">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1188,9 +1188,10 @@ SetLossDetectionTimer():
     return
 
   // Don&#39;t arm timer if there are no ack-eliciting packets
-  // in flight and the handshake is complete.
-  if (endpoint is client with 1-RTT keys &amp;&amp;
-      no ack-eliciting packets in flight):
+  // in flight and the endpoint is a server or has
+  // completed the handshake.
+  if (no ack-eliciting packets in flight &amp;&amp;
+      (endpoint is server or has 1-RTT keys)):
</pre>
<p>Sorry, just add "has received HS ack" and we're good. There's a case where the server flight doesn't fit in a cwnd and the extra text may save us a crypto timeout.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK7AQLK45O64E6IGFW3QAOD2DA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCL3Q#discussion_r305594861">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VFTPGIRIVQ5R5RUDQAOD2DANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5PIP2PLNX2FS4IGJTQAOD2DA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCL3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK7AQLK45O64E6IGFW3QAOD2DA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCL3Q#discussion_r305594861",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK7AQLK45O64E6IGFW3QAOD2DA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CCL3Q#discussion_r305594861",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d33902137e25_2fee3fbe25ecd95c5172c4--


From nobody Sat Jul 20 15:08:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A02AE1201E0 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:08:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 igPhAGbWm-Sp for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:08: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 DFC09120112 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 15:08:16 -0700 (PDT)
Date: Sat, 20 Jul 2019 15:08:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563660496; bh=JzmiG0a9VkPwH6lEB/ivnUNIJ47ZC2rk4kHV4veZfis=; h=Date:From:To:Subject:From; b=0ysvOzhsiICWJ2JHB+XNqASU5++c5tPu24HMT1WqKR2/0jP6nr7gBING3Ul1vJy3D nuJ679b9Q3RlV2MPqlu90gicUE2ll52/E754gTTcab/DzvoS/zbIDoD4nFNLTI5Td/ d6690kN1jvl0bcjfnZ+Dn2wG/1gNg+qXOQfHf6QU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/50f28c-c98c77@github.com>
Subject: [quicwg/base-drafts] 913370: Editorial fix for #2479
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NoW-rQk-1kCSIfBg3u-KVPg_nEQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 22:08:19 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 913370291aa863a847126f7df9f9ab3df7024196
      https://github.com/quicwg/base-drafts/commit/913370291aa863a847126f7df9f9ab3df7024196
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Editorial fix for #2479


  Commit: b9f6425786a4a347ec926bac02c4b1631e15cdb9
      https://github.com/quicwg/base-drafts/commit/b9f6425786a4a347ec926bac02c4b1631e15cdb9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Update draft-ietf-quic-invariants.md

Fixing invariants as well


  Commit: 5601eb00ee1d8b88d10e1a5e9f75c9899d602abf
      https://github.com/quicwg/base-drafts/commit/5601eb00ee1d8b88d10e1a5e9f75c9899d602abf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Update draft-ietf-quic-invariants.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: a8a705e0da6e8009c4b9a902ad0228b0f7b3c181
      https://github.com/quicwg/base-drafts/commit/a8a705e0da6e8009c4b9a902ad0228b0f7b3c181
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Update draft-ietf-quic-invariants.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd
      https://github.com/quicwg/base-drafts/commit/49e721ae5aa2b3d5c1474cfc8c771721ed12b5fd
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Update draft-ietf-quic-invariants.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 553106c6343f699ea9dabe23df5e1cb06b6795a8
      https://github.com/quicwg/base-drafts/commit/553106c6343f699ea9dabe23df5e1cb06b6795a8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  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: 4f3e69d0f1a126e7c420a1d5d01efca60f498276
      https://github.com/quicwg/base-drafts/commit/4f3e69d0f1a126e7c420a1d5d01efca60f498276
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-08 (Mon, 08 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Update draft-ietf-quic-invariants.md


  Commit: b205028bd6b3ee9419725022c96d8a6f72bd5d91
      https://github.com/quicwg/base-drafts/commit/b205028bd6b3ee9419725022c96d8a6f72bd5d91
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  fixed typo


  Commit: 4926cf4edf332380b83e48b1a7ee717dfe891f5f
      https://github.com/quicwg/base-drafts/commit/4926cf4edf332380b83e48b1a7ee717dfe891f5f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Byte lengths are next

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 1b61c54b8a4677890dde6108714d49674b0155d0
      https://github.com/quicwg/base-drafts/commit/1b61c54b8a4677890dde6108714d49674b0155d0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-10 (Wed, 10 Jul 2019)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2877 from quicwg/ianswett-2479

Editorial fix for #2479


  Commit: 8791dd420b0afb6a6395025d33c339747b448e3b
      https://github.com/quicwg/base-drafts/commit/8791dd420b0afb6a6395025d33c339747b448e3b
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2883 from martinduke/patch-1

fixed typo


  Commit: 212169ad443ebd496c4b0452fefd1223d5c9c13d
      https://github.com/quicwg/base-drafts/commit/212169ad443ebd496c4b0452fefd1223d5c9c13d
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2019-07-12 (Fri, 12 Jul 2019)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  qpack: fix reference to blocked-streams section


  Commit: cb6828672ebbb3288be99155ae151ed243723421
      https://github.com/quicwg/base-drafts/commit/cb6828672ebbb3288be99155ae151ed243723421
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-15 (Mon, 15 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge Crypto timeout and PTO (#2806)

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Matt Olson <maolson@microsoft.com>

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Matt Olson <maolson@microsoft.com>

* Update draft-ietf-quic-recovery.md

* Remove crypto timer from the pseudocode

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>

* Update draft-ietf-quic-recovery.md

Fix pseudocode indent

* Update draft-ietf-quic-recovery.md

* Changed to MUST

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md

* Ryan's suggestion


  Commit: 8006456f147c1ea32e80cc65fb33b04bf955ec00
      https://github.com/quicwg/base-drafts/commit/8006456f147c1ea32e80cc65fb33b04bf955ec00
  Author: tandf <tandf@live.cn>
  Date:   2019-07-16 (Tue, 16 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Fix typo


  Commit: d090d4d796abf702f7246c06cbae1011342c360f
      https://github.com/quicwg/base-drafts/commit/d090d4d796abf702f7246c06cbae1011342c360f
  Author: lucas <lucas@cloudflare.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Don't state QUIC error codes.


  Commit: d432cd6f844cabbce899e21ed2e177dc0815bba0
      https://github.com/quicwg/base-drafts/commit/d432cd6f844cabbce899e21ed2e177dc0815bba0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix lack of exponential backoff in pseudocode (#2902)

* Fix lack of exponential backoff in pseudocode

When there is no smoothed_rtt, PR #2806 inadvertently removed the exponential backoff from the pseudocode.

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md


  Commit: c56d843044ed537a53487411438e2638bec1a46a
      https://github.com/quicwg/base-drafts/commit/c56d843044ed537a53487411438e2638bec1a46a
  Author: lucas <lucas@cloudflare.com>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Fix HPACK xref


  Commit: bf59b827aeab949b66e62173dd6ec0f3c7d3d068
      https://github.com/quicwg/base-drafts/commit/bf59b827aeab949b66e62173dd6ec0f3c7d3d068
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-17 (Wed, 17 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Add one to sample offset for header protection

With the changes to invariants, this calculation was off by one.

Closes #2899.


  Commit: 17d82ab10046ca8eba79d8db0c8b8273c77e20d5
      https://github.com/quicwg/base-drafts/commit/17d82ab10046ca8eba79d8db0c8b8273c77e20d5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-18 (Thu, 18 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #2904 from quicwg/sample-offset

Add one to sample offset for header protection


  Commit: 251b42e00d2973ae2dcbbe09d6c193932bb7c72c
      https://github.com/quicwg/base-drafts/commit/251b42e00d2973ae2dcbbe09d6c193932bb7c72c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-18 (Thu, 18 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #2901 from tandf/patch-1

Fix typo


  Commit: 94e02c1f34af486b0ef3cce6530ee1609da754b5
      https://github.com/quicwg/base-drafts/commit/94e02c1f34af486b0ef3cce6530ee1609da754b5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Typo in change log


  Commit: c98c77e4646299ffc43a87bb477b246c2fbd5608
      https://github.com/quicwg/base-drafts/commit/c98c77e4646299ffc43a87bb477b246c2fbd5608
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  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

  Log Message:
  -----------
  Merge branch 'master' into unrecoverable-without-1rtt


Compare: https://github.com/quicwg/base-drafts/compare/50f28c150ccd...c98c77e46462


From nobody Sat Jul 20 15:08:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 219A5120112 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:08:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id t0yEE3bj4Y7A for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:08: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 DBA9A1201E0 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 15:08:25 -0700 (PDT)
Date: Sat, 20 Jul 2019 15:08:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563660505; bh=j6Kq2XeFfP8dzdPZ1W4V3SAC62Fo0Kyosyr4g572uNY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FWojvxdCh7+KJasnqsnOppnXBIk0zu+jrumoU9chRcbXYrWsPbOT3qNaLj4+XptY0 LGKLWdzFo5ub6/ppw0OCr4LHsnNDARGUaw+OjMokwjl+IUuPDfeiKCbCWTS22dYkvy 4EKYi8RO5B1PYZc/gGVpEJigcDLSQgjZEgrky9a8=
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/2881/push/3838336360@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3390d918bc7_2f0f3fa2ab8cd95c31041c"; 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/ekENLjzOLJgWench9izh6tZYNdI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 22:08:27 -0000

----==_mimepart_5d3390d918bc7_2f0f3fa2ab8cd95c31041c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

c98c77e4646299ffc43a87bb477b246c2fbd5608  Merge branch 'master' into unrecoverable-without-1rtt


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881/files/50f28c150ccd8ddef4998ee44433ec3308db1e66..c98c77e4646299ffc43a87bb477b246c2fbd5608

----==_mimepart_5d3390d918bc7_2f0f3fa2ab8cd95c31041c
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/c98c77e4646299ffc43a87bb477b246c2fbd5608">c98c77e</a>  Merge branch &#39;master&#39; into unrecoverable-without-1rtt</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/2881/files/50f28c150ccd8ddef4998ee44433ec3308db1e66..c98c77e4646299ffc43a87bb477b246c2fbd5608?email_source=notifications&amp;email_token=AFTOJK4ZS2SRA5FOFVOFQ6DQAOEFTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZTGYZTMMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3P6FHU4ZAOI3T5TADQAOEFTANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYIWX2SK4CDZ6XNE4LQAOEFTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZTGYZTMMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881/files/50f28c150ccd8ddef4998ee44433ec3308db1e66..c98c77e4646299ffc43a87bb477b246c2fbd5608?email_source=notifications\u0026email_token=AFTOJK4ZS2SRA5FOFVOFQ6DQAOEFTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZTGYZTMMA",
"url": "https://github.com/quicwg/base-drafts/pull/2881/files/50f28c150ccd8ddef4998ee44433ec3308db1e66..c98c77e4646299ffc43a87bb477b246c2fbd5608?email_source=notifications\u0026email_token=AFTOJK4ZS2SRA5FOFVOFQ6DQAOEFTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTQMZTGYZTMMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3390d918bc7_2f0f3fa2ab8cd95c31041c--


From nobody Sat Jul 20 15:09:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7010F1201E0 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:09:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dfmls2RhNr7t for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:09:30 -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 10763120112 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 15:09:30 -0700 (PDT)
Date: Sat, 20 Jul 2019 15:09:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563660569; bh=vB79jhgWDNJvFDXsuYV9iNN3leInrdcN13iyMv9tbi4=; h=Date:From:To:Subject:From; b=pBuaNHkLmynfBxgrQb/mTg7QIiYTNHuJPn9SmX+zA8qr40XemGX74eftDp9Geu6S0 DeDsw1qaALzHXaE6jpRc6QeYjD4swyYaOQxNoHK2x3K0HHyy+vYiQxWSSo5RIYC+rA D80NYydUDA9AFScQelEovbaUUXZKXBC37fP3cg08=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0f2855-a7dd35@github.com>
Subject: [quicwg/base-drafts] a7dd35: Script updating gh-pages from c98c77e4. [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/QLQYO34oBVGkuhgt6jx_au6YmwM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 22:09:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a7dd35c74fb1531c8addeca8aeb7b8e7d017884d
      https://github.com/quicwg/base-drafts/commit/a7dd35c74fb1531c8addeca8aeb7b8e7d017884d
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M index.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.html
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.html
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.html
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.html
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from c98c77e4. [ci skip]



From nobody Sat Jul 20 15:33:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A1916120112 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:33:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 xRY8xk20xFK7 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:33: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 718A41200E0 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 15:33:45 -0700 (PDT)
Date: Sat, 20 Jul 2019 15:33:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563662024; bh=GRU7p9LGc2n4dbN4GyPk4A8pS6Cv8Hz7EnHjehQ7yFs=; h=Date:From:To:Subject:From; b=qcNQ/LLe9/6YBDBCYLqulxccnN0HLj6xXjuP1bwaDK2WkE88EPFsDslIm4knP3gci 5gFawXd/xzXR0Aw0IfNaBjkciAIF32jtNIenyFB5rQThUlQA6UAq/B4jx6RYSU80iS L4YvEuUHJc9lepblt+oOwzzKA6hXS5nDNerZ+Tb0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/d1d9bc-26ecb8@github.com>
Subject: [quicwg/base-drafts] 26ecb8: Martin Duke's suggestion
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CYEn5BfQha6XW6KAqNSRmVDPrqI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 22:33:47 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 26ecb8f304b977f753cb9afedd25e843600146f3
      https://github.com/quicwg/base-drafts/commit/26ecb8f304b977f753cb9afedd25e843600146f3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Martin Duke's suggestion



From nobody Sat Jul 20 15:33:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 921871200E0 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:33:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FNxmkwZYwLIM for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:33:53 -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 3B817120112 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 15:33:53 -0700 (PDT)
Date: Sat, 20 Jul 2019 15:33:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563662032; bh=CqNwfy69H3hrwlpNIf7OMWmWmKz3zZU2aYyvopoRMc8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BPNrPIGnMOOt0ucBBhGQNx/LLJAZFWziLc3QROP61xJdQ0TrneNuRa3OtFBr62IzW SVzZlQi3MLIBFzwy7wntc42/F1No4CQ9SW7G1qNN3aDCTN9ZFT6/FEUs8cMtjGwrTA gRHzOJ0ebFrEdPKjysFMVvkuGePGI7zRZxKEsU3k=
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/2907/push/3838361255@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3396d07ddf3_26043f9a294cd9688151d4"; 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/6FtRsj6t8JnhfO6uIlz1aZo2XN0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 22:33:55 -0000

----==_mimepart_5d3396d07ddf3_26043f9a294cd9688151d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

26ecb8f304b977f753cb9afedd25e843600146f3  Martin Duke's suggestion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907/files/d1d9bc9d5bf77b460a14cefc94938753996c010d..26ecb8f304b977f753cb9afedd25e843600146f3

----==_mimepart_5d3396d07ddf3_26043f9a294cd9688151d4
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/26ecb8f304b977f753cb9afedd25e843600146f3">26ecb8f</a>  Martin Duke&#39;s suggestion</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/2907/files/d1d9bc9d5bf77b460a14cefc94938753996c010d..26ecb8f304b977f753cb9afedd25e843600146f3?email_source=notifications&amp;email_token=AFTOJKZZ6VIP5EJJGUQMYWTQAOHFBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQMZWGEZDKNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7A6WKYBK75BU7BNJ3QAOHFBANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XVPWAKPSLXU5T4FLQAOHFBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQMZWGEZDKNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907/files/d1d9bc9d5bf77b460a14cefc94938753996c010d..26ecb8f304b977f753cb9afedd25e843600146f3?email_source=notifications\u0026email_token=AFTOJKZZ6VIP5EJJGUQMYWTQAOHFBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQMZWGEZDKNI",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/d1d9bc9d5bf77b460a14cefc94938753996c010d..26ecb8f304b977f753cb9afedd25e843600146f3?email_source=notifications\u0026email_token=AFTOJKZZ6VIP5EJJGUQMYWTQAOHFBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQMZWGEZDKNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3396d07ddf3_26043f9a294cd9688151d4--


From nobody Sat Jul 20 15:34:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 56045120112 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:34:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DMbcU0hsuceL for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 15:34: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 26F491200E0 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 15:34:52 -0700 (PDT)
Date: Sat, 20 Jul 2019 15:34:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563662091; bh=dbHheySAyHxheJbkhV1dTgtCK2ySx4lPfxd3i2+E3mk=; h=Date:From:To:Subject:From; b=qSsoCqoPXmYH+fwrnf0IzmKHDIaxjrm72CHfGvXj+dOjqxGSS1SFAY6eHudxDYWan a2pkmEa72XOUXCUxnzxiw36DGNsR3bGpEUHnkH7lvgwyIqK2dm2z69o26YwNCwYslV mdb8srVUmvraX/zp0y/OBfoOI8SoiKU3LwRwnb7g=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a7dd35-caa362@github.com>
Subject: [quicwg/base-drafts] caa362: Script updating gh-pages from 26ecb8f3. [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/addNDhgi9w9xINGAX3OjlseF13o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Jul 2019 22:34:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: caa36206d7a9a29ef23988acfa0d3fb8a5e94aad
      https://github.com/quicwg/base-drafts/commit/caa36206d7a9a29ef23988acfa0d3fb8a5e94aad
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M ianswett-fix-loss-detection/draft-ietf-quic-http.html
    M ianswett-fix-loss-detection/draft-ietf-quic-http.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-invariants.html
    M ianswett-fix-loss-detection/draft-ietf-quic-invariants.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-qpack.html
    M ianswett-fix-loss-detection/draft-ietf-quic-qpack.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.html
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-tls.html
    M ianswett-fix-loss-detection/draft-ietf-quic-tls.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.html
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 26ecb8f3. [ci skip]



From nobody Sat Jul 20 18:06:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 53E6D120096 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:06:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5GkYnZhS6NTx for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:06:36 -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 4A1CA12003F for <quic-issues@ietf.org>; Sat, 20 Jul 2019 18:06:36 -0700 (PDT)
Date: Sat, 20 Jul 2019 18:06:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563671195; bh=oa8F848Pp7NKDY/4+TmzJAIOtJhcSz77EPWhHphLaBQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0tLbHEOktIqdcgkEK/Iyy/wt07qgSJpR8Bttt8NFJ+6HWGvGTOwvMp8TYy8eR0qgT FSFlFSdJLzW4bIPH0OI8o/i0m/uIKSSbQ3W9EtjGQVRsBY0GMbDlq3RbOU8EPCaA9U Q/YHnqIGjWQwc3cqPTbzAqDH8tQ5GOFAzlz42SHo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4DHRWOOUPZPUA3FKN3IDWRXEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264516309@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d33ba9b46bee_75673f9cb0ecd95c703494"; 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/YQlDzxvADODmPTajyBP1MgUPsls>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 01:06:38 -0000

----==_mimepart_5d33ba9b46bee_75673f9cb0ecd95c703494
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



>    if (no ack-eliciting packets in flight &&
-      (endpoint is server or has 1-RTT keys)):
+      (endpoint is server or has 1-RTT keys
+       or has received Handshake ACK)):

we should be consistent about || vs or and && vs 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/2907#pullrequestreview-264516309
----==_mimepart_5d33ba9b46bee_75673f9cb0ecd95c703494
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2907#discussion_r305598070">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;    if (no ack-eliciting packets in flight &amp;&amp;
-      (endpoint is server or has 1-RTT keys)):
+      (endpoint is server or has 1-RTT keys
+       or has received Handshake ACK)):
</pre>
<p>we should be consistent about || vs or and &amp;&amp; vs and</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK4GSSD2OMCIVCSVXKLQAOZBXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDFVI#pullrequestreview-264516309">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ZUY6DJWW46WVFQO3QAOZBXANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2F73VCTKBXBSWZATDQAOZBXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDFVI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4GSSD2OMCIVCSVXKLQAOZBXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDFVI#pullrequestreview-264516309",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4GSSD2OMCIVCSVXKLQAOZBXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDFVI#pullrequestreview-264516309",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d33ba9b46bee_75673f9cb0ecd95c703494--


From nobody Sat Jul 20 18:14:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 56D15120096 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:14:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aq3vc5eLyMvh for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:14:38 -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 9822412003F for <quic-issues@ietf.org>; Sat, 20 Jul 2019 18:14:38 -0700 (PDT)
Date: Sat, 20 Jul 2019 18:14:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563671677; bh=LSKEspOfsWvg5IMDw467Fjj00YKUPUcPXKt1AiXGOoY=; h=Date:From:To:Subject:From; b=ctTlXuzlkXmSyHw8BDwrMcUNwSHZVC76LyBWKJCMKln4gNeKc6X6Pv39zfmiGfv1I /lY+133SW1mbR8Pv/qERR2Kx63koRtDCEJGDQ7P9eRTjxpZIphxDaIr1jzgSpgU8Vx Dvt3WF7es2iN0bgSFpkauYQU6TGgVJCYuoV8z1AE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/26ecb8-b97794@github.com>
Subject: [quicwg/base-drafts] b97794: Remove ||
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f9y55E_84GOHxZfLir3_oIJo7GM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 01:14:40 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: b9779401d24a9d1c9c98088dd3dce72df04a7730
      https://github.com/quicwg/base-drafts/commit/b9779401d24a9d1c9c98088dd3dce72df04a7730
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Remove ||



From nobody Sat Jul 20 18:14:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1C945120096 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:14:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id S0knRuAlUiWN for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:14: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 867D912003F for <quic-issues@ietf.org>; Sat, 20 Jul 2019 18:14:45 -0700 (PDT)
Date: Sat, 20 Jul 2019 18:14:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563671684; bh=ZASwggmdS1qv3ojYMl+8p4r3tKK2Cu3UC9z1kWbpayk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XHMxEVNuis9PoXxLxHOh8+wNpWSFfbu0umejFw9n6sZaSuGglu3qsFggpx2nb4tGo c+R8zPyOP/z8MyiI1MtdNk9P/UAftBlAB+9xiZOmFLXo+fDQHohlK7wj5y/nlCNkoD 2NNGT0ii3c54AT6DK37VZ/YZSGOJXAZerMGFXaxU=
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/2907/push/3838502611@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d33bc84cadf1_4ed73fe838ccd96c5173d4"; 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/GaRNTXcfUB_4Xd7rQZ3F14OCxxA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 01:14:47 -0000

----==_mimepart_5d33bc84cadf1_4ed73fe838ccd96c5173d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

b9779401d24a9d1c9c98088dd3dce72df04a7730  Remove ||


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907/files/26ecb8f304b977f753cb9afedd25e843600146f3..b9779401d24a9d1c9c98088dd3dce72df04a7730

----==_mimepart_5d33bc84cadf1_4ed73fe838ccd96c5173d4
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/b9779401d24a9d1c9c98088dd3dce72df04a7730">b977940</a>  Remove ||</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/2907/files/26ecb8f304b977f753cb9afedd25e843600146f3..b9779401d24a9d1c9c98088dd3dce72df04a7730?email_source=notifications&amp;email_token=AFTOJK2G4OLEL5XDXSNK343QAO2AJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQNJQGI3DCMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6HMZX3M5T6K4II6GDQAO2AJANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55OT55XHBYZ32TQHTQAO2AJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQNJQGI3DCMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907/files/26ecb8f304b977f753cb9afedd25e843600146f3..b9779401d24a9d1c9c98088dd3dce72df04a7730?email_source=notifications\u0026email_token=AFTOJK2G4OLEL5XDXSNK343QAO2AJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQNJQGI3DCMI",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/26ecb8f304b977f753cb9afedd25e843600146f3..b9779401d24a9d1c9c98088dd3dce72df04a7730?email_source=notifications\u0026email_token=AFTOJK2G4OLEL5XDXSNK343QAO2AJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTQNJQGI3DCMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d33bc84cadf1_4ed73fe838ccd96c5173d4--


From nobody Sat Jul 20 18:15:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 69F21120096 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:15:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JCxlwDJh6RsQ for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:15: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 DE51012003F for <quic-issues@ietf.org>; Sat, 20 Jul 2019 18:15:49 -0700 (PDT)
Date: Sat, 20 Jul 2019 18:15:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563671749; bh=anWvWBzztOP42Q1rM4bYZSUVQtXLav8bct/HqnJgW7s=; h=Date:From:To:Subject:From; b=F8geFOvlN91t89ufH63sgIOrzmL0a8uP5RnQKbR781kbXwg+yLGLtm9mlGR7W4jfU 1RzQ1ZborphAd7I5NnygtNe0DcF5b2bDkDiCOK3B0HzbOfURPrTCflv06vUtyyNWP/ 8w2X37cWAPqWTdgPxUgHQwrCWcZiC8cVgu4jnZ2g=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/caa362-07d3d4@github.com>
Subject: [quicwg/base-drafts] 07d3d4: Script updating gh-pages from b9779401. [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/FKzdEJgC6nypHbDn7AsyaCqGTjg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 01:15:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 07d3d41b0ef5b070d29997c1f25080d95b11ecf0
      https://github.com/quicwg/base-drafts/commit/07d3d41b0ef5b070d29997c1f25080d95b11ecf0
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-fix-loss-detection/draft-ietf-quic-http.html
    M ianswett-fix-loss-detection/draft-ietf-quic-http.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-invariants.html
    M ianswett-fix-loss-detection/draft-ietf-quic-invariants.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-qpack.html
    M ianswett-fix-loss-detection/draft-ietf-quic-qpack.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.html
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-tls.html
    M ianswett-fix-loss-detection/draft-ietf-quic-tls.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.html
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b9779401. [ci skip]



From nobody Sat Jul 20 18:54:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F03A1120033 for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:54:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 SdR4gzLR6RDg for <quic-issues@ietfa.amsl.com>; Sat, 20 Jul 2019 18:54: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 1811D120018 for <quic-issues@ietf.org>; Sat, 20 Jul 2019 18:54:07 -0700 (PDT)
Date: Sat, 20 Jul 2019 18:54:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563674045; bh=f0ixmpAoujGryraBamzIVITsURyq1I/6LyRWA6TyAXM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zjEkklgGQrDLUj/UG+9kqnnjqdMUreeAABjWl9gR0lQLo8+rcI8UUbSksmp50OZPy ZDCH+KQHRdeSuXOqK/oy8R9JZ9pJ1UkpWeezxub3p86IP/m15pRgulvFO/qgBVy9Vn JRui/w0GZpCaDusugxHpyOJS57Qn1i6f2A9d7e/4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EH4ZF625FYSAAHOF3ID4D3EVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264517063@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d33c5bde1c65_1e8b3f85920cd96822060a4"; 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/jIjM-PRDM0eg2NSEaXt9jRgOYRc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 01:54:09 -0000

----==_mimepart_5d33c5bde1c65_1e8b3f85920cd96822060a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -1175,7 +1175,7 @@ GetEarliestLossTime():
   space = Initial
   for pn_space in [ Handshake, ApplicationData ]:
     if (loss_time[pn_space] != 0 &&
-        (time == 0 || loss_time[pn_space] < time)):
+        (time == 0 or loss_time[pn_space] < time)):

so && for and and "or" for || ?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907#pullrequestreview-264517063
----==_mimepart_5d33c5bde1c65_1e8b3f85920cd96822060a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2907#discussion_r305598765">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1175,7 +1175,7 @@ GetEarliestLossTime():
   space = Initial
   for pn_space in [ Handshake, ApplicationData ]:
     if (loss_time[pn_space] != 0 &amp;&amp;
-        (time == 0 || loss_time[pn_space] &lt; time)):
+        (time == 0 or loss_time[pn_space] &lt; time)):
</pre>
<p>so &amp;&amp; for and and "or" for || ?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK2QVYAF2HGQEOUPMATQAO6T3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDLRY#pullrequestreview-264517063">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZNDPZ7AAB2XZELMJ3QAO6T3ANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ72LGFSUNYIKH6URTQAO6T3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDLRY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2QVYAF2HGQEOUPMATQAO6T3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDLRY#pullrequestreview-264517063",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2QVYAF2HGQEOUPMATQAO6T3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CDLRY#pullrequestreview-264517063",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d33c5bde1c65_1e8b3f85920cd96822060a4--


From nobody Sun Jul 21 04:29:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 88EC71200B5 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:29:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8BSb6iG4lRjU for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:29:33 -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 26AFA12009C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 04:29:33 -0700 (PDT)
Date: Sun, 21 Jul 2019 04:29:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563708572; bh=gTGyEICQ96uEXBM3tohLZD7DLZD4WfnppMgNWVnGFAc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TYWV5BB6SEm2unUa9AyXxqQVH98t4HglBRYec/inTlrzyhQJFTdT2VEKCI1phFJV3 WxlFYWduwt1++VUVf6pR0t/p2hi9PBT9le2+AIRqU/FixyQgNT8m6Mq7YAdxOLZ/iv aZ/ZEt8IV2LXw7ao/0hDnO9gGOC+pYLyRgfC++dA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRUZB2VZYIPDLEN553IF7RZEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264532132@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d344c9c1606a_285a3fd7c14cd9602136715"; 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/_UU9UjuHeQM5Qo-Zp5SZ3pdO1qg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 11:29:34 -0000

----==_mimepart_5d344c9c1606a_285a3fd7c14cd9602136715
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -1175,7 +1175,7 @@ GetEarliestLossTime():
   space = Initial
   for pn_space in [ Handshake, ApplicationData ]:
     if (loss_time[pn_space] != 0 &&
-        (time == 0 || loss_time[pn_space] < time)):
+        (time == 0 or loss_time[pn_space] < time)):

Prior to this PR, most of the pseudocode was && and || I realize, so I'm going back to 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/2907#discussion_r305613331
----==_mimepart_5d344c9c1606a_285a3fd7c14cd9602136715
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2907#discussion_r305613331">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1175,7 +1175,7 @@ GetEarliestLossTime():
   space = Initial
   for pn_space in [ Handshake, ApplicationData ]:
     if (loss_time[pn_space] != 0 &amp;&amp;
-        (time == 0 || loss_time[pn_space] &lt; time)):
+        (time == 0 or loss_time[pn_space] &lt; time)):
</pre>
<p>Prior to this PR, most of the pseudocode was &amp;&amp; and || I realize, so I'm going back to 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/2907?email_source=notifications&amp;email_token=AFTOJK3UYUKOYUMV7VDUG33QARCBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHBJA#discussion_r305613331">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZHPO3CIOXPEN6NLPDQARCBZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5SKRKCFIAKX73COOTQARCBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHBJA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK3UYUKOYUMV7VDUG33QARCBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHBJA#discussion_r305613331",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK3UYUKOYUMV7VDUG33QARCBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHBJA#discussion_r305613331",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d344c9c1606a_285a3fd7c14cd9602136715--


From nobody Sun Jul 21 04:30:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0E9E21200B5 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:30:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qpzxfvTsKlxQ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:30: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 4CBD912009C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 04:30:51 -0700 (PDT)
Date: Sun, 21 Jul 2019 04:30:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563708650; bh=rfioCUOTKP/iiLwW/Nb9qsBbH2nAFcPHBsbBMLBM+V0=; h=Date:From:To:Subject:From; b=LzDKonEn8/r2uYMlU99gDsXcr5zha2UBLB7zoRllLfkZ1DsNg3uHrdLeJ4mqaXC6b ZAZrDlcsYmObmbgzFp++6PAvkMSEQuEYMSEp5qs6yZ6Gp8qoTAdi2UUMLPmrCh01sW r4ejgypjtxlV6gyWWn1solwBlN4pMn2V7YrDGT18=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/b97794-f079e9@github.com>
Subject: [quicwg/base-drafts] f079e9: Use || and && consistently
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/P1sUUerFu-IPlyXQn6aNxkcM4so>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 11:30:53 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: f079e9dc3664d2abe4e5a0b1b615c826fbd9be15
      https://github.com/quicwg/base-drafts/commit/f079e9dc3664d2abe4e5a0b1b615c826fbd9be15
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Use || and && consistently



From nobody Sun Jul 21 04:31:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 72351120043 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:31:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zeWWmRBd1DY9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:30: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 9B4C012009C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 04:30:59 -0700 (PDT)
Date: Sun, 21 Jul 2019 04:30:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563708658; bh=Te91zQ9aeDyMyGqfU9fbLU8VLmZQ4C13HC/SfszMRlM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wUozPAzgHb44xlRh21lYqqY3LqKak635dEJRi93F0oArksyuRMsgeyeuVCxTWnoSk joVptJb60KV/SYo5GIJ2XnJFPZk0Ur9B7Spn1mRqwZ8q7Q65v+ehXItLNhfIccf41E xTNGz+n8v/GnIA9LTliNdJOXWU32+H5Zi6E2J8Dc=
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/2907/push/3839099957@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d344cf2b4c5f_71813fbe25ecd95c12723a"; 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/jaMKtUcg0szA0BrVPsaI9vl2oqo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 11:31:01 -0000

----==_mimepart_5d344cf2b4c5f_71813fbe25ecd95c12723a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

f079e9dc3664d2abe4e5a0b1b615c826fbd9be15  Use || and && consistently


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907/files/b9779401d24a9d1c9c98088dd3dce72df04a7730..f079e9dc3664d2abe4e5a0b1b615c826fbd9be15

----==_mimepart_5d344cf2b4c5f_71813fbe25ecd95c12723a
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/f079e9dc3664d2abe4e5a0b1b615c826fbd9be15">f079e9d</a>  Use || and &amp;&amp; consistently</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/2907/files/b9779401d24a9d1c9c98088dd3dce72df04a7730..f079e9dc3664d2abe4e5a0b1b615c826fbd9be15?email_source=notifications&amp;email_token=AFTOJK52ZLR2Z2P2NESBMQTQARCHFA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSMBZHE4TKNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4HUS6CSKAY7XWWGVDQARCHFANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4XEYTZIDYWN7RKC7LQARCHFA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSMBZHE4TKNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907/files/b9779401d24a9d1c9c98088dd3dce72df04a7730..f079e9dc3664d2abe4e5a0b1b615c826fbd9be15?email_source=notifications\u0026email_token=AFTOJK52ZLR2Z2P2NESBMQTQARCHFA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSMBZHE4TKNY",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/b9779401d24a9d1c9c98088dd3dce72df04a7730..f079e9dc3664d2abe4e5a0b1b615c826fbd9be15?email_source=notifications\u0026email_token=AFTOJK52ZLR2Z2P2NESBMQTQARCHFA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSMBZHE4TKNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d344cf2b4c5f_71813fbe25ecd95c12723a--


From nobody Sun Jul 21 04:32:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 86AF3120116 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:32:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZzZI5Yd1hJFo for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 04:32: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 41988120043 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 04:32:14 -0700 (PDT)
Date: Sun, 21 Jul 2019 04:32:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563708733; bh=sf/6VfO0RotIYqC/usi2wBj/QjuEVHrtE7dcSveayug=; h=Date:From:To:Subject:From; b=Ium2u2gRJy4qm1NG5Qj3nHguKxGyIKkYqZ8Tb/7RAOO19i9K0zqhu9JdVeiKtKGD2 qM/m4t3xmz5YXtkNE5KST0Om8Sk9X7it5Zx6QwAWUti2sEE+dUMGsNI3Dfw3/BwEaW Bgv8SGzu7NluCAbhf7smMBBf0wVS12ZAg5p27mYg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/07d3d4-3d4665@github.com>
Subject: [quicwg/base-drafts] 3d4665: Script updating gh-pages from f079e9dc. [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/42XpwrXQXKj1MTpfznUJkxdiNAw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 11:32:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3d4665c8b0670559fd65d5660be48ff2321bcc4e
      https://github.com/quicwg/base-drafts/commit/3d4665c8b0670559fd65d5660be48ff2321bcc4e
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.html
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f079e9dc. [ci skip]



From nobody Sun Jul 21 05:04:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6BC2F12011B for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:04:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PFe2QgEVwRQm for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:04:19 -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 F409C12004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:04:18 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:04:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563710657; bh=1USAwfXpl4jAattVP47pi6T6Cl8XcfAJXepWtwNmDXQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kZUSPRdGPpaWJDEAUJvLMWuZ4fMm5ELu8W3yjGlPxwWOirO9rsmKfaqO97OkfLvQ4 nM3inFBW0Ya0Al62aNnGyZhbFCSHoIFf2sHsw6FcBOENgOce2K1D+f7xEJQk046iYC djAKE+pjejAwyHY9nuk7MOWPzL5sfzklC/tHM6yw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64N73KKQE7RFBZH6F3IGDUDEVBNHHBX2UGWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2900/issue_event/2498012594@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2900@github.com>
References: <quicwg/base-drafts/issues/2900@github.com>
Subject: Re: [quicwg/base-drafts] Small clarification in 12.2 Coalescing Packets (#2900)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3454c1b008b_48843fd19bccd95c10507a"; 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/sxoHGDwpXFph1p8h_jS2J08hp9o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:04:20 -0000

----==_mimepart_5d3454c1b008b_48843fd19bccd95c10507a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2900.

-- 
You are receiving 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/2900#event-2498012594
----==_mimepart_5d3454c1b008b_48843fd19bccd95c10507a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="468354740" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2900" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2900/hovercard" href="https://github.com/quicwg/base-drafts/issues/2900">#2900</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/2900?email_source=notifications&amp;email_token=AFTOJKZWZI5ZJKJGZM7GR3TQARGEDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKLMQ#event-2498012594">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK75VNJAJQ2MONJT3OLQARGEDANCNFSM4ID3FA4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7QKGAGB7FY7DRTMLTQARGEDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKLMQ.gif" height="1" width="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/2900?email_source=notifications\u0026email_token=AFTOJKZWZI5ZJKJGZM7GR3TQARGEDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKLMQ#event-2498012594",
"url": "https://github.com/quicwg/base-drafts/issues/2900?email_source=notifications\u0026email_token=AFTOJKZWZI5ZJKJGZM7GR3TQARGEDA5CNFSM4ID3FA42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKLMQ#event-2498012594",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3454c1b008b_48843fd19bccd95c10507a--


From nobody Sun Jul 21 05:05:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 25B0D12011E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:05:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.908
X-Spam-Level: 
X-Spam-Status: No, score=-6.908 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cVoTCjJ57YXs for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:05:00 -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 AFE2A12004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:05:00 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:04:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563710700; bh=7jM3l/mH5ortFH52aoaVTrpeWYVcNr1PoS1lstYOy34=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RYAacZrVJC3F2H3yG8vXFji8/m1rpTITh2TVwDuRk1Z1ePmwy+e6Qoi3j/fUr7eRR gsAHrYwXOYoSW1BLDsDAmnwAtBKzgWHYT8MeObYw1Rr0hpOu7KMHTIVY/9i071+q+e OGaGqoywQuUAScDur+H8y4X2OfbHHb6SzBaeFrgg=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3I54OCC4N5YGYE63V3IGDWXEVBNHHBXYFAF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2894/513547821@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2894@github.com>
References: <quicwg/base-drafts/issues/2894@github.com>
Subject: Re: [quicwg/base-drafts] In Initial and Handshake packets, knowing undecryptable packets could accelerate handshakes with loss (#2894)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3454ebe63e9_1ff03fe39d2cd95c938b1"; 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/ON16PtNUTbS9mXPpSx9U54cA_Q8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:05:02 -0000

----==_mimepart_5d3454ebe63e9_1ff03fe39d2cd95c938b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

SG, v2-ing and closing.

-- 
You are receiving 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/2894#issuecomment-513547821
----==_mimepart_5d3454ebe63e9_1ff03fe39d2cd95c938b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>SG, v2-ing and closing.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2894?email_source=notifications&amp;email_token=AFTOJKYUOSECQOFA3C4FACTQARGGXA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OB4LI#issuecomment-513547821">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLQYCH534BQDZQI2TQARGGXANCNFSM4IC25IVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7W2JK3IXX3CHVR4ATQARGGXA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OB4LI.gif" height="1" width="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/2894?email_source=notifications\u0026email_token=AFTOJKYUOSECQOFA3C4FACTQARGGXA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OB4LI#issuecomment-513547821",
"url": "https://github.com/quicwg/base-drafts/issues/2894?email_source=notifications\u0026email_token=AFTOJKYUOSECQOFA3C4FACTQARGGXA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OB4LI#issuecomment-513547821",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3454ebe63e9_1ff03fe39d2cd95c938b1--


From nobody Sun Jul 21 05:05:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CE6FB12004E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:05:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7gUTDweV7acA for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:05: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 08E8912011B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:05:01 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:05:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563710700; bh=CLPA0uBh6MQ6/GP64DNlEaSHw5W+um4Yofs5Ji/JQmo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bJ6oYBZ38JGgfTPt4aSwneWNnr62NFoKC233c+OJPIovunJbTICDAi3RbfvrXJlxl QE1mKGch/hKhvCO/QGmviByu7IwRxbR4oe43077VNPDLxUKFr9DbJsAAJ35B/1SEHe dlLyzEYw2s50iJoLKN+0mhpk+gxMWGUrXDzwwJN4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3I54OCC4N5YGYE63V3IGDWXEVBNHHBXYFAF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2894/issue_event/2498012840@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2894@github.com>
References: <quicwg/base-drafts/issues/2894@github.com>
Subject: Re: [quicwg/base-drafts] In Initial and Handshake packets, knowing undecryptable packets could accelerate handshakes with loss (#2894)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3454ecdb6_5db03fd005ccd96c97145"; 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/fdwVOHl46N95tnARqBAy0I2zlTk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:05:03 -0000

----==_mimepart_5d3454ecdb6_5db03fd005ccd96c97145
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2894.

-- 
You are receiving 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/2894#event-2498012840
----==_mimepart_5d3454ecdb6_5db03fd005ccd96c97145
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467705903" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2894" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2894/hovercard" href="https://github.com/quicwg/base-drafts/issues/2894">#2894</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/2894?email_source=notifications&amp;email_token=AFTOJKZTTJREA65BGPP6VUDQARGGZA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKNKA#event-2498012840">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JUKIWEGJ4SILYIIDQARGGZANCNFSM4IC25IVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RDAH6TK57AULAV6TQARGGZA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKNKA.gif" height="1" width="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/2894?email_source=notifications\u0026email_token=AFTOJKZTTJREA65BGPP6VUDQARGGZA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKNKA#event-2498012840",
"url": "https://github.com/quicwg/base-drafts/issues/2894?email_source=notifications\u0026email_token=AFTOJKZTTJREA65BGPP6VUDQARGGZA5CNFSM4IC25IVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTSKNKA#event-2498012840",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3454ecdb6_5db03fd005ccd96c97145--


From nobody Sun Jul 21 05:17:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5FE8B12008C for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:17:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id c1bjNPif2eN3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:17:02 -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 A52FD12004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:17:02 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:17:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563711421; bh=zwxWYQGG/1pSVqT1IvhoUYj/TKBgAAuwIO5C1OOIack=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ijCtVUofFOTVF2KVmH14M4wZ2wCNx4iaASbLnn0nWeW/vRk6XNb/DgR6pVsq4NGq0 yuugr/oHtva6tOmyMQIVYp37AjwQafg+L7IL7eLfHtCC2UitrWmOTa4ERKHLLBqo/r 7r3Kh56LKgAGdZs44CiWR2x9XFqqRAzAaAeWrR5o=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FM2V226STNPOWXLF3IGFD3EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264534049@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3457bdd2f73_36023f81046cd968203835"; 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/ppN3apiYd3kIGc-byrcqJZUNRRk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:17:04 -0000

----==_mimepart_5d3457bdd2f73_36023f81046cd968203835
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -629,6 +629,14 @@ MAY use alternate strategies for determining the content of probe packets,
 including sending new or retransmitted data based on the application's
 priorities.
 
+If the handshake is complete, but not confirmed (see Section 4.1.1 and Section

I think it might make sense to work this into the "Handshakes and New Paths" section above?

The way I'm now thinking of this is: It's the client's job to drive the handshake to confirmation, and here's what is necessary to ensure that occurs...  Does that 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/pull/2881#pullrequestreview-264534049
----==_mimepart_5d3457bdd2f73_36023f81046cd968203835
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2881#discussion_r305615190">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -629,6 +629,14 @@ MAY use alternate strategies for determining the content of probe packets,
 including sending new or retransmitted data based on the application&#39;s
 priorities.
 
+If the handshake is complete, but not confirmed (see Section 4.1.1 and Section
</pre>
<p>I think it might make sense to work this into the "Handshakes and New Paths" section above?</p>
<p>The way I'm now thinking of this is: It's the client's job to drive the handshake to confirmation, and here's what is necessary to ensure that occurs...  Does that 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/pull/2881?email_source=notifications&amp;email_token=AFTOJK7BC4ETOBVMJ4D2QCDQARHT3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHQII#pullrequestreview-264534049">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJIKJFNM776C6BSSDQARHT3ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6OTSCVXGJ3BTWHBTLQARHT3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHQII.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK7BC4ETOBVMJ4D2QCDQARHT3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHQII#pullrequestreview-264534049",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK7BC4ETOBVMJ4D2QCDQARHT3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CHQII#pullrequestreview-264534049",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3457bdd2f73_36023f81046cd968203835--


From nobody Sun Jul 21 05:18:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D00C912008C for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:18:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UodHug5l4rRZ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:18: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 3BF8E12004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:18:32 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:18:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563711511; bh=8if6LRbkZ+dkIFhpnzOFAuEfJlBWrmOpmxpM/XxeAfc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CLoxyAEwPl4QGbqQ22ELMXud3oNIZLZp1Z8ROySzG3PJO+wwMEk4NucwhHXRChzJE IbBJzM2yTSFvEmrgXOOSu/xVgGbcBgPpuY/6BRQtbZAhtGWQAYruw4N4Zoc6QNMG36 A8PCREtSv7RP9i90xru8r4+d+KXLf3qik8gMCVxk=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFR5C2SNZGZWTF23V3IGFJPEVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2895/513548754@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2895@github.com>
References: <quicwg/base-drafts/issues/2895@github.com>
Subject: Re: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3458174ef13_3a463fef380cd96c18412"; 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/VRSGisggcRNDlflSZw7XJqydWpI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:18:34 -0000

----==_mimepart_5d3458174ef13_3a463fef380cd96c18412
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It doesn't help that much, but it's a lot more consistent with the rest of the PTO design, so I think it's preferable.

-- 
You are receiving 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/2895#issuecomment-513548754
----==_mimepart_5d3458174ef13_3a463fef380cd96c18412
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It doesn't help that much, but it's a lot more consistent with the rest of the PTO design, so I think it's preferable.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2895?email_source=notifications&amp;email_token=AFTOJKYJCLZNILJR6SQJYSDQARHZPA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCDUQ#issuecomment-513548754">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK562XQWSQOFPEKMGH3QARHZPANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4EFE56MZKNM6ISK2LQARHZPA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCDUQ.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJKYJCLZNILJR6SQJYSDQARHZPA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCDUQ#issuecomment-513548754",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJKYJCLZNILJR6SQJYSDQARHZPA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCDUQ#issuecomment-513548754",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3458174ef13_3a463fef380cd96c18412--


From nobody Sun Jul 21 05:22:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 656FE12008C for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:22:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Q5Pmx0ClriHf for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:22: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 CDC7E12004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:22:33 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:22:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563711752; bh=kfNTqsKt4gJv04Ou3a8Nhtxm9cQzFr0eqNO7fgVuQ6s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w9MVoJ55nY7yd07Ta2ixLWeFAJyy0yyNq2fbabg/7cG5KrhgJDpAf9kVMaatZgbLK D2efAVbTjQP7ldR6cKvnGTvH2OWkcqgEB+NohBkEpZjl+fhKzTBRdQkPv9aI02r3YQ 24haSdCthFbsJrtb2GpiDqBd8jClwlJnyqiSKvcQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IAVOK3D5CFFEEJAF3IGFYREVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2895/513549015@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2895@github.com>
References: <quicwg/base-drafts/issues/2895@github.com>
Subject: Re: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d345908c5fc4_70003fbe8c8cd9649238f"; 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/1HsbimuofW2F0Xe2Ka5GhRzxnxM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:22:35 -0000

----==_mimepart_5d345908c5fc4_70003fbe8c8cd9649238f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In discussing our PTO strategy yesterday I realized that you only send a packet if you have something ack- eliciting outstanding. Would you not want to send that again?

-- 
You are receiving 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/2895#issuecomment-513549015
----==_mimepart_5d345908c5fc4_70003fbe8c8cd9649238f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In discussing our PTO strategy yesterday I realized that you only send a packet if you have something ack- eliciting outstanding. Would you not want to send that again?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2895?email_source=notifications&amp;email_token=AFTOJKZU5BCZCHRDWWDJEULQARIIRA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCFVY#issuecomment-513549015">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK25BOQKPPOKOPXQYHTQARIIRANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6Z72UDGUAZ2KDBBKLQARIIRA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCFVY.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJKZU5BCZCHRDWWDJEULQARIIRA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCFVY#issuecomment-513549015",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJKZU5BCZCHRDWWDJEULQARIIRA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCFVY#issuecomment-513549015",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d345908c5fc4_70003fbe8c8cd9649238f--


From nobody Sun Jul 21 05:24:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EBC1E1200B6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:24:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id w4GJtUdtfDdx for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:24: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 B7D3212008C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:24:56 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:24:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563711895; bh=6QdX9Ouami6XISzlC00xRM4fH/RVJhR7SsVpaGoYCf4=; h=Date:From:To:Subject:From; b=YRpkbl6NxVpYcNSwBtPapWzPoTW4PG6ScZGttxvCvLzM30nxe/+feQyBE0cJuf72a TZVr3G7OysulbBv5fTzTCaMy3FvXvfxaQ7B9IQ852hVbyGXXjEeKJ2qPVoy9Vugnya oNSEr6Dlrm0kVUk2wPLK0WQbvl82r17RbLHk9wZ8=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-ack-eliciting/000000-407928@github.com>
Subject: [quicwg/base-drafts] 407928: PTO should always send an ack-eliciting packet
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7VjLr5PhncFfGJlwAUlVGpsya84>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:24:58 -0000

  Branch: refs/heads/ianswett-pto-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 407928b26fd9e4fcb2efbef4f70a39eb8a466cd6
      https://github.com/quicwg/base-drafts/commit/407928b26fd9e4fcb2efbef4f70a39eb8a466cd6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  PTO should always send an ack-eliciting packet



From nobody Sun Jul 21 05:26:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F312A12004E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:26:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KK8aAlCXPQqe for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:26: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 681B9120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:26:04 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:26:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563711963; bh=IzGuQ2JNQzfVbptWsp6G7iM6e4fLIJNDhYd6Je0HOKs=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=JE+2c0Gdqb754vfhzkm+NS24xU8N+RJKA0LnwXRCBONk9xX7tcMzsE820dKe6nmaf 3OHClXizQgKMZJN0dLtRaXE0erbDzex7deY9/GG+qjqOO+JLGTnXTxke3A1QsoNvjI fNkvjh+Mep8fWoWCSJ1gtEMuDA8Q3bJAWDuaBVHY=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3HQUTQF4INTE26TQF3IGGFXEVBNHHBYD3YSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2912@github.com>
Subject: [quicwg/base-drafts] PTO should always send an ack-eliciting packet (#2912)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3459db46507_53e33fa5e24cd96c776c3"; 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/KYRISRBy8Nm1-JAdn_Q9o-Da1bw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:26:06 -0000

----==_mimepart_5d3459db46507_53e33fa5e24cd96c776c3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixed #2895 which discusses sending an ack-eliciting packet instead of a PADDING only packet to unblock the server.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2912

-- Commit Summary --

  * PTO should always send an ack-eliciting packet

-- File Changes --

    M draft-ietf-quic-recovery.md (22)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2912.patch
https://github.com/quicwg/base-drafts/pull/2912.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/2912

----==_mimepart_5d3459db46507_53e33fa5e24cd96c776c3
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 #2895.">Fixed</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467708634" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2895" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2895/hovercard" href="https://github.com/quicwg/base-drafts/issues/2895">#2895</a> which discusses sending an ack-eliciting packet instead of a PADDING only packet to unblock the server.</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/2912'>https://github.com/quicwg/base-drafts/pull/2912</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>PTO should always send an ack-eliciting packet</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2912/files#diff-0">draft-ietf-quic-recovery.md</a>
    (22)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2912.patch'>https://github.com/quicwg/base-drafts/pull/2912.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2912.diff'>https://github.com/quicwg/base-drafts/pull/2912.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/2912?email_source=notifications&amp;email_token=AFTOJKZA5MD72NFYWHXB2GLQARIVXA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPPCJQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6JQGNWZ7FSFFNC6NDQARIVXANCNFSM4IFSDGOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DB5MUGHITPZEZXULQARIVXA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPPCJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJKZA5MD72NFYWHXB2GLQARIVXA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPPCJQ",
"url": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJKZA5MD72NFYWHXB2GLQARIVXA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPPCJQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3459db46507_53e33fa5e24cd96c776c3--


From nobody Sun Jul 21 05:26:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B6581200B6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:26:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eCVlzrCvzzR1 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:26: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 D4D89120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:26:12 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:26:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563711971; bh=hsoGUGfhajXbOBk6ohb339W1ELMJK0K4I3jhPQU5aNE=; h=Date:From:To:Subject:From; b=Xx7dgVSmfBURuGZrcaNuLGhzyi3mGR1QW4mx15ti9pjC2IEruyY2/81uP+kK+bm4M 1WV9sJkpl9/osmvP3XwXk68dn+aXAbtSMHSSscJmlvhjSkEzH1ReP8SNADuqlGNuN2 LoVZsWXZQVEDM6dNV/OU9qlZ6d3O2/1lULe1PJ0s=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3d4665-b48f35@github.com>
Subject: [quicwg/base-drafts] b48f35: Script updating gh-pages from 407928b2. [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/xcyjta1onMFL6r7aFgK5H9d-mNE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:26:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b48f35f2a21b2d4b81a6d21b54bdf3e8a6e93df7
      https://github.com/quicwg/base-drafts/commit/b48f35f2a21b2d4b81a6d21b54bdf3e8a6e93df7
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    A ianswett-pto-ack-eliciting/draft-ietf-quic-http.html
    A ianswett-pto-ack-eliciting/draft-ietf-quic-http.txt
    A ianswett-pto-ack-eliciting/draft-ietf-quic-invariants.html
    A ianswett-pto-ack-eliciting/draft-ietf-quic-invariants.txt
    A ianswett-pto-ack-eliciting/draft-ietf-quic-qpack.html
    A ianswett-pto-ack-eliciting/draft-ietf-quic-qpack.txt
    A ianswett-pto-ack-eliciting/draft-ietf-quic-recovery.html
    A ianswett-pto-ack-eliciting/draft-ietf-quic-recovery.txt
    A ianswett-pto-ack-eliciting/draft-ietf-quic-tls.html
    A ianswett-pto-ack-eliciting/draft-ietf-quic-tls.txt
    A ianswett-pto-ack-eliciting/draft-ietf-quic-transport.html
    A ianswett-pto-ack-eliciting/draft-ietf-quic-transport.txt
    A ianswett-pto-ack-eliciting/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 407928b2. [ci skip]



From nobody Sun Jul 21 05:28:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EE25112004E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:28:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id barNVkhdAO6Y for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:28:11 -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 BEC68120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:28:11 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:28:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563712091; bh=n45XSDyjz8IeB3i6iXN2h75lR+8Rj0G6thSI0B1+Kjs=; h=Date:From:To:Subject:From; b=OYyZpGJmMiRqVtndM4pKqpd7kS7Im0BH59shYxraDLJTFc7R9UxaqI8CC9k72MxVf WHK4isJaDSvDBRsn5Dsk1CJZZvASio4Lcjul9FgUOHUGJBEBZFAZsLkxuqixqiSUL7 8mGDlH/KptXnXB5RTDcm3fFpSGK4vQoXN+JATpWk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b48f35-c89b29@github.com>
Subject: [quicwg/base-drafts] c89b29: Script updating issues at 2019-07-21T12:28:04Z. [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/05Kpi_ftJ35eZvaAW-Kyv0H47Jg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:28:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c89b297cabb7117dfa2b726353187ed1cdef165a
      https://github.com/quicwg/base-drafts/commit/c89b297cabb7117dfa2b726353187ed1cdef165a
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-21T12:28:04Z. [ci skip]



From nobody Sun Jul 21 05:29:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9208412008C for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:29:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WZhejS-zHSuX for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 05:29: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 7C70712004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 05:29:00 -0700 (PDT)
Date: Sun, 21 Jul 2019 05:28:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563712139; bh=TAfi5JwXy2ISDCF9vXupFhVYnbg8HMeGaXLE2lbVbdk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eP8MDZKVsPUZkRp43IPn3ofjtbn8dX/hzaDEgmhBHORxabFxhp8MbImvneHFnWF9b e5DxLgDjqQJ65oqM2Faw6b765qzCukz9NS4YNu+sGBM5FdLBNEmDYN4IoMTPIP4gd9 qWyw5yE+ctWzSp111HCldjEDGW5wcqkyVZAcuX/o=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OJXHAJ6SLXRREA753IGGQXEVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2895/513549825@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2895@github.com>
References: <quicwg/base-drafts/issues/2895@github.com>
Subject: Re: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d345a8bb830e_64843f851b6cd95c399fc"; 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/qq3Qny0WpMVjKO00_pX0k0X6zMw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 12:29:03 -0000

----==_mimepart_5d345a8bb830e_64843f851b6cd95c399fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Sometimes you can't send that again once the handshake is confirmed(there's an example in the text, but the easiest is something unreliable like DATAGRAM).

Prior to handshake confirmation, the client needs to drive the handshake to confirmation so it may have to send something, as your PR #2881 discusses

-- 
You are receiving 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/2895#issuecomment-513549825
----==_mimepart_5d345a8bb830e_64843f851b6cd95c399fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Sometimes you can't send that again once the handshake is confirmed(there's an example in the text, but the easiest is something unreliable like DATAGRAM).</p>
<p>Prior to handshake confirmation, the client needs to drive the handshake to confirmation so it may have to send something, as your PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465613105" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2881" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2881/hovercard" href="https://github.com/quicwg/base-drafts/pull/2881">#2881</a> discusses</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2895?email_source=notifications&amp;email_token=AFTOJK2UO4OQFMRUUIE5N6TQARJAXA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCMAI#issuecomment-513549825">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZHQKX74CISJGUZCVDQARJAXANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6WTSK6ALOHONZGSUTQARJAXA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCMAI.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJK2UO4OQFMRUUIE5N6TQARJAXA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCMAI#issuecomment-513549825",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJK2UO4OQFMRUUIE5N6TQARJAXA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OCMAI#issuecomment-513549825",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d345a8bb830e_64843f851b6cd95c399fc--


From nobody Sun Jul 21 06:10:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9792B1200B1 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:10:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.908
X-Spam-Level: 
X-Spam-Status: No, score=-6.908 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yy1vcQuzN3hs for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:10: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 46FCD12004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:10:53 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:10:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563714652; bh=bI/A8xf6E/KBoDH2nfrluuIXeeSOJujWinsonv0vOsc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gZtu5fz44G68AtYPOKvbcWsaW87YM9lmkgeBhlTF9Grt5tgeuLaOBZFGGDdt+3ztt ++aodSalveXLlciPk0hxiiQk95VNkBtZJpYr5VRqKXk8kwcLG7aoeBuNIfFj96AfBg 0JCMu9r4Uo6obJS4ZGeBT18V4nnkx6+HDeMm2grE=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK623SSPTV2GIBNJDR53IGLNZEVBNHHBXHO4II@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2867/c513553129@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2867@github.com>
References: <quicwg/base-drafts/pull/2867@github.com>
Subject: Re: [quicwg/base-drafts] Tighten HEADERS and DATA frame order requirements. (#2867)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34645c65405_5c943fb5d8ecd95c1223f5"; 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/fCSJFm6O7os6wC1jmezO9FUVU4c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:10:55 -0000

----==_mimepart_5d34645c65405_5c943fb5d8ecd95c1223f5
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/2867#issuecomment-513553129
----==_mimepart_5d34645c65405_5c943fb5d8ecd95c1223f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2867?email_source=notifications&amp;email_token=AFTOJKZUPEMUHW2Q5RKLVSDQARN5ZA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ODF2I#issuecomment-513553129">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QCD4PBNPJWHVFYT3QARN5ZANCNFSM4H454J7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZODNBEBGCSD5O3GQDQARN5ZA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ODF2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJKZUPEMUHW2Q5RKLVSDQARN5ZA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ODF2I#issuecomment-513553129",
"url": "https://github.com/quicwg/base-drafts/pull/2867?email_source=notifications\u0026email_token=AFTOJKZUPEMUHW2Q5RKLVSDQARN5ZA5CNFSM4H454J72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ODF2I#issuecomment-513553129",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34645c65405_5c943fb5d8ecd95c1223f5--


From nobody Sun Jul 21 06:38:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D996812011E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:38:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MTJZu3WWXVzN for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:38: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 E457012004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:38:49 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:38:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563716328; bh=aCvqY/At2jjtnxuQMeca9XAWPNhNH890MxGHgK2+BKI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Aw5HKQMPt3nCRSMGgYBgIN1XVBpQZW6jA/YN5JZ0KylG1rQBdI78JHv/icJc4UuZS ccL0jFtW3tODjtPh0LzLwGMtjcwcqwMzETz7edDkPYoJ1/2d67TLs1if+nuJ2Agzzw scnx+txH0/J5SbTXkKrJ2vR1Y6xEl+xFeI+VbBUE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWSENQNFNOGIAOARF3IGOWREVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264537623@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346ae8cb4d1_55963f85f86cd960117752"; 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/IIMU3bx1QORQgrH30ZTLi3ZvvOU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:38:52 -0000

----==_mimepart_5d346ae8cb4d1_55963f85f86cd960117752
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -629,6 +629,14 @@ MAY use alternate strategies for determining the content of probe packets,
 including sending new or retransmitted data based on the application's
 priorities.
 
+If the handshake is complete, but not confirmed (see Section 4.1.1 and Section

Also, now that I read the existing text again, I'm wondering if the "Sending Probe Packets" section should be before "Handshakes and New Paths"?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881#discussion_r305618565
----==_mimepart_5d346ae8cb4d1_55963f85f86cd960117752
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2881#discussion_r305618565">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -629,6 +629,14 @@ MAY use alternate strategies for determining the content of probe packets,
 including sending new or retransmitted data based on the application&#39;s
 priorities.
 
+If the handshake is complete, but not confirmed (see Section 4.1.1 and Section
</pre>
<p>Also, now that I read the existing text again, I'm wondering if the "Sending Probe Packets" section should be before "Handshakes and New Paths"?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications&amp;email_token=AFTOJK2AXETQQ2GFF52BHTTQARRGRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIMFY#discussion_r305618565">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MIGRSVP5DFJDPTXLQARRGRANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYU2X43OE3RXORESILQARRGRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIMFY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK2AXETQQ2GFF52BHTTQARRGRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIMFY#discussion_r305618565",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK2AXETQQ2GFF52BHTTQARRGRA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIMFY#discussion_r305618565",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d346ae8cb4d1_55963f85f86cd960117752--


From nobody Sun Jul 21 06:42:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E5F1F120140 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:42:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ih2kDXGmf4dC for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:42: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 19C20120154 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:42:15 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:42:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563716534; bh=Kd5A1gWsPcaS4YBadAtELTKNDfQn8U9DYEsK3ahJ2KA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=C61ZSdhT5BnUdztAWDBmadwyQD4/VPopvoBpCeMspQBdUqkNBBlUCPSxxLSOoyUZ6 1FYpfl0zz8MYBKbHT/Ga2OQu6Hggrs8MFkhbQl0StsPeUpH2DcgSvu9BftYQuISMMA jBG6P6lwx5lUouq1phKLK6HLRiK2Q5wOKUhpcRjw=
From: Brett Sheffield <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK243OSMK3O7T65FQTF3IGPDNEVBNHHBYD4UHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2913@github.com>
Subject: [quicwg/base-drafts] Connection Reuse - Use RFC2119 terminology (#2913)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346bb660f50_56363ff2964cd95c10526d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: brettsheffield
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BFDM0l65AHFbfzkm9N18ZCRTAdw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:42:24 -0000

----==_mimepart_5d346bb660f50_56363ff2964cd95c10526d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> ## Connection Reuse 

> A server that does not wish clients to reuse connections for a particular origin can indicate that ...

`s/can/MAY/` - use RFC2119 terminology.

-- 
You are receiving 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/2913
----==_mimepart_5d346bb660f50_56363ff2964cd95c10526d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<h2>Connection Reuse</h2>
</blockquote>
<blockquote>
<p>A server that does not wish clients to reuse connections for a particular origin can indicate that ...</p>
</blockquote>
<p><code>s/can/MAY/</code> - use RFC2119 terminology.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2913?email_source=notifications&amp;email_token=AFTOJKYEFETTWXEMVCHWOQ3QARRTNA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSQ4A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK445WC62R25DLMJPT3QARRTNANCNFSM4IFSKOSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK35BTL5YIJVIFPV5ILQARRTNA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSQ4A.gif" height="1" width="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/2913?email_source=notifications\u0026email_token=AFTOJKYEFETTWXEMVCHWOQ3QARRTNA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSQ4A",
"url": "https://github.com/quicwg/base-drafts/issues/2913?email_source=notifications\u0026email_token=AFTOJKYEFETTWXEMVCHWOQ3QARRTNA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSQ4A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d346bb660f50_56363ff2964cd95c10526d--


From nobody Sun Jul 21 06:43:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 20B841201B5 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:43:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id o76WFovondWw for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:43:14 -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 856D0120134 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:43:14 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:43:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563716593; bh=pBH9dhpnisNt7WSkJYOcb4LkaXc4UuIhiuqnPIQ+iG8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=sWkW/gZRGfc5O4Zw4X+5+kaiIF+NymvkbPjp/hhR7iMonOJESPUVU4hp9tXgPcKZy FNru3e9bba+4ITuEF188jaxE/eg8YRa/s45QOzI7EpBMUIUx+g4pzUoN1Vphv+SCrh dDF0hDxuT7g8hrr8Lqou/wEnAac9wv/4IfJ6y9Xc=
From: Brett Sheffield <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33BFON36VE4XLXUH53IGPHDEVBNHHBYD4USA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2914@github.com>
Subject: [quicwg/base-drafts] RFC2119 - fix s/can/MAY/ (#2914)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346bf1be296_70923faf592cd95c242078"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: brettsheffield
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ig479fsNBQ0ZOYohIJQjHk7VpdY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:43:21 -0000

----==_mimepart_5d346bf1be296_70923faf592cd95c242078
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

fixes #2913 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2914

-- Commit Summary --

  * RFC2119 - fix s/can/MAY/

-- File Changes --

    M draft-ietf-quic-http.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2914.patch
https://github.com/quicwg/base-drafts/pull/2914.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/2914

----==_mimepart_5d346bf1be296_70923faf592cd95c242078
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 #2913.">fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470783032" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2913" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2913/hovercard" href="https://github.com/quicwg/base-drafts/issues/2913">#2913</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/2914'>https://github.com/quicwg/base-drafts/pull/2914</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>RFC2119 - fix s/can/MAY/</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2914/files#diff-0">draft-ietf-quic-http.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2914.patch'>https://github.com/quicwg/base-drafts/pull/2914.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2914.diff'>https://github.com/quicwg/base-drafts/pull/2914.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/2914?email_source=notifications&amp;email_token=AFTOJKZ75VUYJZO4IZYURWTQARRXDA5CNFSM4IFSKRA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSSIA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZUJRPB7Q6J4RKYDFLQARRXDANCNFSM4IFSKRAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5CGQNESFJ2X22BYEDQARRXDA5CNFSM4IFSKRA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSSIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2914?email_source=notifications\u0026email_token=AFTOJKZ75VUYJZO4IZYURWTQARRXDA5CNFSM4IFSKRA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSSIA",
"url": "https://github.com/quicwg/base-drafts/pull/2914?email_source=notifications\u0026email_token=AFTOJKZ75VUYJZO4IZYURWTQARRXDA5CNFSM4IFSKRA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSSIA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d346bf1be296_70923faf592cd95c242078--


From nobody Sun Jul 21 06:46:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4038C120019 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:46:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xjf2UsThWkRy for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:46: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 53F04120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:46:02 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:46:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563716761; bh=SVicbkzyc/7Pfc2KScH+x+2pckvY2rGB+/ixH+9Q79s=; h=Date:From:To:Subject:From; b=d4KNlHiA1Akv/swZ4p6L1ijYZMygKMNHKD2+RHNFpx5V9RCrRcRwtqbJfjUrD01Rj z9XOD6UQBlnqn1ACaajSllky/TWRE6y8dB6gGGXohdW+DzwK/3JHNGA+f5SGtPA0vv M+8quhwOnUUkm0FDDtXAb5fJ71DtY7S+4M6zCcbc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-datagrams/000000-c98ce9@github.com>
Subject: [quicwg/base-drafts] c98ce9: Up to two full-sized datagrams, not packets
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wVwOcaVKs-Y80vbuP4rWx7PsaV4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:46:04 -0000

  Branch: refs/heads/ianswett-pto-datagrams
  Home:   https://github.com/quicwg/base-drafts
  Commit: c98ce90760579926bf0983cb2a85b86232e56058
      https://github.com/quicwg/base-drafts/commit/c98ce90760579926bf0983cb2a85b86232e56058
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Up to two full-sized datagrams, not packets

Now that the PTO retransmits Initial and Handshake data, it's possible and likely desirable to bundle multiple QUIC packets in a single datagram.  This change makes it clear that is allowed.



From nobody Sun Jul 21 06:46:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 54F6E120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:46:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_yCUHJ9JQen for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:46:29 -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 0718E120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:46:29 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:46:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563716788; bh=VeOAK3Rdm/vdlVAs4HiJH/x3H9/WoinPujMF2NmtvJE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=z0ePBq6jEmb47zsfquDb4t3PP8rI/WAg7KAorC8BwvLI9nyxXlf9cGKdrFJillnJr jRWGqns8nAPDeUGjfucUGsuWS5/SxJrxDme0uKDyMmeaPFz1apwcyH6ux2qHAjsYuS mxlpynigQJOCsm95DplJ7nke0oUlIS4FApVlDEpk=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5SEHWPWIUHVTMDGRV3IGPTJEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915@github.com>
Subject: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346cb4387fe_47fb3fb85a8cd9601659f2"; 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/DBEY2U8YCwodbd4XRbthD5YAgBA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:46:30 -0000

----==_mimepart_5d346cb4387fe_47fb3fb85a8cd9601659f2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Now that the PTO retransmits Initial and Handshake data, it's possible and likely desirable to bundle multiple QUIC packets in a single datagram.  This change makes it clear that is allowed.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2915

-- Commit Summary --

  * Up to two full-sized datagrams, not packets

-- File Changes --

    M draft-ietf-quic-recovery.md (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2915.patch
https://github.com/quicwg/base-drafts/pull/2915.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/2915

----==_mimepart_5d346cb4387fe_47fb3fb85a8cd9601659f2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Now that the PTO retransmits Initial and Handshake data, it's possible and likely desirable to bundle multiple QUIC packets in a single datagram.  This change makes it clear that is allowed.</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/2915'>https://github.com/quicwg/base-drafts/pull/2915</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Up to two full-sized datagrams, not packets</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2915/files#diff-0">draft-ietf-quic-recovery.md</a>
    (6)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2915.patch'>https://github.com/quicwg/base-drafts/pull/2915.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2915.diff'>https://github.com/quicwg/base-drafts/pull/2915.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/2915?email_source=notifications&amp;email_token=AFTOJK7DIQAJNDUFU77TN63QARSDJA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSXDA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK564YYQHPBDGTJ3SUDQARSDJANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3RPMBGOAPBB5BIKZLQARSDJA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSXDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK7DIQAJNDUFU77TN63QARSDJA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSXDA",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK7DIQAJNDUFU77TN63QARSDJA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPSXDA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d346cb4387fe_47fb3fb85a8cd9601659f2--


From nobody Sun Jul 21 06:47:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1A54E12018A for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:47:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mHlgixaZz2Fh for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:47: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 D11EF120157 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:47:17 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:47:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563716837; bh=qoiamBHy4Fc4kD7nJjumZYi5bIQ2KY1sYc1AVowIGIE=; h=Date:From:To:Subject:From; b=WL+gfRVRJrQkcKHB5iir8yXwJn388ShzqQLnY1gfgO1mupPQVfJM8HKwYDrSMHbrJ VlZO0BCwas8y9KZklphFm+mwmR0b5O/91qm7R9sdbSGjpQ6Z+3JHu6dSEcc+bJGepH 99+HSo7U13eVRm+a2CkynBQP/XVi6LLoU2EKHnxY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c89b29-70b01a@github.com>
Subject: [quicwg/base-drafts] 70b01a: Script updating gh-pages from c98ce907. [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/5F_v26sRj74GF5jbE312wiXvH1M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:47:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 70b01aa16701ea88f944195a7a214af683517e9e
      https://github.com/quicwg/base-drafts/commit/70b01aa16701ea88f944195a7a214af683517e9e
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    A ianswett-pto-datagrams/draft-ietf-quic-http.html
    A ianswett-pto-datagrams/draft-ietf-quic-http.txt
    A ianswett-pto-datagrams/draft-ietf-quic-invariants.html
    A ianswett-pto-datagrams/draft-ietf-quic-invariants.txt
    A ianswett-pto-datagrams/draft-ietf-quic-qpack.html
    A ianswett-pto-datagrams/draft-ietf-quic-qpack.txt
    A ianswett-pto-datagrams/draft-ietf-quic-recovery.html
    A ianswett-pto-datagrams/draft-ietf-quic-recovery.txt
    A ianswett-pto-datagrams/draft-ietf-quic-tls.html
    A ianswett-pto-datagrams/draft-ietf-quic-tls.txt
    A ianswett-pto-datagrams/draft-ietf-quic-transport.html
    A ianswett-pto-datagrams/draft-ietf-quic-transport.txt
    A ianswett-pto-datagrams/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c98ce907. [ci skip]



From nobody Sun Jul 21 06:50:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 215D3120019 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:50:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Eyl1MvcXqceq for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:50: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 EC57F120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:50:19 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:50:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717019; bh=SpfIYRDfDZCB03vF+2GbCbMmB3gTUdqphP48uDIWOP8=; h=Date:From:To:Subject:From; b=bSbXGDDNX1PzENYPc8FRluuhhIuygN/lWERoVA/Hvzwq7c/foBdh0n/oaGaqBYUDj verQjd8zu0IJTZ1+yh0gGhGn+Cfx1QkZdM2Pb3uEXLVL0ipBIVBJ5RpvnjwoQz6cYP hqejc7SN6YUwaOclmGRxE6NyR9PpSu+/CNr6uMVo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/c98c77-c04a11@github.com>
Subject: [quicwg/base-drafts] c04a11: Move to Handshake 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/1gj9-0VMrH35GeSAW2VxsJI96Pk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:50:22 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: c04a11e96ccc0959fd1eaf1074e34cda84d02002
      https://github.com/quicwg/base-drafts/commit/c04a11e96ccc0959fd1eaf1074e34cda84d02002
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Move to Handshake section



From nobody Sun Jul 21 06:50:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2314B120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:50:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ZxmsSyNICfQO for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:50: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 9446E120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:50:27 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:50:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717026; bh=mKgOu6Dj3ONlX9EDQ/qjmrWib+et29SMZGgOZYedysM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q2PbPDBWUgms1AIweqj0iNqYPePPy7uEgT/ADIzRJwyPIur3FdfABifOcRPUm4i5o Al8Rdp2Fti7wBET92ENJt7RNjFhwLlhbukDg/xtATyuHNn1cfd1rFcYOWlDMVVmg1I wAjWsrVzrC9n9L5nxhjZRW1qd+VwKCQtlaiQ+x7I=
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/2881/push/3839270406@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346da2b6248_14173ffcd64cd96c8001a"; 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/tSdPnTSF2fcB66o3m8l5AMyEx78>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:50:29 -0000

----==_mimepart_5d346da2b6248_14173ffcd64cd96c8001a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

c04a11e96ccc0959fd1eaf1074e34cda84d02002  Move to Handshake section


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881/files/c98c77e4646299ffc43a87bb477b246c2fbd5608..c04a11e96ccc0959fd1eaf1074e34cda84d02002

----==_mimepart_5d346da2b6248_14173ffcd64cd96c8001a
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/c04a11e96ccc0959fd1eaf1074e34cda84d02002">c04a11e</a>  Move to Handshake section</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/2881/files/c98c77e4646299ffc43a87bb477b246c2fbd5608..c04a11e96ccc0959fd1eaf1074e34cda84d02002?email_source=notifications&amp;email_token=AFTOJKZGY3G3JUQUYNA2GK3QARSSFA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMRXGA2DANQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26GR32SMI57W4JE3TQARSSFANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7PWTS5X72ONHNHGSTQARSSFA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMRXGA2DANQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881/files/c98c77e4646299ffc43a87bb477b246c2fbd5608..c04a11e96ccc0959fd1eaf1074e34cda84d02002?email_source=notifications\u0026email_token=AFTOJKZGY3G3JUQUYNA2GK3QARSSFA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMRXGA2DANQ",
"url": "https://github.com/quicwg/base-drafts/pull/2881/files/c98c77e4646299ffc43a87bb477b246c2fbd5608..c04a11e96ccc0959fd1eaf1074e34cda84d02002?email_source=notifications\u0026email_token=AFTOJKZGY3G3JUQUYNA2GK3QARSSFA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMRXGA2DANQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d346da2b6248_14173ffcd64cd96c8001a--


From nobody Sun Jul 21 06:51:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D821F120024 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:51:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yb6SqZOEP2ms for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:51:22 -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 F2A84120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:51:21 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:51:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717081; bh=Aee5F/gHalR+d3eF1l8BkyNRqtGUcRScEO/VGIMIwRY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bPwx6koC0tsbM+zfMvp17+xHehniCH5EoYqnVPzJAfe/OLeK6Q8tSrSQa2+OXSpwq t+QtaZrtv8HeVVfHdgSdenfDz0Yjk9jSRRIuda2HTtamv9SRm0+jMc+7L9ARaupNoE X0/ZUnIiOhwMZQkODRyEkRGnTmzlSSOi9NSBHD5U=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ZQTKHYOQBZALRKFF3IGQFTEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264538178@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346dd919249_73c63f80740cd9682040fa"; 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/jF727QMAvR_AHN_UCrLEbvvvLog>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:51:24 -0000

----==_mimepart_5d346dd919249_73c63f80740cd9682040fa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -629,6 +629,14 @@ MAY use alternate strategies for determining the content of probe packets,
 including sending new or retransmitted data based on the application's
 priorities.
 
+If the handshake is complete, but not confirmed (see Section 4.1.1 and Section

I will leave that change to you, but I have moved this up to the Handshakes and New Paths 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/2881#discussion_r305619114
----==_mimepart_5d346dd919249_73c63f80740cd9682040fa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2881#discussion_r305619114">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -629,6 +629,14 @@ MAY use alternate strategies for determining the content of probe packets,
 including sending new or retransmitted data based on the application&#39;s
 priorities.
 
+If the handshake is complete, but not confirmed (see Section 4.1.1 and Section
</pre>
<p>I will leave that change to you, but I have moved this up to the Handshakes and New Paths 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/2881?email_source=notifications&amp;email_token=AFTOJK5KEWCOV54VOL4XPG3QARSVTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIQQQ#discussion_r305619114">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LVGHS23XWYQBV6DLQARSVTANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LJ5HO2YORQP4RR7DQARSVTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIQQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK5KEWCOV54VOL4XPG3QARSVTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIQQQ#discussion_r305619114",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK5KEWCOV54VOL4XPG3QARSVTA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIQQQ#discussion_r305619114",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d346dd919249_73c63f80740cd9682040fa--


From nobody Sun Jul 21 06:51:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 164CA120144 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:51:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id viQTxRICVOY5 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:51:43 -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 91573120158 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:51:43 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:51:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717102; bh=+EkvcXzbW0w7BreFXDJa5kUaq6qxn79rHB3rhxYasU4=; h=Date:From:To:Subject:From; b=FKd4/kdK9EoY60cjI1xPR8sj7OJEGER8LWLI+XPLcgyzpLmPkJG+Eailkw7LfNUrT RXO+WZRPMGt2A0hr5t0gqllXMu/B4G2lTlP+VOOJGEcLTwHZt1kk+STmAFypo8H3nM SFIc0QyFgL7bXN7wCnSvVe2U4Be6AR1RVZNJUKCQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/70b01a-296644@github.com>
Subject: [quicwg/base-drafts] 296644: Script updating gh-pages from c04a11e9. [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/EQgmIbaz2cDQgbawRWKC9EVCblM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:51:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 296644182a078dc679b7594f03a3c78a8a408d2e
      https://github.com/quicwg/base-drafts/commit/296644182a078dc679b7594f03a3c78a8a408d2e
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M index.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.html
    M unrecoverable-without-1rtt/draft-ietf-quic-http.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.html
    M unrecoverable-without-1rtt/draft-ietf-quic-invariants.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.html
    M unrecoverable-without-1rtt/draft-ietf-quic-qpack.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.html
    M unrecoverable-without-1rtt/draft-ietf-quic-tls.txt
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.html
    M unrecoverable-without-1rtt/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from c04a11e9. [ci skip]



From nobody Sun Jul 21 06:54:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A92CC120089 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:54:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id q9EkSBOPfvTD for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:54: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 86A71120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:54:54 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:54:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717293; bh=ttP6FDpfg7TgchGdUkMtMnLWaS/QeTP6592O6J3ngHc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ks9r24dZsQnxnKF8Rmo1iKaEqSIOK701QMwNWBb8efXIGShUyWAG41UbKVidqEDVc 1bvHSY+soA62ZbVYqjAUc4dHOFyeZ9FdT7SBXqTWpjc7lLf8AvGqfUW15xQ9Q0F7JF PGkm4uHzOfNg3gOBw4f84DBWyCfRInCk5xwWZokQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3S2A3CXBTYVKEVVA53IGQS3EVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264538341@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346eadce454_8c13f891b0cd9682270b0"; 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/lp_HHclmwZ4Vyet_NOQaP9xgghs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:54:58 -0000

----==_mimepart_5d346eadce454_8c13f891b0cd9682270b0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.

One more suggestion: I think line 519 should now say confirmed, not completed?



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881#pullrequestreview-264538341
----==_mimepart_5d346eadce454_8c13f891b0cd9682270b0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<p>One more suggestion: I think line 519 should now say confirmed, not completed?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications&amp;email_token=AFTOJK3ZWTNDDCIZGA2J6DDQARTC3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIRZI#pullrequestreview-264538341">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WHLY5O2VZ2ZG2P3LQARTC3ANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2XZTKS2TY4WJMWKM3QARTC3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIRZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK3ZWTNDDCIZGA2J6DDQARTC3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIRZI#pullrequestreview-264538341",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK3ZWTNDDCIZGA2J6DDQARTC3A5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CIRZI#pullrequestreview-264538341",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d346eadce454_8c13f891b0cd9682270b0--


From nobody Sun Jul 21 06:58:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ABD4612004E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:58:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LrRftG1sfkOB for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:58:06 -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 3014D120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:58:06 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:58:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717485; bh=QuJ5Fj3y2oqV7kh0jwvjdW2ugohU8u/S4RLxIKjRf94=; h=Date:From:To:Subject:From; b=qxCrP4s3+PTL9phmdnKv1Tqr0yTHG+3yI732MEEO41/uRau9CME/90Z09V8WAHv3p OLRmuTL5S09BQrjNFCVAJNO/f+LzvoxwFp7MtC0yGYGbv3XOfKZqDN3ItIfbIjYms9 URH8KHqSZjS9mmg+9uWn+fC0IxweKv5KMSVAksdg=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/000000-5c0349@github.com>
Subject: [quicwg/base-drafts] 5c0349: Move Generating Acknowledgements 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/RK7FFWeB-kJSuGgztIqE5nXkZDM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:58:08 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5c034934cd8fc64640112f90ffa115e58408277e
      https://github.com/quicwg/base-drafts/commit/5c034934cd8fc64640112f90ffa115e58408277e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Move Generating Acknowledgements to Transport



From nobody Sun Jul 21 06:58:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 26CAC12004E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:58:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.597
X-Spam-Level: 
X-Spam-Status: No, score=-6.597 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 IVqaCr41qmr0 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:58:32 -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 63CC3120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:58:32 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:58:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717511; bh=w3BkBqgRZTE4p2+Kg3qrkGWVnZz1GjJU/c6RFTgM0xw=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ziOkKCR1ywLaCnIv59NBjgbwYU/voVQ+3YRI/VXTWqMUv7+egr1mdcDvZnYzkZqy9 78JnOdZUBuyCsqG7pyLB3q7fwSroiOfXUaN8onr/wgZnNOexD2xx1qnkIm9Tj8qxaF 49tGGT0m2iYTkZoRFCTQ0duH6enh5L6RX8Kj7mS0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5LGQVKE2HHLNCYCKF3IGRAPEVBNHHBYD42OI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2916@github.com>
Subject: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346f87a6989_4e7e3f8c3d6cd96019638"; 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/vt-MucHTB7o1VuMqFcZ6iTOCuIs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:58:34 -0000

----==_mimepart_5d346f87a6989_4e7e3f8c3d6cd96019638
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #1860 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2916

-- Commit Summary --

  * Move Generating Acknowledgements to Transport

-- File Changes --

    M draft-ietf-quic-recovery.md (79)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2916.patch
https://github.com/quicwg/base-drafts/pull/2916.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/2916

----==_mimepart_5d346f87a6989_4e7e3f8c3d6cd96019638
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 #1860.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="370587450" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/1860" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1860/hovercard" href="https://github.com/quicwg/base-drafts/issues/1860">#1860</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/2916'>https://github.com/quicwg/base-drafts/pull/2916</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Move Generating Acknowledgements to Transport</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2916/files#diff-0">draft-ietf-quic-recovery.md</a>
    (79)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2916.patch'>https://github.com/quicwg/base-drafts/pull/2916.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2916.diff'>https://github.com/quicwg/base-drafts/pull/2916.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/2916?email_source=notifications&amp;email_token=AFTOJK4IFY3H5JAJ5HFXOOTQARTQPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPTJZA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5TYEQCQXAOWBX3ZELQARTQPANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK36L3LCESSWR3XCROTQARTQPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPTJZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK4IFY3H5JAJ5HFXOOTQARTQPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPTJZA",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK4IFY3H5JAJ5HFXOOTQARTQPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAPTJZA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d346f87a6989_4e7e3f8c3d6cd96019638--


From nobody Sun Jul 21 06:59:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AAD641200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:59:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nCttuH17ZBOi for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:59: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 D6FBC120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:59:10 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:59:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717549; bh=pCah7yb7RJ36Qni6wDjgvASdqVlofor95xyP9yrTJ3A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DcRLk49Y2nUKb+aKpuQ4qTCTVznfDPijLgyNVQQqBVqg7w24X/GN5lgPVTWl94kfb oiXep66lxmYPYcPtdYfNcbFdmJcE8HUEgjprJXdxUjEUJFkVf31HRn71FIAZPNwqWo KNsuF9x+PzTkVcQJS3R7JeE39g59FXv/eT1wW3l4=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BMVDXUUO4H7BKREN3IGRC3EVBNHHBYD3YSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2912/review/264538547@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2912@github.com>
References: <quicwg/base-drafts/pull/2912@github.com>
Subject: Re: [quicwg/base-drafts] PTO should always send an ack-eliciting packet (#2912)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346fadc45b8_4feb3fb4200cd96014501c"; 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/MiHz972JS115bTdV7fqo0Y9_NVI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:59:13 -0000

----==_mimepart_5d346fadc45b8_4feb3fb4200cd96014501c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

erickinnear approved this pull request.

Looks good to me, for what it's worth our implementation always bundles a PING in here if there is nothing else ack-eliciting to send.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2912#pullrequestreview-264538547
----==_mimepart_5d346fadc45b8_4feb3fb4200cd96014501c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@erickinnear</b> approved this pull request.</p>

<p>Looks good to me, for what it's worth our implementation always bundles a PING in here if there is nothing else ack-eliciting to send.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications&amp;email_token=AFTOJK63QOM57JT6WZZVMQDQARTS3A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CITMY#pullrequestreview-264538547">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3KIWFJJGYOOGROLK3QARTS3ANCNFSM4IFSDGOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3XMCFEG3IINRWHZETQARTS3A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CITMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJK63QOM57JT6WZZVMQDQARTS3A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CITMY#pullrequestreview-264538547",
"url": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJK63QOM57JT6WZZVMQDQARTS3A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CITMY#pullrequestreview-264538547",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d346fadc45b8_4feb3fb4200cd96014501c--


From nobody Sun Jul 21 06:59:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0EA39120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:59:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5JNjQtwhlqZ6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 06:59: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 367F4120134 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 06:59:15 -0700 (PDT)
Date: Sun, 21 Jul 2019 06:59:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717554; bh=oq/9+R2JYg8eepgrmUtHrSE2Dln5nYfMs9BRZl1vG7o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Kd10Ap6wx8af3KFJEV9QDVKTfRkpdQgiUBEtMPorMv9edPCb7W54dg/GRAjnRXQk9 LiR9VtFGZGuMWRx6xzLJGOyzc067CFeFK85kE/91it3WGcSSXzqmqkopzuMqU3gwQQ wT3qtk00DvDXFKpu/e8rGeq8UGZut4+T2uVupKcU=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6QY6FBYPZ27X53Z6N3IGRDFEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264538514@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d346fb2a1bfd_4e803f8c3d6cd960121614"; 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/G1zsNrh1tIisU6rnth8o5u41Jb4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 13:59:17 -0000

----==_mimepart_5d346fb2a1bfd_4e803f8c3d6cd960121614
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> @@ -514,7 +514,7 @@ and larger thresholds increase loss detection delay.
 
 ## Probe Timeout {#pto}
 
-A Probe Timeout (PTO) triggers sending one or two probe packets when
+A Probe Timeout (PTO) triggers sending one or two probe datagrams when
 ack-eliciting packets are not acknowledged within the expected period of
 time or the handshake has not been completed.  A PTO enables a connection to
 recover from loss of tail packets or acks. The PTO algorithm used in QUIC

```suggestion
recover from loss of tail packets or ACKs. The PTO algorithm used in QUIC
```

> @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 

Where is that limit of two specified? Here? Why?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2915#pullrequestreview-264538514
----==_mimepart_5d346fb2a1bfd_4e803f8c3d6cd960121614
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@mikkelfj</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2915#discussi=
on_r305619450">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -514,7 +514,7 @@ and larger thresholds =
increase loss detection delay.=0D
 =0D
 ## Probe Timeout {#pto}=0D
 =0D
-A Probe Timeout (PTO) triggers sending one or two probe packets when=0D
+A Probe Timeout (PTO) triggers sending one or two probe datagrams when=0D=

 ack-eliciting packets are not acknowledged within the expected period of=
=0D
 time or the handshake has not been completed.  A PTO enables a connectio=
n to=0D
 recover from loss of tail packets or acks. The PTO algorithm used in QUI=
C=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">- recover from loss of tail packets or acks. T=
he PTO algorithm used in QUIC=0D
+recover from loss of tail packets or ACKs. The PTO algorithm used in QUI=
C=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2915#discussi=
on_r305619490">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -598,8 +598,8 @@ discarded.=0D
 =0D
 When a PTO timer expires, a sender MUST send at least one ack-eliciting =
packet=0D
 as a probe, unless there is no data available to send.  An endpoint MAY =
send up=0D
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expi=
ration=0D
-due to a single packet loss.=0D
+to two full sized datagrams containing ack-eliciting packets, to avoid a=
n=0D
+expensive consecutive PTO expiration due to a single lost datagram.=0D
 =0D
</pre>=0D
<p>Where is that limit of two specified? Here? Why?</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/2915?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK7Z6WCJ6RZVBKJG7P3QARTTFA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CITEQ#pullrequestreview-264538514=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK57H2BRSHH4US57TQDQARTTFANCNFSM4IFSKZXQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZRHGNT=
XPF5U42RS2TQARTTFA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CITEQ.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/2915?email_source=3D=
notifications\u0026email_token=3DAFTOJK7Z6WCJ6RZVBKJG7P3QARTTFA5CNFSM4IFS=
KZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CITEQ#pullrequestreview-264538514",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK7Z6WCJ6RZVBKJG7P3QARTTFA5CNFSM4IFSKZ=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
ITEQ#pullrequestreview-264538514",=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_5d346fb2a1bfd_4e803f8c3d6cd960121614--


From nobody Sun Jul 21 07:05:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A917B120089 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:05:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CoOMX0dVMTPt for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:05: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 CAB4E12004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:05:46 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:05:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563717945; bh=FA7rUlSPKo0eOkFSvhfI2PdgCA/eim3GR2UzsEYvf74=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IVeOQSlFLkDyKN5kCgG2yQqk6dKsMLPvpIMHqA+fA1fPRxZv0fHfu0SUyP2WzKmhc /dU/U7P3gR1/cVkww//OSJOnJi5maUhiELQhIuMSUlxcqSo5+O9r7wAw3JvDkxCiDG vh9iyK94LfhWrogsLWTi3hc3ehUrwtX/d1hcmnqw=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JIGCQYLUPU5EEUHN3IGR3TEVBNHHBYD4UHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2913/513557428@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2913@github.com>
References: <quicwg/base-drafts/issues/2913@github.com>
Subject: Re: [quicwg/base-drafts] Connection Reuse - Use RFC2119 terminology (#2913)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d347139b3e7a_36e73fbe8c8cd96424625e"; 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/YtksZtTURzTAXts07E0_FWd3m3Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:05:49 -0000

----==_mimepart_5d347139b3e7a_36e73fbe8c8cd96424625e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This text is imported verbatim from RFC 7540 https://tools.ietf.org/html/rfc7540#section-9.1.1

I think it's fine as is because the internal linkage to  description of status 421 contains some normative text: https://tools.ietf.org/html/rfc7540#section-9.1.2

-- 
You are receiving 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/2913#issuecomment-513557428
----==_mimepart_5d347139b3e7a_36e73fbe8c8cd96424625e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This text is imported verbatim from RFC 7540 <a href="https://tools.ietf.org/html/rfc7540#section-9.1.1" rel="nofollow">https://tools.ietf.org/html/rfc7540#section-9.1.1</a></p>
<p>I think it's fine as is because the internal linkage to  description of status 421 contains some normative text: <a href="https://tools.ietf.org/html/rfc7540#section-9.1.2" rel="nofollow">https://tools.ietf.org/html/rfc7540#section-9.1.2</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/2913?email_source=notifications&amp;email_token=AFTOJKYV6GT74MISQHTJEYDQARULTA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEHNA#issuecomment-513557428">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5SJIQPOWFQVXA6DHDQARULTANCNFSM4IFSKOSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZI2Z4BF2UJIEJ5K2DQARULTA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEHNA.gif" height="1" width="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/2913?email_source=notifications\u0026email_token=AFTOJKYV6GT74MISQHTJEYDQARULTA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEHNA#issuecomment-513557428",
"url": "https://github.com/quicwg/base-drafts/issues/2913?email_source=notifications\u0026email_token=AFTOJKYV6GT74MISQHTJEYDQARULTA5CNFSM4IFSKOS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEHNA#issuecomment-513557428",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d347139b3e7a_36e73fbe8c8cd96424625e--


From nobody Sun Jul 21 07:08:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BDBA412004E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:08:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dCMl7MtxY6pW for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:08: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 79A1D120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:08:13 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:08:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718092; bh=x6frhK4I6zguaiAy5rDpEtAxhGaQWFZmi/3XCpgy7ms=; h=Date:From:To:Subject:From; b=HkvmVNytK/TWvngTBEji23J3XGIsVnae7VvsAk4s/5vXHRyN1IqidV1C1CcuwZR9v /yKUyBOYLtGZkiWzwO9IOC6una2AzIrsRzmPR2jG0gVxM71vZg1FQQ9iZUqlnbUaqu vOpOnrIdZVeWmFArt7ZgwHqXt96e/UC9KCJDlNGo=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/5c0349-a45e31@github.com>
Subject: [quicwg/base-drafts] a45e31: Move, don't just remove the 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/5a519K66x7k5Pn1Isle6IU1ojK8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:08:15 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: a45e31e754c9289863fc82c4a52912b45a96c4a7
      https://github.com/quicwg/base-drafts/commit/a45e31e754c9289863fc82c4a52912b45a96c4a7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Move, don't just remove the text

This is an intermediate commit.  There's a lot of text here, and a lot is duplicative.



From nobody Sun Jul 21 07:08:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5419E120089 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:08:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Evuukgr-jtQh for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:08: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 9E4C812004E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:08:21 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:08:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718101; bh=MHKHfoU145anqQLMpNSdYOTJY6RPUe6TUJPqCi4/RnY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GEtEp96cAl+wcLjJH++uirz4+76uyifpqP2fJZLQSMsQ58dnFbLN94ebxgmw9MD9i m1+LMv+mMZwKTgWtXJa4y8ElV0ZZY4d2D8GO1ZAQkpDNiEWrGwL+k8SCx1R2YSf89a DG74zl/lYO3RTnuhD58lZ3UmGy0Q4BftnyeZkTHM=
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/2916/push/3839295234@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3471d4e8053_7fd33fdc6e8cd9641288b9"; 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/fS-lyhSBPlPfxHRUBanRAz7f0Io>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:08:23 -0000

----==_mimepart_5d3471d4e8053_7fd33fdc6e8cd9641288b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

a45e31e754c9289863fc82c4a52912b45a96c4a7  Move, don't just remove the text


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/5c034934cd8fc64640112f90ffa115e58408277e..a45e31e754c9289863fc82c4a52912b45a96c4a7

----==_mimepart_5d3471d4e8053_7fd33fdc6e8cd9641288b9
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/a45e31e754c9289863fc82c4a52912b45a96c4a7">a45e31e</a>  Move, don&#39;t just remove the text</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/2916/files/5c034934cd8fc64640112f90ffa115e58408277e..a45e31e754c9289863fc82c4a52912b45a96c4a7?email_source=notifications&amp;email_token=AFTOJK6CKPLPQU3DFU7K6A3QARUVJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMRZGUZDGNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4WZZIPQMKNFQDIYYDQARUVJANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4IC63OZ43SB6QIYZTQARUVJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMRZGUZDGNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916/files/5c034934cd8fc64640112f90ffa115e58408277e..a45e31e754c9289863fc82c4a52912b45a96c4a7?email_source=notifications\u0026email_token=AFTOJK6CKPLPQU3DFU7K6A3QARUVJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMRZGUZDGNA",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/5c034934cd8fc64640112f90ffa115e58408277e..a45e31e754c9289863fc82c4a52912b45a96c4a7?email_source=notifications\u0026email_token=AFTOJK6CKPLPQU3DFU7K6A3QARUVJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMRZGUZDGNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3471d4e8053_7fd33fdc6e8cd9641288b9--


From nobody Sun Jul 21 07:13:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 75B8B120075 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:13:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MbSOWrT4etnT for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:13: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 36E98120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:13:39 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:13:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718418; bh=v+9WlBT0kuU6NPk1GOj1VyRm++nTE9kJO+bxXMoiplo=; h=Date:From:To:Subject:From; b=HOl3/qQjkbMRIrVRDItIA7EnobkGmUfYOb5a0X0ThHstnS+tktQ45kM+YOZ97vE7L G333MkIJ0XLNsJrEUPNyPUG0cqp7zlWS/sPjAGV5vBFhgHXXGUAfq2LG/zIuj0kQif UiobUXQYYJonBV5K/WE/TsL+YdByPu0DUPGDV808=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/a45e31-483d20@github.com>
Subject: [quicwg/base-drafts] 483d20: Remove the "Crypto Handshake Data" 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/SIZN60tCoWZ2RWB4VFKyGhJNN14>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:13:40 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 483d20c66ef39e058d5280b9ccc00cb0bcc5c8de
      https://github.com/quicwg/base-drafts/commit/483d20c66ef39e058d5280b9ccc00cb0bcc5c8de
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove the "Crypto Handshake Data" section

It was not adding anything and was misleading



From nobody Sun Jul 21 07:13:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4B8D7120075 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:13:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.281
X-Spam-Level: 
X-Spam-Status: No, score=-6.281 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yZUEujjCWfo0 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:13: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 0277A120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:13: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 5F65E6A004F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:13:46 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:13:46 -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/2916/push/3839303078@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34731a506e2_583a3fc3c4acd95c23285e"; 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/skQRA4sbrdvjNUCXISm-B_gg0ug>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:13:48 -0000

----==_mimepart_5d34731a506e2_583a3fc3c4acd95c23285e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

483d20c66ef39e058d5280b9ccc00cb0bcc5c8de  Remove the "Crypto Handshake Data" section


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/a45e31e754c9289863fc82c4a52912b45a96c4a7..483d20c66ef39e058d5280b9ccc00cb0bcc5c8de

----==_mimepart_5d34731a506e2_583a3fc3c4acd95c23285e
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/483d20c66ef39e058d5280b9ccc00cb0bcc5c8de">483d20c</a>  Remove the &quot;Crypto Handshake Data&quot; section</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/2916/files/a45e31e754c9289863fc82c4a52912b45a96c4a7..483d20c66ef39e058d5280b9ccc00cb0bcc5c8de?email_source=notifications&amp;email_token=AFTOJKYYJA3TELXRSRE73K3QARVJVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZQGMYDOOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYFI6NN2PURWISQN3TQARVJVANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK76URINBH6E4PVEQ5DQARVJVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZQGMYDOOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916/files/a45e31e754c9289863fc82c4a52912b45a96c4a7..483d20c66ef39e058d5280b9ccc00cb0bcc5c8de?email_source=notifications\u0026email_token=AFTOJKYYJA3TELXRSRE73K3QARVJVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZQGMYDOOA",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/a45e31e754c9289863fc82c4a52912b45a96c4a7..483d20c66ef39e058d5280b9ccc00cb0bcc5c8de?email_source=notifications\u0026email_token=AFTOJKYYJA3TELXRSRE73K3QARVJVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZQGMYDOOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34731a506e2_583a3fc3c4acd95c23285e--


From nobody Sun Jul 21 07:15:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9A08E12014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:15:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 DKmEuqtCnkyB for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:15: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 CCEEF12018A for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:15:45 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:15:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718545; bh=4PDWv/1tnor8GnkHhzaDHTPh3thcJxpG1CYliGMCrr8=; h=Date:From:To:Subject:From; b=d4oADshZuscLyzI5IKbjVuCML55GUAUfQqw/LYuQQUcPQjhbzj9cV+OmRNAHI9ccR k6pzYQYjK040NToMuvA8vNNQDbg9dXYpS/sWAulIGeLPyCWDq4KK17TXEuQpDBh+3c 9bafvCCbaZ+OdKfasV3O6/rxy9RIE93AVMkydRLU=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-datagrams/c98ce9-e42227@github.com>
Subject: [quicwg/base-drafts] e42227: 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/GM1e75Q46tRqW7yjJLhK3Ps6WBA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:15:48 -0000

  Branch: refs/heads/ianswett-pto-datagrams
  Home:   https://github.com/quicwg/base-drafts
  Commit: e4222702990931ae6002bff60fdf5f2c4d835cf8
      https://github.com/quicwg/base-drafts/commit/e4222702990931ae6002bff60fdf5f2c4d835cf8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-Authored-By: MikkelFJ <mikkelfj@gmail.com>



From nobody Sun Jul 21 07:15:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C214A1200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:15:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cBuQmxqDDsWB for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:15: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 27914120075 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:15:53 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:15:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718552; bh=JoHM1YcejExQv3Kq3O7TCKf+hPW3ygRAQ4/RhcLacDI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=l4y5OyPDrAkYz6wijRnmnGmaVfBhhgrT25osqtXNHklni9kjxe9Adve6riHvs8R4Y 7mLq/aacagH7TsFmuVJDUKjRYcJnVPIzpmKBSncxhWXgOYvBcKXMQwqXz1FLanIyAd pWLePq2V+EWtxCuPxfXp+XWVTsEpevdFDl8xtS/g=
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/2915/push/3839306040@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3473984017d_277e3fdeecacd9641873b5"; 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/8c8_j5tL1GV4xfr4GGxYJ0C-g8U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:15:55 -0000

----==_mimepart_5d3473984017d_277e3fdeecacd9641873b5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

e4222702990931ae6002bff60fdf5f2c4d835cf8  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/2915/files/c98ce90760579926bf0983cb2a85b86232e56058..e4222702990931ae6002bff60fdf5f2c4d835cf8

----==_mimepart_5d3473984017d_277e3fdeecacd9641873b5
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/e4222702990931ae6002bff60fdf5f2c4d835cf8">e422270</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/2915/files/c98ce90760579926bf0983cb2a85b86232e56058..e4222702990931ae6002bff60fdf5f2c4d835cf8?email_source=notifications&amp;email_token=AFTOJK2DCHRSKMFQ7VEFN4DQARVRRA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSMZQGYYDIMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3J4T6VUOADYNKSZVDQARVRRANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Q7K2OOBDP3ZXBG4TQARVRRA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSMZQGYYDIMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915/files/c98ce90760579926bf0983cb2a85b86232e56058..e4222702990931ae6002bff60fdf5f2c4d835cf8?email_source=notifications\u0026email_token=AFTOJK2DCHRSKMFQ7VEFN4DQARVRRA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSMZQGYYDIMA",
"url": "https://github.com/quicwg/base-drafts/pull/2915/files/c98ce90760579926bf0983cb2a85b86232e56058..e4222702990931ae6002bff60fdf5f2c4d835cf8?email_source=notifications\u0026email_token=AFTOJK2DCHRSKMFQ7VEFN4DQARVRRA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSMZQGYYDIMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3473984017d_277e3fdeecacd9641873b5--


From nobody Sun Jul 21 07:17:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6D343120089 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:17:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 026eC95ryiVp for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:17: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 B9EE9120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:17:01 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:17:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718621; bh=fwx8paafnGre9AjzIWbiR+vhUr1DPJguX/Pqv+ho1Ek=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jxprZd+YC6X6ajtayGBR5SM32+FhZ3XF/LHUndNso0iSuUXnDOv8u9sa2+6brbnG6 NFooD4yz13FrkrtMb/dasBGZEKQe/aoGUg/4bESCK5DaZo/IJ2hh+cFr2fDmskFXAJ /aScuz8hVQSMV78NwLetyDB5hM8UIjLZNcaNpA20=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EXFPTPLPOO42LA753IGTFZEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264539406@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3473dce70c1_42263fd1008cd960283749"; 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/fgaf2ETkluRWki2ozFHgdJjG3GI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:17:04 -0000

----==_mimepart_5d3473dce70c1_42263fd1008cd960283749
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 

If you send 1, it might be lost.  Ideally, fewer is better, so the question of 1 or 2 was left to implementers.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2915#discussion_r305620339
----==_mimepart_5d3473dce70c1_42263fd1008cd960283749
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2915#discussion_r305620339">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 
</pre>
<p>If you send 1, it might be lost.  Ideally, fewer is better, so the question of 1 or 2 was left to implementers.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications&amp;email_token=AFTOJK47X3VBALGZQVSI5GLQARVVZA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI2DQ#discussion_r305620339">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJUPVCSWVSZM7B2DDQARVVZANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5DNO53BL7X2H3CL7DQARVVZA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI2DQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK47X3VBALGZQVSI5GLQARVVZA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI2DQ#discussion_r305620339",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK47X3VBALGZQVSI5GLQARVVZA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI2DQ#discussion_r305620339",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3473dce70c1_42263fd1008cd960283749--


From nobody Sun Jul 21 07:17:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2D93B120089 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:17:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cQiknRPY0h2B for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:17: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 AF997120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:17:03 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:17:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718623; bh=d7X1In86uUTR2WYNMdlFWT2n/Ep+MBuQpaDGEkkSruw=; h=Date:From:To:Subject:From; b=eRx8Db69KC9r1EMm627IYcsJSF2rZN5g1D4+ja+kiZDWE8BxwemPVrRAMszZvDGte 9ZDMiA1ldKaj5vTRSYJm5JTG8Fm9AZr02l7laEfgjdzCjJ3f+6HDet9PrHe+MfkZA5 HzjTqWbAOXtGooIypaNuMfY3HT83rHBTQo9s3zjc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/296644-8fcf66@github.com>
Subject: [quicwg/base-drafts] 8fcf66: Script updating gh-pages from e4222702. [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/W-qvTp1PBi2O9JTxLcG52Mi6DH8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:17:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8fcf6663ec38498a5519c53b5aad1860588a18f4
      https://github.com/quicwg/base-drafts/commit/8fcf6663ec38498a5519c53b5aad1860588a18f4
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-pto-datagrams/draft-ietf-quic-recovery.html
    M ianswett-pto-datagrams/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e4222702. [ci skip]



From nobody Sun Jul 21 07:18:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A7D6C120089 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:18:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SzB645PSTNIQ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:18: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 429A6120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:18:25 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:18:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718704; bh=XBH4xrZNvkw08XoxfMJHuhW7hBMocQKHBRewkFd+4DM=; h=Date:From:To:Subject:From; b=xmVwBdjg5F//d/3yT9I3jFzRV8dnUQFmTGzJt+ha6c9OYJKBGcNpotSy/C4PhYh73 s5AT61BWPh4y+IUiBaIz4kRpy3NjaiY89lOs1eIqFnYQtq7M3ySiABT+gUU+u1Bvsy Ckwot2h16VyMcW+vIkwDNsKSegGfY6LRpfIxzZrg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/unrecoverable-without-1rtt/c04a11-a1d549@github.com>
Subject: [quicwg/base-drafts] a1d549: PTO applies prior to handshake confirmation
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Rp6stZ3a411LtE11IF8a8OIbFMA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:18:27 -0000

  Branch: refs/heads/unrecoverable-without-1rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c
      https://github.com/quicwg/base-drafts/commit/a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  PTO applies prior to handshake confirmation



From nobody Sun Jul 21 07:18:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9A36C120075 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:18:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IR20uRn4DGGL for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:18:33 -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 51D6D120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:18:33 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:18:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718712; bh=gbAQAsdqvrebt/fx4JHwTjpG/smGYGtLOWqP0/zAgpc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kQxo6fSTm9M1I6stA0RUnbWnI+oo9wEva4dPd1dZZD9iTNcO9DNn6dVI7/zsTWx88 8BH4fRXGu4d5sQ99qisYBw+9o38w06q53Nt5yqi/2GHi85LKA3nxJ+/oj2l7YK27wm s+LSO4R5WFxl7id6B1q+iBHgMctQkX3axr3clhD4=
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/2881/push/3839309690@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34743886009_70f63ffc48ccd95c3488e3"; 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/6wD2uV8pCKwfONTwim2XfvsWH4g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:18:35 -0000

----==_mimepart_5d34743886009_70f63ffc48ccd95c3488e3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c  PTO applies prior to handshake confirmation


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2881/files/c04a11e96ccc0959fd1eaf1074e34cda84d02002..a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c

----==_mimepart_5d34743886009_70f63ffc48ccd95c3488e3
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/a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c">a1d5495</a>  PTO applies prior to handshake confirmation</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/2881/files/c04a11e96ccc0959fd1eaf1074e34cda84d02002..a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c?email_source=notifications&amp;email_token=AFTOJKZETLGHIAHBEWDHT2DQARV3RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMZQHE3DSMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4IMPRDDXDMHTRP6J3QARV3RANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJFH44WOK73HGRR6DQARV3RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMZQHE3DSMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881/files/c04a11e96ccc0959fd1eaf1074e34cda84d02002..a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c?email_source=notifications\u0026email_token=AFTOJKZETLGHIAHBEWDHT2DQARV3RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMZQHE3DSMA",
"url": "https://github.com/quicwg/base-drafts/pull/2881/files/c04a11e96ccc0959fd1eaf1074e34cda84d02002..a1d5495f4a0e1e0ba95a64afa38e3f899b874a0c?email_source=notifications\u0026email_token=AFTOJKZETLGHIAHBEWDHT2DQARV3RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNRRHA3DMMSQOVZWQIZTHAZTSMZQHE3DSMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34743886009_70f63ffc48ccd95c3488e3--


From nobody Sun Jul 21 07:19:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 54B0212012E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:19:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jh9tNeKLNLnG for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:19: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 C211B12012B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:19:42 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:19:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718781; bh=doXDrFzrrD6BQdawqxlveuxn9aFCp/sYkGjWtX1auVc=; h=Date:From:To:Subject:From; b=Kdqe+8iYXsf2CgYaYGAttPKtNHU/ULnyt5scVmTYm8d2ZgCBXol3LSOIqIA31J7jr wvd/dI7U5jBLHIM6SmdWojnCbBRvLv4nPrXI5DRKQYYvQE4c/cCIvYAFpHVjLRhAG/ hkrKHcuwGS4GB00l4aUAER/IJUiITsZH8K175EC4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8fcf66-521186@github.com>
Subject: [quicwg/base-drafts] 521186: Script updating gh-pages from a1d5495f. [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/xc91Rn4tCz71r5yqRJPwo1CxsrU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:19:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5211868383787da3a0b86e05dacc6dfba3bd1cdb
      https://github.com/quicwg/base-drafts/commit/5211868383787da3a0b86e05dacc6dfba3bd1cdb
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M index.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.html
    M unrecoverable-without-1rtt/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from a1d5495f. [ci skip]



From nobody Sun Jul 21 07:21:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3DE59120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:21:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sZUktDVM-Twv for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:21:16 -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 08586120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:21:16 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:21:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563718875; bh=MbFBYz2/iwl8tnY25p5doB2aSmMa3xY8UpwVo2HiX14=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FhctyAE6xSAip7gX10CS1q7l7w5dDFPQV64f1yU757JAQBUeU9s+Fqax81tmxsU+g uvHri6/FSYBaeZ1cvHiWM/6zUKHKUh2cvO8F+KM66j8rdmUy5dc/O37oY4iIBy9xdQ 3rhZ6DK4PWSboHcjffBdPYGA7WWyH35TIxT94Fiw=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7A3QBPUT7KD4XIE253IGTVXEVBNHHBYDQKAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2911/513558600@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2911@github.com>
References: <quicwg/base-drafts/issues/2911@github.com>
Subject: Re: [quicwg/base-drafts] Separate HTTP/3 stream errors from connection errors. (#2911)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3474db2b30f_71063ffc48ccd95c289896"; 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/uNcyGsiQeTuPRuWJdA6PLDUsdAE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:21:17 -0000

----==_mimepart_5d3474db2b30f_71063ffc48ccd95c289896
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Partially related issue - https://github.com/quicwg/base-drafts/issues/2816

-- 
You are receiving 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/2911#issuecomment-513558600
----==_mimepart_5d3474db2b30f_71063ffc48ccd95c289896
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Partially related issue - <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458057957" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2816" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2816/hovercard" href="https://github.com/quicwg/base-drafts/issues/2816">#2816</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/2911?email_source=notifications&amp;email_token=AFTOJK4GGJIQSZ3MBP2C2UTQARWFXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEQSA#issuecomment-513558600">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7PKFMOYMCT4TBIFUDQARWFXANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZV4RYOXJAQP4CA4DDQARWFXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEQSA.gif" height="1" width="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/2911?email_source=notifications\u0026email_token=AFTOJK4GGJIQSZ3MBP2C2UTQARWFXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEQSA#issuecomment-513558600",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK4GGJIQSZ3MBP2C2UTQARWFXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEQSA#issuecomment-513558600",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3474db2b30f_71063ffc48ccd95c289896--


From nobody Sun Jul 21 07:27:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 67E891201D6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:27:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4rXJyS2Z0wKy for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:27: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 27CF312015F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:27:21 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:27:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563719240; bh=+FUacrtaoebwWDCJBPiHPxoVE4s1k9xhOQK9LplrGyg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LQZSzlAoR28S7re0k3hVjvpRDWfoV/yZqn/HTrQ5LItGsYZto6spu552jNsJXaRrR +oyHjY9xh4qxkR23tQsp6QipidRQ/7LMpi0jFgxBas128FewlaR8AXr0OctQc/+5Gl BMSl7kZq5W/+5J+i4yqxqZQZso/nYAmfbZn6RtaA=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7BXTTP4PXTRZCN7GN3IGUMREVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264539837@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d347648a89f_70c63faee84cd96c58125b"; 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/eP0KTOLjIgCJ8fqXqMrhM46icxQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:27:34 -0000

----==_mimepart_5d347648a89f_70c63faee84cd96c58125b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 

I mean, there is no limit to coalescing AFAIK, so the limit of two here seems arbitrary, albeit probably very sensible.
https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.12.2

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2915#discussion_r305620785
----==_mimepart_5d347648a89f_70c63faee84cd96c58125b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2915#discussion_r305620785">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 
</pre>
<p>I mean, there is no limit to coalescing AFAIK, so the limit of two here seems arbitrary, albeit probably very sensible.<br>
<a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.12.2" rel="nofollow">https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.12.2</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/2915?email_source=notifications&amp;email_token=AFTOJK3IIC25GFOS2LDU4DLQARW4RA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI5PI#discussion_r305620785">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZTBDOPVLTWR4V5XFLQARW4RANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2VY4EGCD6DOWEH573QARW4RA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI5PI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK3IIC25GFOS2LDU4DLQARW4RA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI5PI#discussion_r305620785",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK3IIC25GFOS2LDU4DLQARW4RA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CI5PI#discussion_r305620785",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d347648a89f_70c63faee84cd96c58125b--


From nobody Sun Jul 21 07:27:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7DB1B1201C6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:27:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1f5xObp6ezUO for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:27: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 C7E4E12016C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:27:30 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:27:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563719249; bh=w4HzdZRdCNoQGMQO3s1JuRFEVOI6YUR0aQp+zRbYTH8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LnzUEE6QclyIhvzDayFoPdtMCV6shVS8xAzbhjO9/xMhXMa5Wm9vo2c+ijj0nyR64 vb8fWtTJ3M8FkrcBExUXUSJrLPqc/7JxBPA1VlJ56Hc+6ks7OJwe55WSgq4r5UQEbe uBDDdx780RyppJbTH2/gu3aPpQUExJN809fwtj6w=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ATNJS7VDWFLTI3WF3IGUNDEVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2895/513559138@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2895@github.com>
References: <quicwg/base-drafts/issues/2895@github.com>
Subject: Re: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d347651d761c_708e3faf592cd95c26994d"; 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/fwUy9yEA1Tj0-XwKFRLqtDx7N_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: Sun, 21 Jul 2019 14:27:40 -0000

----==_mimepart_5d347651d761c_708e3faf592cd95c26994d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Makes sense to me.  I hadn't considered data that isn't retransmitted after loss, which is a little embarrassing.

-- 
You are receiving 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/2895#issuecomment-513559138
----==_mimepart_5d347651d761c_708e3faf592cd95c26994d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Makes sense to me.  I hadn't considered data that isn't retransmitted after loss, which is a little embarrassing.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2895?email_source=notifications&amp;email_token=AFTOJKY3P6C2XLSTTV227XLQARW5DA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEUYQ#issuecomment-513559138">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UR4EKZURPPLHZO5TQARW5DANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2HVLVPE4XD45NZXEDQARW5DA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEUYQ.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJKY3P6C2XLSTTV227XLQARW5DA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEUYQ#issuecomment-513559138",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJKY3P6C2XLSTTV227XLQARW5DA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OEUYQ#issuecomment-513559138",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d347651d761c_708e3faf592cd95c26994d--


From nobody Sun Jul 21 07:39:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EF03912012A for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:38:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GYtpsr9kYwLE for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:38: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 4013A120136 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:38:56 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:38:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563719935; bh=AYakbBUAvMABjNSZ8UuvdfP7Ev+WVbkK+eT+p3wwnnc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1Bkk1GfSJhaiqQqQgpZHZk54X1Yu52Rap/ZTCru6utWRX+TsslgiwyEHsbV0IZkfW ENp4gFJu1iTkyAlQ+3x5kKQlGjydq1xDRYsrB+iY2zwXFd2QpN/bGVqwUOFBgFR9YU Gv+DA99GAn+wuTtmB5CDk3tiOphc48PnrqiSDk/c=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KDFPRSORUENUFXCV3IGVX7EVBNHHBYDQKAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2911/513560015@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2911@github.com>
References: <quicwg/base-drafts/issues/2911@github.com>
Subject: Re: [quicwg/base-drafts] Separate HTTP/3 stream errors from connection errors. (#2911)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3478ff5fe64_a003ff392acd96851562"; 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/WsezbpviuK44rEZwAlc7WYS9-1I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:39:05 -0000

----==_mimepart_5d3478ff5fe64_a003ff392acd96851562
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

One of the thorny points to this discussion is that promotion of stream errors to connection errors is a feature of RFC 7540 Section 5.4.1

> An endpoint can end a connection at any time.  In particular, an
   endpoint MAY choose to treat a stream error as a connection error.

So deviating away from this behaviour means that the feature set diverges, which may add complexity to implmentations that attempt to support both (or propogate between H2 and H3 https://github.com/quicwg/base-drafts/issues/2817).

-- 
You are receiving 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/2911#issuecomment-513560015
----==_mimepart_5d3478ff5fe64_a003ff392acd96851562
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>One of the thorny points to this discussion is that promotion of stream errors to connection errors is a feature of RFC 7540 Section 5.4.1</p>
<blockquote>
<p>An endpoint can end a connection at any time.  In particular, an<br>
endpoint MAY choose to treat a stream error as a connection error.</p>
</blockquote>
<p>So deviating away from this behaviour means that the feature set diverges, which may add complexity to implmentations that attempt to support both (or propogate between H2 and H3 <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="458107043" data-permission-text="Issue 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>).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2911?email_source=notifications&amp;email_token=AFTOJK6S4W25ROJLYOR2HNLQARYH7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OE3TY#issuecomment-513560015">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7PC5SOVZHNT62V62TQARYH7ANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY57ADPCSFMI5EQ7ZDQARYH7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OE3TY.gif" height="1" width="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/2911?email_source=notifications\u0026email_token=AFTOJK6S4W25ROJLYOR2HNLQARYH7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OE3TY#issuecomment-513560015",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK6S4W25ROJLYOR2HNLQARYH7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OE3TY#issuecomment-513560015",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3478ff5fe64_a003ff392acd96851562--


From nobody Sun Jul 21 07:45:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2E9651201D4 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:45:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HpbaiwCMCL7N for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:45: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 5B96E12016F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:45:03 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:45:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563720302; bh=yAtQJkIw6SkWgGdyARdlt4PNeBkzhGDpMP1KPOV9GvU=; h=Date:From:To:Subject:From; b=ustWaUfx4PJg8YFQEemDp+hbrhPLv6Cg4ihQ7mDDEfJvTpyVmg00JYG590DoVdMQf NG6leZm7UCnpPx5NuuQkc0dGbIHBcy01IqPyBPwYHwU67+LnQvrnqvCHooUo/v1AVy EV2XyPJfD8g85QNU4atZcbget6unGZb2+FbkpEDE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/483d20-7f3f34@github.com>
Subject: [quicwg/base-drafts] 7f3f34: Stop referencing QUIC 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/u0afx1ZMRPYLiCE7cBJnDA7cCnk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:45:11 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a
      https://github.com/quicwg/base-drafts/commit/7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Stop referencing QUIC Transport

in QUIC Transport.



From nobody Sun Jul 21 07:45:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E1F22120158 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:45:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id teffjKArAdWd for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:45:11 -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 11B1F120131 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:45:11 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:45:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563720310; bh=OwCf4s0C26PbR0jjLncOCX2q0zrcYJ3cJbnOz5PSZlY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rVad1YWnFfH/PG+rjP1KO9ZK8Cs9xuIAxcWYeRw3dz0pcL1tWsmDJIiDuapm1da2l 2LQTSKze4N3DRDmq5HKh5j/gxAgYqaRKP/cuSbH6laGWPqhwVV1tFpN+3SedsVYwdu y3YT78jrx8VZ34d9ObIA0FysOkXHkTiUdajUU0hQ=
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/2916/push/3839346864@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d347a762d1b4_67a33fb7968cd95c8862f"; 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/O5wvKLnN9hTJg0xteOolc0oFHoo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:45:18 -0000

----==_mimepart_5d347a762d1b4_67a33fb7968cd95c8862f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a  Stop referencing QUIC Transport


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/483d20c66ef39e058d5280b9ccc00cb0bcc5c8de..7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a

----==_mimepart_5d347a762d1b4_67a33fb7968cd95c8862f
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/7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a">7f3f349</a>  Stop referencing QUIC Transport</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/2916/files/483d20c66ef39e058d5280b9ccc00cb0bcc5c8de..7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a?email_source=notifications&amp;email_token=AFTOJK6E6I3MNH3QO7JOLXLQARY7NA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZUGY4DMNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK66XIXA6EIVWC2KCKDQARY7NANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4VTUMQMID6OSG5CCLQARY7NA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZUGY4DMNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916/files/483d20c66ef39e058d5280b9ccc00cb0bcc5c8de..7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a?email_source=notifications\u0026email_token=AFTOJK6E6I3MNH3QO7JOLXLQARY7NA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZUGY4DMNA",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/483d20c66ef39e058d5280b9ccc00cb0bcc5c8de..7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a?email_source=notifications\u0026email_token=AFTOJK6E6I3MNH3QO7JOLXLQARY7NA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZUGY4DMNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d347a762d1b4_67a33fb7968cd95c8862f--


From nobody Sun Jul 21 07:52:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3DEEF120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:52:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0CqteNmob606 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:52: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 1FE39120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:52:10 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:52:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563720729; bh=S+cYAf1rjU3ScnLLoxzBLfDGFLbnYj4guJGuknha9BU=; h=Date:From:To:Subject:From; b=ngFtebQxuB9thl7ea4AFiq8bwcfpYulyH002WLmCwFPmPOp5Jo/OOVLFDN2zjvCMg g4z+s9Etbx4aIe5JHkQQlWu2Q7oDX/kFAWwTxgO5lQ+F0RQTvyU7zAQ10Pa3V89kPd 6JBAm5ZdZ/R7MqP4bZLVSGZJ0RkRjkRWY3ldZ998=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/7f3f34-33f491@github.com>
Subject: [quicwg/base-drafts] 33f491: Remove obsolete 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/ZEYQqiJrVKHW_wF9TWrZp6CfJ_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: Sun, 21 Jul 2019 14:52:11 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 33f491c033d84b9e536fd4133e4899cc41a6fd60
      https://github.com/quicwg/base-drafts/commit/33f491c033d84b9e536fd4133e4899cc41a6fd60
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove obsolete text

Removed:
"Endpoints SHOULD send acknowledgments for packets containing CRYPTO frames with
a reduced delay; see Section 6.2 of {{QUIC-RECOVERY}}."
Obsolete now that #2646 landed and the default max_ack_delay for Initial and Handshake is 0.



From nobody Sun Jul 21 07:52:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 32292120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:52:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qKmQhwqPxW8f for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 07:52: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 AA236120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 07:52:18 -0700 (PDT)
Date: Sun, 21 Jul 2019 07:52:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563720737; bh=TL80TquwDe6wBY/9/jKhSxVSimsezVqsg/rDpVPK8Lg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yuctN7AAt00Kexz3K6r1zh61qKGokmUQbZinzrCP6rVz3QXx/EUdUBYTBOWrihEib 5ipQPcMhUfEyTitYtgAEw7+avY0wOuMXBxu5S5PW+2zYxVFncP9ONH8cELY7BREs40 G5OKibDSBpZ6Wjn+62x+UOufJKCdNcTGJOfqz7lY=
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/2916/push/3839356883@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d347c219e774_66ff3fce89acd96440218"; 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/8VziO-OD1T9TvP_QWJHvT7fzO5E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 14:52:20 -0000

----==_mimepart_5d347c219e774_66ff3fce89acd96440218
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

33f491c033d84b9e536fd4133e4899cc41a6fd60  Remove obsolete text


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a..33f491c033d84b9e536fd4133e4899cc41a6fd60

----==_mimepart_5d347c219e774_66ff3fce89acd96440218
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/33f491c033d84b9e536fd4133e4899cc41a6fd60">33f491c</a>  Remove obsolete text</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/2916/files/7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a..33f491c033d84b9e536fd4133e4899cc41a6fd60?email_source=notifications&amp;email_token=AFTOJK4G2EV74JBO6POX3P3QARZ2DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZVGY4DQMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4SDLWVCGFGF37SO43QARZ2DANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NAZ3ATXF4UOXFFP3QARZ2DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZVGY4DQMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916/files/7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a..33f491c033d84b9e536fd4133e4899cc41a6fd60?email_source=notifications\u0026email_token=AFTOJK4G2EV74JBO6POX3P3QARZ2DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZVGY4DQMY",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/7f3f3494e6ff9f28818b1dbf0b23087a948eeb7a..33f491c033d84b9e536fd4133e4899cc41a6fd60?email_source=notifications\u0026email_token=AFTOJK4G2EV74JBO6POX3P3QARZ2DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZVGY4DQMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d347c219e774_66ff3fce89acd96440218--


From nobody Sun Jul 21 08:04:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5A37B120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:04:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Jcp6vIc9BoR9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:04:28 -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 EC789120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:04:27 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:04:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563721467; bh=c4U59kGbjoAGPYjlDieG8BOEjVVUUmTVSDpAwmnWbEQ=; h=Date:From:To:Subject:From; b=vlbgF5sErJo3IcSZbWieBSdrxASzjfCaH6NXrrPJe8lWIQhMSDxX43/gQ3weqZnyn Ip+oGJyfhcP+tN7x843SyKfrFuTY120IDx26LLweOP1iBrP7xSAyhSe2vcv+si1y5j BrOM9De/x/EqOmYQbbaMiDZtAFt8XcrYGnte0VNE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/33f491-550fe9@github.com>
Subject: [quicwg/base-drafts] 550fe9: Stop referencing host-delay 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/ElCK11qqOLpOnNELhadNSDxHdyc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 15:04:29 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 550fe927af57e81eaeefac9da4da6be154161952
      https://github.com/quicwg/base-drafts/commit/550fe927af57e81eaeefac9da4da6be154161952
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Stop referencing host-delay in Recovery

Instead reference section 13.2 of transport



From nobody Sun Jul 21 08:04:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BAAA1120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:04:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id V3dt0mwAgbqk for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:04:35 -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 8D3C2120019 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:04:35 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:04:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563721475; bh=QPXMC25mSX4e1caenhrqXtvYXCI3LSOQUbwdg/I1Mvc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sDjO4q9EMuUmSbSJAFAjEvrpw7KVVF90x0mV/ueGHmGTFbpgKgimXuT/j3SGMSw5Y Ok7xVQnTHfn4w1LZGnFmnXbPIJwPnFZemtQRA2Z+dJ+TvXyokZjIm3mZ/L1mgWu6hQ T05/MsGCTouOSpgpZ+F3A2kkM64+NohF1K4diFB8=
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/2916/push/3839374759@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d347f02c8dc0_725c3fa1c84cd96c132217"; 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/0M7_-GlZ7iJnGa9SRI3noE4hriQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 15:04:37 -0000

----==_mimepart_5d347f02c8dc0_725c3fa1c84cd96c132217
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

550fe927af57e81eaeefac9da4da6be154161952  Stop referencing host-delay in Recovery


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/33f491c033d84b9e536fd4133e4899cc41a6fd60..550fe927af57e81eaeefac9da4da6be154161952

----==_mimepart_5d347f02c8dc0_725c3fa1c84cd96c132217
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/550fe927af57e81eaeefac9da4da6be154161952">550fe92</a>  Stop referencing host-delay in Recovery</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/2916/files/33f491c033d84b9e536fd4133e4899cc41a6fd60..550fe927af57e81eaeefac9da4da6be154161952?email_source=notifications&amp;email_token=AFTOJK6R7VMVI6DLIKMKEZTQAR3IFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZXGQ3TKOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7IADGKF5DC5GLXSELQAR3IFANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK75Y3V3PH5H433M65TQAR3IFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZXGQ3TKOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916/files/33f491c033d84b9e536fd4133e4899cc41a6fd60..550fe927af57e81eaeefac9da4da6be154161952?email_source=notifications\u0026email_token=AFTOJK6R7VMVI6DLIKMKEZTQAR3IFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZXGQ3TKOI",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/33f491c033d84b9e536fd4133e4899cc41a6fd60..550fe927af57e81eaeefac9da4da6be154161952?email_source=notifications\u0026email_token=AFTOJK6R7VMVI6DLIKMKEZTQAR3IFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSMZXGQ3TKOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d347f02c8dc0_725c3fa1c84cd96c132217--


From nobody Sun Jul 21 08:06:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C6D8C120019 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:06:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Uzm_DH_dxl8a for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:06: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 3A032120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:06:25 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:06:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563721584; bh=H5PRLBeclaesa1J5lNC9azhuMp/N4vqKPGH0TYRG0Zs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UZxaZWJrER0OpopXe+o6NSAkMiG3P2KwfRD/fBjWGVP8G9CnQoZ2mc8vmlUeI0vDj XEipgJQiQVZRQs9gFaub9CaJX3r++8wJ9l9FsJk1gM9QcTMYV5u6SIgh9YgGm6fF2Q pRxCaE3CNnf6U93Todvfqd1Byv49+f1g73n3Ihl8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYUUFA75WL74B5IELF3IGY7BEVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264541509@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d347f70448cd_5823faece0cd96c143262"; 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/5n0SW-kQApnXwcgD7QWNyzjIdz0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 15:06:27 -0000

----==_mimepart_5d347f70448cd_5823faece0cd96c143262
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/2881#pullrequestreview-264541509
----==_mimepart_5d347f70448cd_5823faece0cd96c143262
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2881?email_source=notifications&amp;email_token=AFTOJK4JF5SXA73L4AMW4NLQAR3PBA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CJKRI#pullrequestreview-264541509">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MTMWXZMWSOS5RDJTQAR3PBANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK62KVTYOCXGGMQ64UTQAR3PBA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CJKRI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4JF5SXA73L4AMW4NLQAR3PBA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CJKRI#pullrequestreview-264541509",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK4JF5SXA73L4AMW4NLQAR3PBA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CJKRI#pullrequestreview-264541509",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d347f70448cd_5823faece0cd96c143262--


From nobody Sun Jul 21 08:28:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 279CF12004D for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:28:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l8213jG5sxhw for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:27: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 EA667120134 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:27:58 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:27:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563722878; bh=hpenksd3m1jpidYec8qBjDTN00LLZqqduvq1qCLaT0o=; h=Date:From:To:Subject:From; b=jnbLTw5YLl7vpQ/yYSlXKCKiAoIWfFMxXLB77kmqxDDh0g5/F3oEvJP3tV1x46HjD WbrhtZpB66zysOnoEOzhZy3j3reAU/Uo3adq1/3YtxPy5o1I12djwru9cnnpgk9/x2 mq5IsOwzLMv1lYETmtERUdKg5LrzqaLg7Jq6ra0Y=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/550fe9-b1cd75@github.com>
Subject: [quicwg/base-drafts] b1cd75: Fix CircleCI (hopefully)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ewcXcToOrQeI8k87BdSOH2u9H9E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 15:28:00 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: b1cd751bf703af2bc1fc2e0efec54dc83d10101a
      https://github.com/quicwg/base-drafts/commit/b1cd751bf703af2bc1fc2e0efec54dc83d10101a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix CircleCI (hopefully)

By renaming "ACK Ranges" to "Managing ACK Ranges"



From nobody Sun Jul 21 08:28:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6FF30120019 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:28:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eDO0YBq4DCHK for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:28: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 D80D512004D for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:28:07 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:28:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563722886; bh=OfVo6ShV0RMb+bBbsTGVgU8hpqlg5C5tM+f9sJPBEwQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ft1o1w5u4sXmhuuQ7FGsMUMbo0ClMzTfS3oxZY03gYJtuWzHvh0AFYc7idOabqtvY SOmkCLQYAb6Q06VOGvhf4UFJkFz40WRKZ7xv4pAh/N5pzvFNAzUGs9eo1WMYLNDZHd peAbHGMno2dnVr2wASP79m5Wy9rMzgr6EsmZyGBM=
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/2916/push/3839407667@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d348486d311b_7a8b3fa1c84cd96c26088c"; 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/uE2NTaTPvwZFRY4GbUTqW9kt7a0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 15:28:09 -0000

----==_mimepart_5d348486d311b_7a8b3fa1c84cd96c26088c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

b1cd751bf703af2bc1fc2e0efec54dc83d10101a  Fix CircleCI (hopefully)


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/550fe927af57e81eaeefac9da4da6be154161952..b1cd751bf703af2bc1fc2e0efec54dc83d10101a

----==_mimepart_5d348486d311b_7a8b3fa1c84cd96c26088c
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/b1cd751bf703af2bc1fc2e0efec54dc83d10101a">b1cd751</a>  Fix CircleCI (hopefully)</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/2916/files/550fe927af57e81eaeefac9da4da6be154161952..b1cd751bf703af2bc1fc2e0efec54dc83d10101a?email_source=notifications&amp;email_token=AFTOJKYLFIONKH5PHXOBPQ3QAR6ANA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNBQG43DMNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYO6QIH6AEKVU673V3QAR6ANANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK45Y65XYOTJDWNLEP3QAR6ANA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNBQG43DMNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916/files/550fe927af57e81eaeefac9da4da6be154161952..b1cd751bf703af2bc1fc2e0efec54dc83d10101a?email_source=notifications\u0026email_token=AFTOJKYLFIONKH5PHXOBPQ3QAR6ANA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNBQG43DMNY",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/550fe927af57e81eaeefac9da4da6be154161952..b1cd751bf703af2bc1fc2e0efec54dc83d10101a?email_source=notifications\u0026email_token=AFTOJKYLFIONKH5PHXOBPQ3QAR6ANA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNBQG43DMNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d348486d311b_7a8b3fa1c84cd96c26088c--


From nobody Sun Jul 21 08:54:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 48FF0120098 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:54:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cpXamgwa39Cy for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:54: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 7C8E012004D for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:54:39 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:54:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563724478; bh=2dwBwddkvizAXJX92uNFOERUWs6W/tZToHX+xa4W90A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yumo3uIIoTv19S2HSr5aM+RldiwpBjHiN5dcz1RDJRxut+r5zDldsbB1Dh5d/UHq2 NQZu9K4ZsMWSHWsqpEaHlF28j3RXBdpD2w2af/VZZNM34OKOuIBoGOhMA1SqRMVdnE /7G4mO1czan+wc6GXgBUYtV29tpPiGv1WsQUtztc=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3UMKQMHYE6ADJGAOF3IG6T5EVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/513565924@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d348abe90eb5_72543fa1c84cd96c201493"; 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/ZfxsEB9Pp4lYhbIJtemz-krscR4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 15:54:41 -0000

----==_mimepart_5d348abe90eb5_72543fa1c84cd96c201493
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

>From the [Discarding Handshake Keys Section](https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#discarding-handshake-keys):

> Most application protocols will send data after the handshake, resulting in acknowledgements that allow both endpoints to discard their handshake keys promptly. Endpoints that do not have reason to send immediately after completing the handshake MAY send ack-eliciting frames, such as PING, which will cause the handshake to be confirmed when they are acknowledged.

We could change this MAY to a SHOULD and it'll resolve this 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/2863#issuecomment-513565924
----==_mimepart_5d348abe90eb5_72543fa1c84cd96c201493
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>From the <a href="https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#discarding-handshake-keys" rel="nofollow">Discarding Handshake Keys Section</a>:</p>
<blockquote>
<p>Most application protocols will send data after the handshake, resulting in acknowledgements that allow both endpoints to discard their handshake keys promptly. Endpoints that do not have reason to send immediately after completing the handshake MAY send ack-eliciting frames, such as PING, which will cause the handshake to be confirmed when they are acknowledged.</p>
</blockquote>
<p>We could change this MAY to a SHOULD and it'll resolve this 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/2863?email_source=notifications&amp;email_token=AFTOJK3NQ4PE66R4C6DSSMDQASBD5A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGJZA#issuecomment-513565924">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK73K7LAAI4EWEQ647LQASBD5ANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4SIJB43FKWJR532U3QASBD5A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGJZA.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJK3NQ4PE66R4C6DSSMDQASBD5A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGJZA#issuecomment-513565924",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJK3NQ4PE66R4C6DSSMDQASBD5A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGJZA#issuecomment-513565924",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d348abe90eb5_72543fa1c84cd96c201493--


From nobody Sun Jul 21 08:56:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B25341201E3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:56:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.281
X-Spam-Level: 
X-Spam-Status: No, score=-6.281 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JDvMr-TXQ3CH for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:56:17 -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 BD79A120183 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:56: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 4294512110D for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:56:17 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:56:16 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27NZ3BSUUACL36KEV3IG62BEVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/513566038@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d348b20efe61_64da3f8e580cd96c46764b"; 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/ovSR82tZ2LOBPxZcwissPnjSKCk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 15:56:27 -0000

----==_mimepart_5d348b20efe61_64da3f8e580cd96c46764b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm sorry, but I'm having trouble following the initial example.

You said that the client sent a 1-RTT packet and it got lost. In this case, it will continue to retransmit it and will eventually get an ACK, at which point the handshake will be confirmed and it will drop the keys and stop retransmitting ClientFinished. 

And as David indicates above, if the client is not sending at all, then it can just send ack-eliciting frames.




-- 
You are receiving 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/2863#issuecomment-513566038
----==_mimepart_5d348b20efe61_64da3f8e580cd96c46764b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm sorry, but I'm having trouble following the initial example.</p>
<p>You said that the client sent a 1-RTT packet and it got lost. In this case, it will continue to retransmit it and will eventually get an ACK, at which point the handshake will be confirmed and it will drop the keys and stop retransmitting ClientFinished.</p>
<p>And as David indicates above, if the client is not sending at all, then it can just send ack-eliciting frames.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2863?email_source=notifications&amp;email_token=AFTOJK7TANHHSWHO5EO7CI3QASBKBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGKVQ#issuecomment-513566038">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ND3ZQ3GLIQGRH7GDQASBKBANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4HOYDQJUSRNWBG2ETQASBKBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGKVQ.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJK7TANHHSWHO5EO7CI3QASBKBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGKVQ#issuecomment-513566038",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJK7TANHHSWHO5EO7CI3QASBKBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGKVQ#issuecomment-513566038",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d348b20efe61_64da3f8e580cd96c46764b--


From nobody Sun Jul 21 08:56:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E4272120020 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:56:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.281
X-Spam-Level: 
X-Spam-Status: No, score=-6.281 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9wwn_40U2Vdo for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 08:56: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 494EE120139 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:56: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 807948C0C92 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 08:56:47 -0700 (PDT)
Date: Sun, 21 Jul 2019 08:56:47 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JLQOGBQA6PYOVUJ53IG637EVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/513566070@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d348b3f711be_64873f8e580cd96c383821"; 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/y0DkiOELon51V2tx0F6AwbaEu-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, 21 Jul 2019 15:56:50 -0000

----==_mimepart_5d348b3f711be_64873f8e580cd96c383821
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> We could change this MAY to a SHOULD and it'll resolve this issue.

No, it doesn't. As I described in the initial example, and in https://github.com/quicwg/base-drafts/issues/2863#issuecomment-507080436, the client won't retransmit 1-RTT data until the handshake is completed.

-- 
You are receiving 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/2863#issuecomment-513566070
----==_mimepart_5d348b3f711be_64873f8e580cd96c383821
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>We could change this MAY to a SHOULD and it'll resolve this issue.</p>
</blockquote>
<p>No, it doesn't. As I described in the initial example, and in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="462368523" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2863" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2863/hovercard?comment_id=507080436&amp;comment_type=issue_comment" href="https://github.com/quicwg/base-drafts/issues/2863#issuecomment-507080436">#2863 (comment)</a>, the client won't retransmit 1-RTT data until the handshake is completed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2863?email_source=notifications&amp;email_token=AFTOJK6QCJL3S6KIEMQRP7DQASBL7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGK5Q#issuecomment-513566070">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ONE3Q5M2QTXDUD63QASBL7ANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK257K5G6WYO4LUNNYLQASBL7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGK5Q.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJK6QCJL3S6KIEMQRP7DQASBL7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGK5Q#issuecomment-513566070",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJK6QCJL3S6KIEMQRP7DQASBL7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OGK5Q#issuecomment-513566070",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d348b3f711be_64873f8e580cd96c383821--


From nobody Sun Jul 21 10:10:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 59A6E120089 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:10:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kfK6lhLVu3HS for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:10:42 -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 D94CF120020 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:10:41 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:10:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563729041; bh=Geb9JoCLfswNVv8tOmFk0Rcj1Y0YuKui8QxmZ+vI3OE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GOaIPOh9lzSt4NjPZNVDMVyRbruFjMsIyThc3V+FA7OnHy4SkCJkvxVj1y51X8FX+ eUDrnqknmig0X0tfq4b2h+pMOl906tXuDYSAFmtE6Fl2oiu90ssYUgop91BLPfXiML 8+2JOxufAwbSw+FgRjMsYNQdFCg210eQ/dE6avTE=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7G5CEPP37AMV63PQV3IHHRBEVBNHHBYDQKAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2911/513571273@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2911@github.com>
References: <quicwg/base-drafts/issues/2911@github.com>
Subject: Re: [quicwg/base-drafts] Separate HTTP/3 stream errors from connection errors. (#2911)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d349c90f09dd_17773f8cfd0cd964487035"; 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/tK39ppBsrpXipIIlFvU--xOPP2Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:10:44 -0000

----==_mimepart_5d349c90f09dd_17773f8cfd0cd964487035
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DaanDeMeyer 
> HTTP_NO_ERROR is only defined in the draft for usage in CONNECTION_CLOSE, I'm not sure when it would be used as a stream error (we have more specific error codes to indicate intent when closing a stream).

That's a good point. RFC 7540 uses NO_ERROR for instructing the client to stop sending the request when a response is provided early. In HTTP/3, we have created HTTP_EARLY_RESPONSE. But it might be a good idea to use HTTP_NO_ERROR in HTTP/3 too.

> HTTP_GENERAL_PROTOCOL_ERROR is only used as a stream error in the section discussing malformed requests/responses. I'd suggest using a more descriptive error for this case (HTTP_MALFORMED_MESSAGE for example) and treating HTTP_GENERAL_PROTOCOL_ERROR as solely a connection error.

HTTP_GENERAL_PROTOCOL_ERROR is a catch-all error code that can be for any reason. I'd prefer having that usable at stream-level too.

@LPardue 
> One of the thorny points to this discussion is that promotion of stream errors to connection errors is a feature of RFC 7540 Section 5.4.1

I'd prefer keeping the same design.

I think we need the freedom of promoting stream-level errors to connection errors. For example, when a server detects a suspicious activity by a client at a stream-level, it would make sense to close the 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/2911#issuecomment-513571273
----==_mimepart_5d349c90f09dd_17773f8cfd0cd964487035
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=9395011" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DaanDeMeyer">@DaanDeMeyer</a></p>
<blockquote>
<p>HTTP_NO_ERROR is only defined in the draft for usage in CONNECTION_CLOSE, I'm not sure when it would be used as a stream error (we have more specific error codes to indicate intent when closing a stream).</p>
</blockquote>
<p>That's a good point. RFC 7540 uses NO_ERROR for instructing the client to stop sending the request when a response is provided early. In HTTP/3, we have created HTTP_EARLY_RESPONSE. But it might be a good idea to use HTTP_NO_ERROR in HTTP/3 too.</p>
<blockquote>
<p>HTTP_GENERAL_PROTOCOL_ERROR is only used as a stream error in the section discussing malformed requests/responses. I'd suggest using a more descriptive error for this case (HTTP_MALFORMED_MESSAGE for example) and treating HTTP_GENERAL_PROTOCOL_ERROR as solely a connection error.</p>
</blockquote>
<p>HTTP_GENERAL_PROTOCOL_ERROR is a catch-all error code that can be for any reason. I'd prefer having that usable at stream-level too.</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=6571445" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LPardue">@LPardue</a></p>
<blockquote>
<p>One of the thorny points to this discussion is that promotion of stream errors to connection errors is a feature of RFC 7540 Section 5.4.1</p>
</blockquote>
<p>I'd prefer keeping the same design.</p>
<p>I think we need the freedom of promoting stream-level errors to connection errors. For example, when a server detects a suspicious activity by a client at a stream-level, it would make sense to close the 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/2911?email_source=notifications&amp;email_token=AFTOJK24T373CIYK3FIO3NDQASKBBA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OHTSI#issuecomment-513571273">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24OUCTDCQATUTU3PLQASKBBANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5YHOQROI5PMG6E3SLQASKBBA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OHTSI.gif" height="1" width="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/2911?email_source=notifications\u0026email_token=AFTOJK24T373CIYK3FIO3NDQASKBBA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OHTSI#issuecomment-513571273",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK24T373CIYK3FIO3NDQASKBBA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OHTSI#issuecomment-513571273",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d349c90f09dd_17773f8cfd0cd964487035--


From nobody Sun Jul 21 10:22:16 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1481D120151 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:22:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vzwmh2CkajWF for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:22:13 -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 915C7120131 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:22:13 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:22:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563729732; bh=2P2A3LS0YBq+uR+llMh7FdfQPrsL19OhMcm+b7OyaVA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hsihg+q0nPKYT4PvciOX+3WA6H3Og2MdfsbV9NUmJs5RFqV+0TUOchfwI6N/XSl+6 O9vq995jfQtwzvtpkWIVVs2Ato2WCvEGYmmetE75Gr+dOzKsGSUuBSsgURWn9n3HQS vOGz/o9OxDU29E7VMDt8BBmrZrbHOIMGqu2W750A=
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6JCJPZ65KXE4VX4JN3IHI4JEVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/513572171@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d349f44a716c_280e3fb22d2cd96c195275"; 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/wjS2s06Xb5jExsCFS7lCNBaaiPY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:22:15 -0000

----==_mimepart_5d349f44a716c_280e3fb22d2cd96c195275
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann well in that case, the source of the problem is the retransmission algorithm, not this. Why does it make sense to not retransmit 1-RTT data when there is an outstanding CFIN?

Just consider the simple case where the client's second flight (CFIN + some data) is lost. When the PTO expires, you should resend all of 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/issues/2863#issuecomment-513572171
----==_mimepart_5d349f44a716c_280e3fb22d2cd96c195275
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a> well in that case, the source of the problem is the retransmission algorithm, not this. Why does it make sense to not retransmit 1-RTT data when there is an outstanding CFIN?</p>
<p>Just consider the simple case where the client's second flight (CFIN + some data) is lost. When the PTO expires, you should resend all of 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/issues/2863?email_source=notifications&amp;email_token=AFTOJK2YMLRZT7N6WVR5YPLQASLMJA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH2SY#issuecomment-513572171">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54DFEUMOLEI7II6D3QASLMJANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KI5GWX5U65FMXKPDQASLMJA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH2SY.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJK2YMLRZT7N6WVR5YPLQASLMJA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH2SY#issuecomment-513572171",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJK2YMLRZT7N6WVR5YPLQASLMJA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH2SY#issuecomment-513572171",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d349f44a716c_280e3fb22d2cd96c195275--


From nobody Sun Jul 21 10:22:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CD0CF120151 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:22:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0fLJryNPgEGs for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:22: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 52B3E120131 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:22:52 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:22:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563729771; bh=6lvUFpjNnCKrBF3jEJkYqRIDMgZB0Iq4Il4aXreg2lw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Tm61soUrnV9e4dvm6TJxVXBh73rAHqyPaZifKXJ/gY+JZACdoMOF8gDl+0MC7R+0N PnkyRjJ/8iYwZDcI7Y0iD+4hfoMeN69UkHe4t92zXd05JYVi2SC4vOsIzGpsGFy6j3 ut9NkMK2vXkTX0xApGHkCziJcBLjk2cc5jxiUHV4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36AYPZO5HQNTCEC3V3IHI6XEVBNHHBYABG4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2910/513572229@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2910@github.com>
References: <quicwg/base-drafts/issues/2910@github.com>
Subject: Re: [quicwg/base-drafts] PATH_CHALLENGE timer period (#2910)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d349f6b37fb7_69303fb0afccd96476085"; 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/sOx2pxUIkkOPTDb_Gosz1We9xkc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:22:54 -0000

----==_mimepart_5d349f6b37fb7_69303fb0afccd96476085
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The suggestion is to move some of this text to recovery(ie: Handshakes and New Paths) and reference that text from 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/2910#issuecomment-513572229
----==_mimepart_5d349f6b37fb7_69303fb0afccd96476085
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The suggestion is to move some of this text to recovery(ie: Handshakes and New Paths) and reference that text from 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/2910?email_source=notifications&amp;email_token=AFTOJKZYQYCKXNJIP6XNMODQASLOXA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH3BI#issuecomment-513572229">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZPO6UUUVL37P2RQILQASLOXANCNFSM4IE24RKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZQNQJFUBADBPJ3JPDQASLOXA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH3BI.gif" height="1" width="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/2910?email_source=notifications\u0026email_token=AFTOJKZYQYCKXNJIP6XNMODQASLOXA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH3BI#issuecomment-513572229",
"url": "https://github.com/quicwg/base-drafts/issues/2910?email_source=notifications\u0026email_token=AFTOJKZYQYCKXNJIP6XNMODQASLOXA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH3BI#issuecomment-513572229",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d349f6b37fb7_69303fb0afccd96476085--


From nobody Sun Jul 21 10:25:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9653D120151 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:25:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CULeXlTri9Lu for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:25: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 48380120131 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:25:37 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:25:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563729936; bh=qCQQR8ewNco4l1616t3woPn9+ju9M5PGNtL77gsgSEI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LvvMaOeZWNtnsNIdqYz7CiY5BuOrTkcVvhLvQusfwhVWUyDDwXMQYV2q++Prl8r7G IYMAPABQF/XjkCcqmfJp3qGbW9DV+zEWfD+Gi+JAZrz23IxfU6HBeS++OiZTcmbEmc gWCCJQSrEbyVt/wkgb9oB9DgHeufAv5qi2aovE1Q=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2Y6PWGPT6CM4MCV2V3IHJJBEVBNHHBYABG4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2910/513572427@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2910@github.com>
References: <quicwg/base-drafts/issues/2910@github.com>
Subject: Re: [quicwg/base-drafts] PATH_CHALLENGE timer period (#2910)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34a010640e8_342e3f815bccd960177731"; 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/ucYddxbIKK9I0qZ0JGWyGrb5qb0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:25:39 -0000

----==_mimepart_5d34a010640e8_342e3f815bccd960177731
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As Jana pointed out, this specifies a separate timer, which fits fine with the model that there's one timer per path.

-- 
You are receiving 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/2910#issuecomment-513572427
----==_mimepart_5d34a010640e8_342e3f815bccd960177731
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As Jana pointed out, this specifies a separate timer, which fits fine with the model that there's one timer per path.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2910?email_source=notifications&amp;email_token=AFTOJK7CQX43JT6Q2XBK5OTQASLZBA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH4SY#issuecomment-513572427">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FYNJKHVH3EDGK4TTQASLZBANCNFSM4IE24RKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYCELBBFZYTPMRGFK3QASLZBA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH4SY.gif" height="1" width="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/2910?email_source=notifications\u0026email_token=AFTOJK7CQX43JT6Q2XBK5OTQASLZBA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH4SY#issuecomment-513572427",
"url": "https://github.com/quicwg/base-drafts/issues/2910?email_source=notifications\u0026email_token=AFTOJK7CQX43JT6Q2XBK5OTQASLZBA5CNFSM4IE24RKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OH4SY#issuecomment-513572427",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34a010640e8_342e3f815bccd960177731--


From nobody Sun Jul 21 10:43:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 21F1212015F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:43:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q1s1HRXc1Wv0 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:43:38 -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 55F7C120154 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:43:38 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:43:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563731017; bh=ct7t3X9vtklAdGc4eJndBmZ5ZmgM9I1fq5ljLvBTZ1E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hICXcjzyygwM1FOQ//81ZDOZ1pjY0IGZhYA8a8rvnody0yo0ctac/so7NzJ/SycUP 2iG5B0OmoWmHXd/7KYFNUJYanzJPIxNGSVrM7oT4VidXMYZn3dquZNSlc+OM7DE5Mc L5AbyPr0n+3p2Dc2bXwLSzXs2s2D6y2rd3cIlZ8o=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK322KNBUWKB63UOC5N3IHLMTEVBNHHBYD42OI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2916/review/264547221@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34a449937d3_75443f91a72cd968556896"; 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/zy4cgXGg03aQXRuGp80BCMAfAYs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:43:40 -0000

----==_mimepart_5d34a449937d3_75443f91a72cd968556896
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

nibanks approved this pull request.



> @@ -2880,6 +2880,28 @@ packet.
 expectations about what implementations do with packets that have errors after
 valid frames? -->
 
+
+## Generating Acknowledgements {#generating-acks}
+
+An acknowledgement SHOULD be sent immediately upon receipt of a second
+ack-eliciting packet. QUIC recovery algorithms do not assume the peer sends
+an ACK immediately when receiving a second ack-eliciting packet.
+
+In order to accelerate loss recovery and reduce timeouts, the receiver SHOULD
+send an immediate ACK after it receives an out-of-order packet. It could send

What's the exact definition for `out-of-order`? If the last packet number received is `X`, are received packet numbers of `X+2` and `X-1` both considered out of order?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916#pullrequestreview-264547221
----==_mimepart_5d34a449937d3_75443f91a72cd968556896
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@nibanks</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2916#discussion_r305628476">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2880,6 +2880,28 @@ packet.
 expectations about what implementations do with packets that have errors after
 valid frames? --&gt;
 
+
+## Generating Acknowledgements {#generating-acks}
+
+An acknowledgement SHOULD be sent immediately upon receipt of a second
+ack-eliciting packet. QUIC recovery algorithms do not assume the peer sends
+an ACK immediately when receiving a second ack-eliciting packet.
+
+In order to accelerate loss recovery and reduce timeouts, the receiver SHOULD
+send an immediate ACK after it receives an out-of-order packet. It could send
</pre>
<p>What's the exact definition for <code>out-of-order</code>? If the last packet number received is <code>X</code>, are received packet numbers of <code>X+2</code> and <code>X-1</code> both considered out of order?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications&amp;email_token=AFTOJK225KJP624QJGKG72DQASN4TA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CKXFI#pullrequestreview-264547221">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7P5SGP5OPSGFURYT3QASN4TANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFWYOD77NMUEYUZODQASN4TA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CKXFI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK225KJP624QJGKG72DQASN4TA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CKXFI#pullrequestreview-264547221",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK225KJP624QJGKG72DQASN4TA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CKXFI#pullrequestreview-264547221",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34a449937d3_75443f91a72cd968556896--


From nobody Sun Jul 21 10:48:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4F024120146 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:48:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2MEkiK5cFtSP for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:48: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 A2A8E1200DE for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:48:17 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:48:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563731296; bh=G6A+6tu25XFN3CAKt1C9SbQGXEmF64hdE8ZpwUmIvQg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YydZCCEIZwVt5wOO5wUZRaKqqZqmkRxtbOovh4oxOQouGz6rq+JKtZXJ4Tze6Gs9m 6Tw1WBxVDM2H1Uugh8As4D2a3IPxm6yqOqM6UzeDeC+DbwfzwCRQg128ipJyZjCBdW gwIq3ylHkAugl+cnC736lNohA5Gz8+5Hu9WgKd94=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54EH4QNGJSIE3EELF3IHL6BEVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/513574089@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34a56091f0f_3ae53fc570ccd95c49618a"; 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/3I1-kPjEsNmxf_5qdF4ie6Xk-lo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:48:19 -0000

----==_mimepart_5d34a56091f0f_3ae53fc570ccd95c49618a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr The client could have sent an arbitrary amount of 1-RTT data, so you wouldn't want to retransmit all of this. As discussed on the PR (#2881), this can have some weird interaction with the congestion controller 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/2863#issuecomment-513574089
----==_mimepart_5d34a56091f0f_3ae53fc570ccd95c49618a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1111457" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a> The client could have sent an arbitrary amount of 1-RTT data, so you wouldn't want to retransmit all of this. As discussed on the PR (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465613105" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2881" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2881/hovercard" href="https://github.com/quicwg/base-drafts/pull/2881">#2881</a>), this can have some weird interaction with the congestion controller 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/2863?email_source=notifications&amp;email_token=AFTOJK6KOJ4TY2LSRKEFYB3QASOOBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIJSI#issuecomment-513574089">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK34S4SDAJ7WUGABRBDQASOOBANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55A4PB2HSUIDRUKYDQASOOBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIJSI.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJK6KOJ4TY2LSRKEFYB3QASOOBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIJSI#issuecomment-513574089",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJK6KOJ4TY2LSRKEFYB3QASOOBA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIJSI#issuecomment-513574089",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34a56091f0f_3ae53fc570ccd95c49618a--


From nobody Sun Jul 21 10:49:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9891A12015F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:49:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iBwCmAw2OiEd for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:49: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 B3035120146 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:49:36 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:49:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563731375; bh=gSNpt4MT9Bvt/DOmFC/vWUr92chUR3JPMSQQrjKnj2I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vTeTDqR33mqktS6VyIl8bMbS1jtpAMc0rtYfXXD2dTkBd87CeFYc5qieQKJSKkSJc OXGwqvzX2abQjzQnlw1jQG2YH7iMbzeWxF1IKK3KaATB7wSun06g/W7ICyClRTCYjB HhTrTsWcVA0W1xuQu+MXStITSicaXsTy3X1vR/rc=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4FJNBCKZG2K7NJSVV3IHMC7EVBNHHBYAAYHM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2909/513574181@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2909@github.com>
References: <quicwg/base-drafts/issues/2909@github.com>
Subject: Re: [quicwg/base-drafts] Path Migration makes unjustified assumptions about a new path. (#2909)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34a5afa5aa6_78073f83d0ecd964321667"; 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/EneSGXcy-pm6-Kfm0xYWlQPPUsE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:49:39 -0000

----==_mimepart_5d34a5afa5aa6_78073f83d0ecd964321667
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

1) 
SHOULD NOT -> MUST NOT
Suggestion: "New paths have new congestion control contexts, implementations can reset the existing congestion control context."

2) 
In keeping with the first resolution, it's a new CC, and whether a new CC is created or the existing one is reset is an implementation decision.

3) 
Instead of saying it's the same path, say that the path parameters(RTT and CC state) are likely to be similar.

4) 
This is resolved with the resolution to 1, we can decide where the implementation note should live.

5) (In Section 9.4 of transport)
This is really "A path can be validated, but not switched to immediately, particularly in the presence of a potential attack.  When you switch, you need to use a new(or reset) 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/issues/2909#issuecomment-513574181
----==_mimepart_5d34a5afa5aa6_78073f83d0ecd964321667
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<ol>
<li></li>
</ol>
<p>SHOULD NOT -&gt; MUST NOT<br>
Suggestion: "New paths have new congestion control contexts, implementations can reset the existing congestion control context."</p>
<ol start="2">
<li></li>
</ol>
<p>In keeping with the first resolution, it's a new CC, and whether a new CC is created or the existing one is reset is an implementation decision.</p>
<ol start="3">
<li></li>
</ol>
<p>Instead of saying it's the same path, say that the path parameters(RTT and CC state) are likely to be similar.</p>
<ol start="4">
<li></li>
</ol>
<p>This is resolved with the resolution to 1, we can decide where the implementation note should live.</p>
<ol start="5">
<li>(In Section 9.4 of transport)<br>
This is really "A path can be validated, but not switched to immediately, particularly in the presence of a potential attack.  When you switch, you need to use a new(or reset) congestion controller."</li>
</ol>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2909?email_source=notifications&amp;email_token=AFTOJK2REO5E756EWM5ZMBLQASOS7A5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIKJI#issuecomment-513574181">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZO3VM4PWEZ5NQD6EDQASOS7ANCNFSM4IE2X3AQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5M3M3FBQQSJCBVPLTQASOS7A5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIKJI.gif" height="1" width="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/2909?email_source=notifications\u0026email_token=AFTOJK2REO5E756EWM5ZMBLQASOS7A5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIKJI#issuecomment-513574181",
"url": "https://github.com/quicwg/base-drafts/issues/2909?email_source=notifications\u0026email_token=AFTOJK2REO5E756EWM5ZMBLQASOS7A5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIKJI#issuecomment-513574181",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34a5afa5aa6_78073f83d0ecd964321667--


From nobody Sun Jul 21 10:57:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 196A0120146 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:57:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id I8PxvmvJhDPj for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 10:57:01 -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 8FC241200DE for <quic-issues@ietf.org>; Sun, 21 Jul 2019 10:57:01 -0700 (PDT)
Date: Sun, 21 Jul 2019 10:57:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563731820; bh=Fvh3gndZJRgUGf65CbzBcxnv6LbAwQadyuvqng1T9GA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=D/n7D59lwEBqXwTJellQWeDh1mMO9hqWFzyTQoDBfWjZ8Xz7Kf0ZZJF95soTuHZ5i N3+R5pfrgeSdgXHZoQ9aivGOvGDU8pDa+qwg2ykpIfGz7F/Vs6lr8Di5msjKKui4Sd 1uEs0SyEKoHazYDszX4o4xv7NjAhyS4rnc9EeyDQ=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7SMYQL3ANP6T2HBP53IHM6ZEVBNHHBYAAYHM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2909/513574684@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2909@github.com>
References: <quicwg/base-drafts/issues/2909@github.com>
Subject: Re: [quicwg/base-drafts] Path Migration makes unjustified assumptions about a new path. (#2909)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34a76c99ffe_9f53ff392acd9684968ca"; 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/90irAeXD9Slk7cqUzYPy7InlhJs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 17:57:03 -0000

----==_mimepart_5d34a76c99ffe_9f53ff392acd9684968ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

For 5, we need to say a bit more about the fact that the attack is that when a sender receives data on a new path causing it to potentially reset its CC state immediately if it switches 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/2909#issuecomment-513574684
----==_mimepart_5d34a76c99ffe_9f53ff392acd9684968ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>For 5, we need to say a bit more about the fact that the attack is that when a sender receives data on a new path causing it to potentially reset its CC state immediately if it switches 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/2909?email_source=notifications&amp;email_token=AFTOJK63MUCWBKFLWUKLCETQASPOZA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIOHA#issuecomment-513574684">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5H4KN5URHXVRYJJBLQASPOZANCNFSM4IE2X3AQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK35TILXZT4XTPTTRDLQASPOZA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIOHA.gif" height="1" width="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/2909?email_source=notifications\u0026email_token=AFTOJK63MUCWBKFLWUKLCETQASPOZA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIOHA#issuecomment-513574684",
"url": "https://github.com/quicwg/base-drafts/issues/2909?email_source=notifications\u0026email_token=AFTOJK63MUCWBKFLWUKLCETQASPOZA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIOHA#issuecomment-513574684",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34a76c99ffe_9f53ff392acd9684968ca--


From nobody Sun Jul 21 11:04:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 94519120165 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:04:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id P6S3WUM38LSZ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:04:29 -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 95810120132 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:04:29 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:04:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563732268; bh=5qvZ+/iZi2OoLNCjgRJv2M/+aE4HcCFs111Rl8mlHho=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=10qhInCp8NCrlXRO2KySuw440BJLOI36Oy4t5pil8Phcqrdk5zBcr5ofyz3u8Ql5S IcAHSK07zXQYItqerNIiH834mqycrbTxuOe3fCEbrnPZtTqcJGbHYcAuJT34EwAUpU N7X9Duhu+WyDZjd6VVSK7iO9fo4CbsZycfwCuFVA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ4SPQONLC7JAOEHLF3IHN2ZEVBNHHBYAADQY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2908/513575187@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2908@github.com>
References: <quicwg/base-drafts/issues/2908@github.com>
Subject: Re: [quicwg/base-drafts] Why is Min RTT kept for the connection lifetime? (#2908)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34a92c89479_2e803fadaf4cd96043989c"; 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/0pVgdPm_PWUwe-Kg5xyam8sayFk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:04:32 -0000

----==_mimepart_5d34a92c89479_2e803fadaf4cd96043989c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

min_rtt is used to reject implausible SRTT samples due to large max_ack_delays, which we can clarify.  It should be over the lifetime of the path, not the connection.  We could clarify what it means to reset a context, but assuming a new context is easier to reason about.

What if min_rtt decreases or increases?  Decreases it should follow, Increases causes QUIC to loosen the sanity check.

-- 
You are receiving 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/2908#issuecomment-513575187
----==_mimepart_5d34a92c89479_2e803fadaf4cd96043989c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>min_rtt is used to reject implausible SRTT samples due to large max_ack_delays, which we can clarify.  It should be over the lifetime of the path, not the connection.  We could clarify what it means to reset a context, but assuming a new context is easier to reason about.</p>
<p>What if min_rtt decreases or increases?  Decreases it should follow, Increases causes QUIC to loosen the sanity check.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2908?email_source=notifications&amp;email_token=AFTOJKYUIE2AJ6HTMBMOZVLQASQKZA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OISEY#issuecomment-513575187">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XBWXPH44NUHOU7GLQASQKZANCNFSM4IE2TSCQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5NAEK5UVX5FI2RZ53QASQKZA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OISEY.gif" height="1" width="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/2908?email_source=notifications\u0026email_token=AFTOJKYUIE2AJ6HTMBMOZVLQASQKZA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OISEY#issuecomment-513575187",
"url": "https://github.com/quicwg/base-drafts/issues/2908?email_source=notifications\u0026email_token=AFTOJKYUIE2AJ6HTMBMOZVLQASQKZA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OISEY#issuecomment-513575187",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34a92c89479_2e803fadaf4cd96043989c--


From nobody Sun Jul 21 11:09:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F3CE7120133 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:09:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.001
X-Spam-Level: 
X-Spam-Status: No, score=-8.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 7g7S2sSGTyV3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:09: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 343D2120132 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:09:41 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:09:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563732580; bh=QUYsvLyT5TjM1cYh8yvTTu0t22IkgBGwUipWXIU24W4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v0EdgaQVLrbljG5tiWR1xYw6QzFhnmR9e2YW+Oq14xdTs3loRkHbn3LWTvZTbb9G0 WiLpmNpHN0JOPhAaSSAJLQl2hiE16xxTZLY49ClfR/2pSKb20a6Ba+fhypgoG9nT2U /ysicWDOJ5jWjJsiunspOV4pOpWsU8Ekttym5BIk=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK463I6LSOOJREENWGF3IHOOJEVBNHHBYAAYHM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2909/513575528@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2909@github.com>
References: <quicwg/base-drafts/issues/2909@github.com>
Subject: Re: [quicwg/base-drafts] Path Migration makes unjustified assumptions about a new path. (#2909)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34aa6442152_2a3c3fce89acd964360827"; 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/AIKOfs56DbBcAkNYPNGt0j14trQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:09:43 -0000

----==_mimepart_5d34aa6442152_2a3c3fce89acd964360827
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

For 1,2,4:
> In keeping with the first resolution, it's a new CC, and whether a new CC is created or the existing one is reset is an implementation decision.

I think this was always the intent -- some implementations don't want to have two CC contexts so they can reset it and start with zero assumptions about the new path. Implementations that are okay with having more than one will make a new one and use that on the new path, switching back to the old one if they use the old path and the information is still relevant (i.e. it's been <1 RTT and you decided the new path wasn't actually better -- pick some threshold I don't have a strong preference).

3: 
Yes, it's not necessarily exactly the same path. An endpoint that wants to put in extra effort in determining which paths are equivalent to make a smarter decision can do so while the default behavior is a complete reset every time (after confirming the migration). This also impacts (5) around some of the attacks. 

5: 
I agree with @janaiyengar we should be a bit more explicit about preventing an off-path attacker from being able to cause continuous resets as you go back and forth between paths, that's a good case where you would want to keep CC state around (if you're being told to swap multiple times per-RTT you've got other issues, too, which are mostly addressed but might need some more text, likely in 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/2909#issuecomment-513575528
----==_mimepart_5d34aa6442152_2a3c3fce89acd964360827
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>For 1,2,4:</p>
<blockquote>
<p>In keeping with the first resolution, it's a new CC, and whether a new CC is created or the existing one is reset is an implementation decision.</p>
</blockquote>
<p>I think this was always the intent -- some implementations don't want to have two CC contexts so they can reset it and start with zero assumptions about the new path. Implementations that are okay with having more than one will make a new one and use that on the new path, switching back to the old one if they use the old path and the information is still relevant (i.e. it's been &lt;1 RTT and you decided the new path wasn't actually better -- pick some threshold I don't have a strong preference).</p>
<p>3:<br>
Yes, it's not necessarily exactly the same path. An endpoint that wants to put in extra effort in determining which paths are equivalent to make a smarter decision can do so while the default behavior is a complete reset every time (after confirming the migration). This also impacts (5) around some of the attacks.</p>
<p>5:<br>
I agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=11067604" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/janaiyengar">@janaiyengar</a> we should be a bit more explicit about preventing an off-path attacker from being able to cause continuous resets as you go back and forth between paths, that's a good case where you would want to keep CC state around (if you're being told to swap multiple times per-RTT you've got other issues, too, which are mostly addressed but might need some more text, likely in 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/2909?email_source=notifications&amp;email_token=AFTOJK6PSPZGZ5FEUTNQVOTQASQ6JA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIU2A#issuecomment-513575528">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6BCMKRXBR6EK3FQB3QASQ6JANCNFSM4IE2X3AQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7UMHBIMICDZEO5QIDQASQ6JA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIU2A.gif" height="1" width="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/2909?email_source=notifications\u0026email_token=AFTOJK6PSPZGZ5FEUTNQVOTQASQ6JA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIU2A#issuecomment-513575528",
"url": "https://github.com/quicwg/base-drafts/issues/2909?email_source=notifications\u0026email_token=AFTOJK6PSPZGZ5FEUTNQVOTQASQ6JA5CNFSM4IE2X3A2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIU2A#issuecomment-513575528",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34aa6442152_2a3c3fce89acd964360827--


From nobody Sun Jul 21 11:10:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2949B120133 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:10:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gcAYfcAbXd8t for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:10:31 -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 B1391120132 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:10:31 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:10:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563732631; bh=8DVAFQOIqcc/f1OqxumFabDjO+xx0ObnkNARqSSdhek=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mp/b9RudujKbBdmGSejuORd9pvlLBfZMDSTP4svLiST2nbKNIP3Gam1ExoF5MduJ6 m6onsDsj43Yon/PlwCBYmhqKO0v8TRG4rR/q0bTP8iODaSa4aSaFuXpl2mLleh3qTw dEUS+ltqNMfjDj2D4ZoJK3xD/+oiOv1oMyGEZ3FA=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4C7L3R2ETOGSFL7L53IHORNEVBNHHBYAADQY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2908/513575591@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2908@github.com>
References: <quicwg/base-drafts/issues/2908@github.com>
Subject: Re: [quicwg/base-drafts] Why is Min RTT kept for the connection lifetime? (#2908)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34aa96dad4d_753f3f927eacd960385084"; 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/1E0i8PcLzkofzo43EGu0nMyqUfM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:10:33 -0000

----==_mimepart_5d34aa96dad4d_753f3f927eacd960385084
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

(Editorially I would specify a congestion control context rather than a path)

-- 
You are receiving 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/2908#issuecomment-513575591
----==_mimepart_5d34aa96dad4d_753f3f927eacd960385084
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>(Editorially I would specify a congestion control context rather than a path)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2908?email_source=notifications&amp;email_token=AFTOJKYKW7EEOHMFDTUAKC3QASRBNA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIVJY#issuecomment-513575591">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FO5CABG5IXYLQPGLQASRBNANCNFSM4IE2TSCQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4O6KLGLN5UIK4O5T3QASRBNA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIVJY.gif" height="1" width="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/2908?email_source=notifications\u0026email_token=AFTOJKYKW7EEOHMFDTUAKC3QASRBNA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIVJY#issuecomment-513575591",
"url": "https://github.com/quicwg/base-drafts/issues/2908?email_source=notifications\u0026email_token=AFTOJKYKW7EEOHMFDTUAKC3QASRBNA5CNFSM4IE2TSC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIVJY#issuecomment-513575591",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34aa96dad4d_753f3f927eacd960385084--


From nobody Sun Jul 21 11:16:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 51DBB120133 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:16:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MS3ZnF0cmeCN for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:16:34 -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 1A1D912012E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:16:34 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:16:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563732993; bh=dH7y7aBDNw1WW5+Jla57l0Ow7m+MQ2s5dq5APEyTCC4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o8O8AQWbLCtn9Anoh7ejaDeDFgWk8AQgXb5O7ukwRISQLPblJNmuXx0OXmTB9ErvJ AfATcHbGENK94vdHQYBG92iN06EsNQTUm34/iaR3F2a7vD/IEROB09jyazoa/uTjd1 VHkYU34/4A1/81QHzDyKx0M2Klbr5xKMOkv9CbJ0=
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2POYEP7B74ROQPFVF3IHPIDEVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/513575990@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34ac012286e_4fc03fda89ccd960100514a"; 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/lPQ_oLa_qEl9cjP_0BnieEq5u2E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:16:35 -0000

----==_mimepart_5d34ac012286e_4fc03fda89ccd960100514a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Sure, you would, however, want to retransmit *some* of 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/2863#issuecomment-513575990
----==_mimepart_5d34ac012286e_4fc03fda89ccd960100514a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Sure, you would, however, want to retransmit <em>some</em> of 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/2863?email_source=notifications&amp;email_token=AFTOJKYCYZITC2UFTQDPW2DQASRYDA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIYNQ#issuecomment-513575990">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6CUMMBMHDKQQXH7UDQASRYDANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5UBCOBWPBQYV7F2RDQASRYDA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIYNQ.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJKYCYZITC2UFTQDPW2DQASRYDA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIYNQ#issuecomment-513575990",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJKYCYZITC2UFTQDPW2DQASRYDA5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OIYNQ#issuecomment-513575990",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34ac012286e_4fc03fda89ccd960100514a--


From nobody Sun Jul 21 11:18:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 62821120135 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:18:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 JbI7tzpfchYk for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:18: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 42BE3120133 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:18:30 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:18:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563733109; bh=w1czeTHKo/7KHH/xwhEYTAaO62PvlwsAMjTZvqAbuLA=; h=Date:From:To:Subject:From; b=y4G+pLioxUM6Zp9VOs5SDYMHNJCSjoNEcVd31hsSeFxXf74KTZhqxDjaajYonikNZ F0BDeVbzPFNwDXML0gMu77ksjwC2TVLEJdbz3SQ/L6+abc4AlPZ1fCT+uCXiS3WcwI 3GD15jCnIC0o8BQkrOQImTuOPxLqF7BWur3wIuqE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-under-utilizing/c3ca83-d510f2@github.com>
Subject: [quicwg/base-drafts] d510f2: 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/bzjTvFVXt7lQr3N5OZKztfuQmQI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:18:31 -0000

  Branch: refs/heads/ianswett-under-utilizing
  Home:   https://github.com/quicwg/base-drafts
  Commit: d510f2bfbbcc8e06a2906bcd0a706c48b60cc253
      https://github.com/quicwg/base-drafts/commit/d510f2bfbbcc8e06a2906bcd0a706c48b60cc253
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 Sun Jul 21 11:18:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C1205120133 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:18:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dw9CXWjgzBOy for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:18:38 -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 3328012012E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:18:38 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:18:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563733117; bh=2k24Vb8NkvPKUcM+wItbbuVg/iApmS79YzDXDz9n+2s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Iiiei8swaCcga2oi0SDCKrrWHL0d3XEKsSbKAJ8RrocXRPedsSIo6nodhsST1h05m h8F9FwhyOUgXRR0hnAcITk4eCay1o3W90GDKx15daCjGNjPwsQ6vxEqgz3NQpT3dzE oQ8zEYtf4BXoNmxqkfx6fgi8GLvBQvCupPCs8PCI=
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/2675/push/3839631641@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2675@github.com>
References: <quicwg/base-drafts/pull/2675@github.com>
Subject: Re: [quicwg/base-drafts] Define under-utilizing the congestion window (#2675)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34ac7d47720_5803faece0cd96c372434"; 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/1AY8_Qu4k2GDp08lAyoK9lQw-_Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:18:40 -0000

----==_mimepart_5d34ac7d47720_5803faece0cd96c372434
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

d510f2bfbbcc8e06a2906bcd0a706c48b60cc253  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/2675/files/c3ca83ebd719ecd6dd682d1355e9d30593a947e6..d510f2bfbbcc8e06a2906bcd0a706c48b60cc253

----==_mimepart_5d34ac7d47720_5803faece0cd96c372434
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/d510f2bfbbcc8e06a2906bcd0a706c48b60cc253">d510f2b</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/2675/files/c3ca83ebd719ecd6dd682d1355e9d30593a947e6..d510f2bfbbcc8e06a2906bcd0a706c48b60cc253?email_source=notifications&amp;email_token=AFTOJKZFT72CCCMWZEKX4ELQASR73A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNRTGE3DIMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZXMDDWZ4DPOCI5AGDQASR73ANCNFSM4HLNTECA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NPTBP5RNZFWY4PBDQASR73A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNRTGE3DIMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2675/files/c3ca83ebd719ecd6dd682d1355e9d30593a947e6..d510f2bfbbcc8e06a2906bcd0a706c48b60cc253?email_source=notifications\u0026email_token=AFTOJKZFT72CCCMWZEKX4ELQASR73A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNRTGE3DIMI",
"url": "https://github.com/quicwg/base-drafts/pull/2675/files/c3ca83ebd719ecd6dd682d1355e9d30593a947e6..d510f2bfbbcc8e06a2906bcd0a706c48b60cc253?email_source=notifications\u0026email_token=AFTOJKZFT72CCCMWZEKX4ELQASR73A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNRTGE3DIMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34ac7d47720_5803faece0cd96c372434--


From nobody Sun Jul 21 11:21:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 883FD120135 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:21:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lDnXgV4FwyYZ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:21: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 57C8D120162 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:21:02 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:21:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563733261; bh=x0otBIuLVZeDaZuLRo20WZ1RGz611cArqNlbHIgAHTU=; h=Date:From:To:Subject:From; b=sokIUC54l6B/o+MCTnYihYrO136IkON1Yky5+W+9hqTDYoyhzjI+edbqmE1q/kZXI jiuY5NhwWA9ydcg6BiFiIDeb8LtoKDCFt8de+wBbWnIIymJNkU/KR/QTq0jj3gz1Sh lMw9MZ8/vGv+kUA5DVt2vL6Vs6am9PzDFpBnVyOA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/521186-cf8dee@github.com>
Subject: [quicwg/base-drafts] cf8dee: Script updating gh-pages from d510f2bf. [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/i_6RWyHJ9sa2qzPHVwc9i0Dja9k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:21:08 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cf8dee72a6a1b17cf1bdfa5ccc193f323aea45d5
      https://github.com/quicwg/base-drafts/commit/cf8dee72a6a1b17cf1bdfa5ccc193f323aea45d5
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    R ianswett-transport/draft-ietf-quic-http.html
    R ianswett-transport/draft-ietf-quic-http.txt
    R ianswett-transport/draft-ietf-quic-invariants.html
    R ianswett-transport/draft-ietf-quic-invariants.txt
    R ianswett-transport/draft-ietf-quic-qpack.html
    R ianswett-transport/draft-ietf-quic-qpack.txt
    R ianswett-transport/draft-ietf-quic-recovery.html
    R ianswett-transport/draft-ietf-quic-recovery.txt
    R ianswett-transport/draft-ietf-quic-tls.html
    R ianswett-transport/draft-ietf-quic-tls.txt
    R ianswett-transport/draft-ietf-quic-transport.html
    R ianswett-transport/draft-ietf-quic-transport.txt
    R ianswett-transport/index.html
    M ianswett-under-utilizing/draft-ietf-quic-http.html
    M ianswett-under-utilizing/draft-ietf-quic-http.txt
    M ianswett-under-utilizing/draft-ietf-quic-invariants.html
    M ianswett-under-utilizing/draft-ietf-quic-invariants.txt
    M ianswett-under-utilizing/draft-ietf-quic-qpack.html
    M ianswett-under-utilizing/draft-ietf-quic-qpack.txt
    M ianswett-under-utilizing/draft-ietf-quic-recovery.html
    M ianswett-under-utilizing/draft-ietf-quic-recovery.txt
    M ianswett-under-utilizing/draft-ietf-quic-tls.html
    M ianswett-under-utilizing/draft-ietf-quic-tls.txt
    M ianswett-under-utilizing/draft-ietf-quic-transport.html
    M ianswett-under-utilizing/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d510f2bf. [ci skip]



From nobody Sun Jul 21 11:21:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 35B27120135 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:21:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rT4HiBWJBjMr for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:21:19 -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 AF841120133 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:21:19 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:21:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563733279; bh=Ges5zNqF79Sey4Ed36YrDcpWkgeX3IawU21SxPmN1io=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=b8ZXQe6WP6xY7NWsrgPG9JV8jN8+G0Ys/fW2ET6GSYJ66T0wQXja9fs7lzTp5iyfj beLudyLpB3nnBhJJL8J3CJl6CoQns5L/e0QagL/L7Xg/cwnkXsvpbp3LYbpWa27Tjz WjVYVHjlEdICqW4PqOJp+Pp/KPymVnUkBbZmXs7Q=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5STJVJVLUBHA4G7VN3IHPZ5EVBNHHBYDQKAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2911/513576272@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2911@github.com>
References: <quicwg/base-drafts/issues/2911@github.com>
Subject: Re: [quicwg/base-drafts] Separate HTTP/3 stream errors from connection errors. (#2911)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34ad1ef0544_780d3f83d0ecd964797470"; 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/P3vjDF3o6lBYTrHWvv9f070YhsU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:21:21 -0000

----==_mimepart_5d34ad1ef0544_780d3f83d0ecd964797470
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho 

> I think we need the freedom of promoting stream-level errors to connection errors. For example, when a server detects a suspicious activity by a client at a stream-level, it would make sense to close the connection.

I agree. This is a real thing that happens today with H2 and should be maintained.

My question would be, does  it makes sense for promotion to maintain the the error code fidelity? I.e. if you are closing connection on a miss-behaving peer, is there benefit from articulating the specific stream error code, or does it work as well to drop this to HTTP_GENERAL_PROTOCOL_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/issues/2911#issuecomment-513576272
----==_mimepart_5d34ad1ef0544_780d3f83d0ecd964797470
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a></p>
<blockquote>
<p>I think we need the freedom of promoting stream-level errors to connection errors. For example, when a server detects a suspicious activity by a client at a stream-level, it would make sense to close the connection.</p>
</blockquote>
<p>I agree. This is a real thing that happens today with H2 and should be maintained.</p>
<p>My question would be, does  it makes sense for promotion to maintain the the error code fidelity? I.e. if you are closing connection on a miss-behaving peer, is there benefit from articulating the specific stream error code, or does it work as well to drop this to HTTP_GENERAL_PROTOCOL_ERROR?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2911?email_source=notifications&amp;email_token=AFTOJK4DBS2WFIFJJCT3R23QASSJ5A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI2UA#issuecomment-513576272">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XOEGPHFSJHL6L3E3QASSJ5ANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYVYDO22CUQG7LD64DQASSJ5A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI2UA.gif" height="1" width="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/2911?email_source=notifications\u0026email_token=AFTOJK4DBS2WFIFJJCT3R23QASSJ5A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI2UA#issuecomment-513576272",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK4DBS2WFIFJJCT3R23QASSJ5A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI2UA#issuecomment-513576272",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34ad1ef0544_780d3f83d0ecd964797470--


From nobody Sun Jul 21 11:23:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 306FD120161 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:23:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.001
X-Spam-Level: 
X-Spam-Status: No, score=-8.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 1qiJCj2Ceyu9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:23: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 7B455120135 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:23:56 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:23:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563733435; bh=yENJx3/Jvz8zYN2HGbdH+xleKiX/cqjrs+M9paTKdzE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=D3keEVu1zpL02q4GqZzQDVvmXOWse1POcfDDSP8Yhi6dBfmLby9//bTaLt48minHM XRctxARB36k1hIBvRV2LzHLpXDD9tmtp0ytDVsh24Rpwfo46/p0KaWOEx0U7155p/U tY087XoF7FGW0elvfPhewT/+9YaoocILNKGzmP8Y=
From: Daan De Meyer <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3SK3QUS344SXXPOEV3IHQDXEVBNHHBYDQKAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2911/513576440@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2911@github.com>
References: <quicwg/base-drafts/issues/2911@github.com>
Subject: Re: [quicwg/base-drafts] Separate HTTP/3 stream errors from connection errors. (#2911)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34adbb7e699_697b3fda89ccd9604839f0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DaanDeMeyer
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jkmf_wfGJe8I4CRx5JyCip2Wzn0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:23:58 -0000

----==_mimepart_5d34adbb7e699_697b3fda89ccd9604839f0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> HTTP_GENERAL_PROTOCOL_ERROR is a catch-all error code that can be for any reason. I'd prefer having that usable at stream-level too.

PROTOCOL_ERROR sounds to me like something that mandates closing the connection. I do agree with having a catch-all error code for streams as well but I'd just add HTTP_GENERAL_STREAM_ERROR instead of reusing HTTP_GENERAL_PROTOCOl_ERROR. It avoids confusion of whether PROTOCOL_ERROR closed a single stream or the entire connection. 

> I think we need the freedom of promoting stream-level errors to connection errors. For example, when a server detects a suspicious activity by a client at a stream-level, it would make sense to close the connection.

Why do we need promotion for this? Closing the connection because of suspicious activity at the stream level sounds like a clear use-case for a connection level error such as HTTP_SUSPICIOUS_ACTIVITY (I don't think we should actually add this).

More generically, if an error at the stream level (clearly intended not to close the entire connection since its a stream level error) causes the entire connection to be closed, that should be communicated with a connection level error instead of a stream level error. Many of the current stream level errors don't make any sense at all when used in the context of a connection level error. Instead, if a stream error could possibly mandate closing the entire connection, it should have a corresponding connection level error that more clearly indicates why a stream level error caused the the entire connection to be closed.


-- 
You are receiving 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/2911#issuecomment-513576440
----==_mimepart_5d34adbb7e699_697b3fda89ccd9604839f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>HTTP_GENERAL_PROTOCOL_ERROR is a catch-all error code that can be for any reason. I'd prefer having that usable at stream-level too.</p>
</blockquote>
<p>PROTOCOL_ERROR sounds to me like something that mandates closing the connection. I do agree with having a catch-all error code for streams as well but I'd just add HTTP_GENERAL_STREAM_ERROR instead of reusing HTTP_GENERAL_PROTOCOl_ERROR. It avoids confusion of whether PROTOCOL_ERROR closed a single stream or the entire connection.</p>
<blockquote>
<p>I think we need the freedom of promoting stream-level errors to connection errors. For example, when a server detects a suspicious activity by a client at a stream-level, it would make sense to close the connection.</p>
</blockquote>
<p>Why do we need promotion for this? Closing the connection because of suspicious activity at the stream level sounds like a clear use-case for a connection level error such as HTTP_SUSPICIOUS_ACTIVITY (I don't think we should actually add this).</p>
<p>More generically, if an error at the stream level (clearly intended not to close the entire connection since its a stream level error) causes the entire connection to be closed, that should be communicated with a connection level error instead of a stream level error. Many of the current stream level errors don't make any sense at all when used in the context of a connection level error. Instead, if a stream error could possibly mandate closing the entire connection, it should have a corresponding connection level error that more clearly indicates why a stream level error caused the the entire connection to be closed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2911?email_source=notifications&amp;email_token=AFTOJK4V7FMTL6SSCMHOZDDQASSTXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI36A#issuecomment-513576440">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5L6VJ5ZEBYQHF2LXLQASSTXANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHB6XJYJP3QYOYEA3QASSTXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI36A.gif" height="1" width="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/2911?email_source=notifications\u0026email_token=AFTOJK4V7FMTL6SSCMHOZDDQASSTXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI36A#issuecomment-513576440",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK4V7FMTL6SSCMHOZDDQASSTXA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI36A#issuecomment-513576440",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34adbb7e699_697b3fda89ccd9604839f0--


From nobody Sun Jul 21 11:25:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 06C34120161 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:25:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7NGnTvbz6HOx for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:25: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 A0657120135 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:25:40 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:25:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563733540; bh=1xtRmnBQ1ylX8xBgOCqQxTjmmavp4vC3prdS5Lx+mww=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mFxrzOOnySkhfK2kWGDt7Uw+xO49sn+UOO1MjLczfGILr5lCNECYArI0xa12oXCny bOdxcq+6y0bBnU9Uki7Ic6Hq4TbjKHG0332AXq+95+6+z/yjs57LqRz+AMkJS4WNzh 8U60xzRvP+NpQYHVKdJoiGRwzkyaVsIoBRHlCsn4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LBPKMR6BVWNSZ2VF3IHQKHEVBNHHBUYK5KA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2684/513576536@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2684@github.com>
References: <quicwg/base-drafts/issues/2684@github.com>
Subject: Re: [quicwg/base-drafts] Mixture of transport and congestion control functions (#2684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34ae23e690b_17873f8cfd0cd9645472c0"; 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/5RAOuOL41qFL3dA6XvkXBmTnaNU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:25:42 -0000

----==_mimepart_5d34ae23e690b_17873f8cfd0cd9645472c0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The target is to fix this issue with the same PR as #2909 

-- 
You are receiving 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/2684#issuecomment-513576536
----==_mimepart_5d34ae23e690b_17873f8cfd0cd9645472c0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The target is to fix this issue with the same PR as <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469768251" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2909" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2909/hovercard" href="https://github.com/quicwg/base-drafts/issues/2909">#2909</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/2684?email_source=notifications&amp;email_token=AFTOJK6WIZGWMBLQZ7PWC2LQASS2HA5CNFSM4HMAYCWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI4WA#issuecomment-513576536">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5K3QIV63AG5QMDGA3QASS2HANCNFSM4HMAYCWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IFN27KWRGULXZXPDQASS2HA5CNFSM4HMAYCWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI4WA.gif" height="1" width="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/2684?email_source=notifications\u0026email_token=AFTOJK6WIZGWMBLQZ7PWC2LQASS2HA5CNFSM4HMAYCWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI4WA#issuecomment-513576536",
"url": "https://github.com/quicwg/base-drafts/issues/2684?email_source=notifications\u0026email_token=AFTOJK6WIZGWMBLQZ7PWC2LQASS2HA5CNFSM4HMAYCWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI4WA#issuecomment-513576536",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34ae23e690b_17873f8cfd0cd9645472c0--


From nobody Sun Jul 21 11:31:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 14A09120132 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:31:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Os99j6CfVP7p for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:31: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 7E7F8120161 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:31:00 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:30:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563733859; bh=t2vApK8Ab44J8FISBZWTsuLVvhOoYxiVxRHsIRww6EA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1q997OovSxxMY+XZk7ivC19rMRqBV5hdspF9+NdRLOWA6YXGxDb2QR+O2wJUg1mcs yxhDEV2D4XHj53pgEg40WgRWE4tU4oxcA0+R13FKBSvTlNoZXUQ4FXSycAF5DQgV/J JFyOagESMuZZEVNh8KIeDY6DVdutw6Ou4oLmXJ0A=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5VCW33JUPJPLMOX3N3IHQ6HEVBNHHBYDQKAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2911/513576904@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2911@github.com>
References: <quicwg/base-drafts/issues/2911@github.com>
Subject: Re: [quicwg/base-drafts] Separate HTTP/3 stream errors from connection errors. (#2911)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34af639a9ec_17f73f8cfd0cd9646501f"; 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/zZWhzve-zORUPQrdy9pXNSfByCE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:31:02 -0000

----==_mimepart_5d34af639a9ec_17f73f8cfd0cd9646501f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think what we're missing is that the distinction between connection error and stream "error" is explicitly present in the QUIC transport, by the use of different frames. 

It seems we are discarding that information and then trying to back-infer it from an error code. I'd argue that this is the wrong approach because in practice, there is a good chance the remote peer's approach to selecting error codes is 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/2911#issuecomment-513576904
----==_mimepart_5d34af639a9ec_17f73f8cfd0cd9646501f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think what we're missing is that the distinction between connection error and stream "error" is explicitly present in the QUIC transport, by the use of different frames.</p>
<p>It seems we are discarding that information and then trying to back-infer it from an error code. I'd argue that this is the wrong approach because in practice, there is a good chance the remote peer's approach to selecting error codes is 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/2911?email_source=notifications&amp;email_token=AFTOJK66JGOOGF3DXY5ZGQDQASTOHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI7SA#issuecomment-513576904">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSTS37WADMCGBU3J3QASTOHANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7UPNK3363VDR6YTWDQASTOHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI7SA.gif" height="1" width="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/2911?email_source=notifications\u0026email_token=AFTOJK66JGOOGF3DXY5ZGQDQASTOHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI7SA#issuecomment-513576904",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK66JGOOGF3DXY5ZGQDQASTOHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OI7SA#issuecomment-513576904",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34af639a9ec_17f73f8cfd0cd9646501f--


From nobody Sun Jul 21 11:39:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F1C07120165 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:39:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 I8VVJW-N3bb3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:39: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 90C46120127 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:39:37 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:39:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734376; bh=TjzRQvlHulRKyWhA6oQMlt1NgbW1H5o0qbzjYBjrzU4=; h=Date:From:To:Subject:From; b=ygQquTNk1AWYcN+Fa7UNK7ab37aDlj5Z6N89+ydcpY7m6LRO74r1b3N1Pu0kWUvz2 TGRkW3jN0WQ0huhtJ3YVLJi5pU+8DkA65fr6XumgwS177j9DarUMZ35+S8N9cSYOwd f6X7lJ6fsOPx6flCkNfKcQX6xpBmDBE39gbaOZYQ=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/close2685/000000-e0c0ed@github.com>
Subject: [quicwg/base-drafts] e0c0ed: Clarify resetting congestion control
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-F8d_KzSQE8fNNxoDv6W48Iuzhs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:39:39 -0000

  Branch: refs/heads/close2685
  Home:   https://github.com/quicwg/base-drafts
  Commit: e0c0ed2898f55e5dc4feac38520bcb272c6276f2
      https://github.com/quicwg/base-drafts/commit/e0c0ed2898f55e5dc4feac38520bcb272c6276f2
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify resetting congestion control



From nobody Sun Jul 21 11:41:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5FF9E120135 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:41:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CKXdFHmkxfwA for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:41:02 -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 A56C3120127 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:41:02 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:41:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734461; bh=+67Ry7TzDU2JDI84tOCYI+IWoUhUgXxdppRvLEF+X6U=; h=Date:From:To:Subject:From; b=S7tNxjGJ6AYcFLdmQuGLd9VdM3r3ZZkmuHlSNf0dPR1JvOO/AZdSPHPXFAeObzvgE j6MvCFT3aU6S+/w0E590yy+ZTA7M1E8W13FmpBhdU+FnK7SDW0zvl1s0oVm4+cfHzW lei5zdminKEcPPZArulicJnx3y8DGEMAfyBh/vG0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cf8dee-74313a@github.com>
Subject: [quicwg/base-drafts] 74313a: Script updating gh-pages from e0c0ed28. [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/TXt0S2O46OZ90Yxr507eXHlWWnM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:41:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 74313ae1cf9fae3e21a6a02aa7fc24a10c6b5a12
      https://github.com/quicwg/base-drafts/commit/74313ae1cf9fae3e21a6a02aa7fc24a10c6b5a12
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    A close2685/draft-ietf-quic-http.html
    A close2685/draft-ietf-quic-http.txt
    A close2685/draft-ietf-quic-invariants.html
    A close2685/draft-ietf-quic-invariants.txt
    A close2685/draft-ietf-quic-qpack.html
    A close2685/draft-ietf-quic-qpack.txt
    A close2685/draft-ietf-quic-recovery.html
    A close2685/draft-ietf-quic-recovery.txt
    A close2685/draft-ietf-quic-tls.html
    A close2685/draft-ietf-quic-tls.txt
    A close2685/draft-ietf-quic-transport.html
    A close2685/draft-ietf-quic-transport.txt
    A close2685/index.html
    R ianswett-exceed-stream-limits/draft-ietf-quic-http.html
    R ianswett-exceed-stream-limits/draft-ietf-quic-http.txt
    R ianswett-exceed-stream-limits/draft-ietf-quic-invariants.html
    R ianswett-exceed-stream-limits/draft-ietf-quic-invariants.txt
    R ianswett-exceed-stream-limits/draft-ietf-quic-qpack.html
    R ianswett-exceed-stream-limits/draft-ietf-quic-qpack.txt
    R ianswett-exceed-stream-limits/draft-ietf-quic-recovery.html
    R ianswett-exceed-stream-limits/draft-ietf-quic-recovery.txt
    R ianswett-exceed-stream-limits/draft-ietf-quic-tls.html
    R ianswett-exceed-stream-limits/draft-ietf-quic-tls.txt
    R ianswett-exceed-stream-limits/draft-ietf-quic-transport.html
    R ianswett-exceed-stream-limits/draft-ietf-quic-transport.txt
    R ianswett-exceed-stream-limits/index.html
    R ianswett-streams-editorial/draft-ietf-quic-http.html
    R ianswett-streams-editorial/draft-ietf-quic-http.txt
    R ianswett-streams-editorial/draft-ietf-quic-invariants.html
    R ianswett-streams-editorial/draft-ietf-quic-invariants.txt
    R ianswett-streams-editorial/draft-ietf-quic-qpack.html
    R ianswett-streams-editorial/draft-ietf-quic-qpack.txt
    R ianswett-streams-editorial/draft-ietf-quic-recovery.html
    R ianswett-streams-editorial/draft-ietf-quic-recovery.txt
    R ianswett-streams-editorial/draft-ietf-quic-tls.html
    R ianswett-streams-editorial/draft-ietf-quic-tls.txt
    R ianswett-streams-editorial/draft-ietf-quic-transport.html
    R ianswett-streams-editorial/draft-ietf-quic-transport.txt
    R ianswett-streams-editorial/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e0c0ed28. [ci skip]



From nobody Sun Jul 21 11:41:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 52997120127 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:41:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EsP-f97nFYdx for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:41:19 -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 14FEA12008C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:41:19 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:41:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734478; bh=XXIbfgq/B1DMFI2P0i4miaQ3HnGIjBxnJ2PaUkB8+RM=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Bl0Mk5adkcP9aw5KIuGO1KGdOlWhKTWO5zJjGYcXyk6tZNIlLcFfy9CXBO4i0hdSg JbshaswsTJmuDLx66ZOsI38VvCCb0HkCFpQ+efPMDfcKSHms8gQi1L2gYnAHz0loJY gh21KCVwtkeNXkOkAxXjulSAzqpgLbE7hVWmsv0s=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZNKGMTRA6DQJIVA453IHSE5EVBNHHBYEAEC4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2917@github.com>
Subject: [quicwg/base-drafts] Clarify resetting congestion control (#2917)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b1ce66310_509c3ffa0c0cd960198698"; 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/54u1qtPqp-RYeXglK8xonrG1vnc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:41:20 -0000

----==_mimepart_5d34b1ce66310_509c3ffa0c0cd960198698
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closes 2685.

This doesn't address both editorial clarifications in #2685, but the second one is now getting covered in #2909 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2917

-- Commit Summary --

  * Clarify resetting congestion control

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2917.patch
https://github.com/quicwg/base-drafts/pull/2917.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/2917

----==_mimepart_5d34b1ce66310_509c3ffa0c0cd960198698
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closes 2685.</p>
<p>This doesn't address both editorial clarifications in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="442599805" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2685" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2685/hovercard" href="https://github.com/quicwg/base-drafts/issues/2685">#2685</a>, but the second one is now getting covered in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469768251" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2909" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2909/hovercard" href="https://github.com/quicwg/base-drafts/issues/2909">#2909</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/2917'>https://github.com/quicwg/base-drafts/pull/2917</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Clarify resetting congestion control</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2917/files#diff-0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2917.patch'>https://github.com/quicwg/base-drafts/pull/2917.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2917.diff'>https://github.com/quicwg/base-drafts/pull/2917.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/2917?email_source=notifications&amp;email_token=AFTOJK5PAHUXSYQFXI373ELQASUU5A5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQAQLQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZP7VE666LBGTCAAJ3QASUU5ANCNFSM4IFTFBPQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JIKQAAOFU372LT2LQASUU5A5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQAQLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2917?email_source=notifications\u0026email_token=AFTOJK5PAHUXSYQFXI373ELQASUU5A5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQAQLQ",
"url": "https://github.com/quicwg/base-drafts/pull/2917?email_source=notifications\u0026email_token=AFTOJK5PAHUXSYQFXI373ELQASUU5A5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQAQLQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34b1ce66310_509c3ffa0c0cd960198698--


From nobody Sun Jul 21 11:42:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E7F2F120135 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:42:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PUoYLMtscqCF for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:42: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 9B2BB120127 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:42:49 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:42:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734568; bh=X5+XGlN0u5meXGr2uieMl0AQU1Mte/SVZrsaJOMEsuQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HU7dU33LzMBiDrq8yBxNUdU//jvCzeii6vYcJkJjeEDAAH3EG3Old5yB/Ozd0O8MG XS8eAGjLtj+efNJFrDEnK+dvbdgil/E5mXpPg6nufiFk+gojl4eg04ZH4xnsqEqQmF iOImCVqYc/1b0n3XqkA6a58qG7vaQMpIe9Uxf3is=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6LWSQIIV2MUX6NVPV3IHSKREVBNHHBYEAEC4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2917/review/264549276@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2917@github.com>
References: <quicwg/base-drafts/pull/2917@github.com>
Subject: Re: [quicwg/base-drafts] Clarify resetting congestion control (#2917)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b228968af_6f913fb78d4cd964408676"; 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/omig1slCtfUF_Zvx1JuwTxDPweQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:42:51 -0000

----==_mimepart_5d34b228968af_6f913fb78d4cd964408676
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/2917#pullrequestreview-264549276
----==_mimepart_5d34b228968af_6f913fb78d4cd964408676
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2917?email_source=notifications&amp;email_token=AFTOJK7GZPXDTKP5MJZ6CRLQASU2RA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLHHA#pullrequestreview-264549276">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3V2QZ7GNW2KIICWCLQASU2RANCNFSM4IFTFBPQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZS3PI3C35ODBJ3MLQASU2RA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLHHA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2917?email_source=notifications\u0026email_token=AFTOJK7GZPXDTKP5MJZ6CRLQASU2RA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLHHA#pullrequestreview-264549276",
"url": "https://github.com/quicwg/base-drafts/pull/2917?email_source=notifications\u0026email_token=AFTOJK7GZPXDTKP5MJZ6CRLQASU2RA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLHHA#pullrequestreview-264549276",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34b228968af_6f913fb78d4cd964408676--


From nobody Sun Jul 21 11:44:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8800E120161 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lNzwnqVhbIf6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44:11 -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 635F1120127 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:44:11 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:44:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734650; bh=ueu2/UBUwNwA2TloHHDTAhDrK20IA0hN2iQ+tdnyB4o=; h=Date:From:To:Subject:From; b=TKUwQ6k3n9ybxybQvy6OscbAFBHkVNLgD2EWGtAdhO0+KMVl12UWsrVlW41spCQGN lUfvwACOESrWaL77oOEvbA8zAoUNZ1ufEjDPk9Y+NFdLaqfeVl7o8cQ8OfAQmrcl7/ DnHBp7lDR7xbedZxWDPOgI+ynSdJH+XiUd9CtRTU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/94e02c-02c8c8@github.com>
Subject: [quicwg/base-drafts] e0c0ed: Clarify resetting congestion control
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PYLf7yUWZofQeqiV0It7ZhCFqmE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:44:13 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: e0c0ed2898f55e5dc4feac38520bcb272c6276f2
      https://github.com/quicwg/base-drafts/commit/e0c0ed2898f55e5dc4feac38520bcb272c6276f2
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify resetting congestion control


  Commit: 02c8c88c142ca4ac8a1b08c1c16b333cbf1a38f8
      https://github.com/quicwg/base-drafts/commit/02c8c88c142ca4ac8a1b08c1c16b333cbf1a38f8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2917 from quicwg/close2685

Clarify resetting congestion control


Compare: https://github.com/quicwg/base-drafts/compare/94e02c1f34af...02c8c88c142c


From nobody Sun Jul 21 11:44:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 32A96120161 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 QXUXzdA2DK5N for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44: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 EBD04120135 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:44:17 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:44:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734656; bh=l155eOOdlLOU6hgYa75u02/pQbiyeB3u/DI0I1M8EiY=; h=Date:From:To:Subject:From; b=KAJO4MEp63EwU0V05QOcbzNC3HBZ3B99NkzhFaSC9uC3aQSRuWK7kIVaxx/rBkfHI DuL1ty9dSsZ8/iK1+gr3yevI95vOUCgY1XcYlfMC1Om8xcxNtpZMYggHK47Z+mxR73 lsggxcx/wOpOGNxgpVKtV9u3CRvFnDjl4vLMS5ZI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/close2685/e0c0ed-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/s3oj_zeLrgsWP_d4dqFAmkM6rjo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:44:19 -0000

  Branch: refs/heads/close2685
  Home:   https://github.com/quicwg/base-drafts


From nobody Sun Jul 21 11:44:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C29F5120179 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bVEbrpwG9vMx for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44: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 867F5120135 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:44:19 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:44:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734658; bh=Yf/DksMa+pNg0AfsGNoCHHTINlFGKtSDVrzHPpxPPbc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wqPLIXgmPiJklHSbhpbioxDydiyQVDtGKShL2rSPJM6FU5+7TeXOtmSwMPCmhEKXL 6MPiP7Hxo6ALJCI2Q8gmtZot2bX+8AK2Yqpt6nV7rOELaOLem3Ep4IPLXwjZ7SD7qS lyN5p3+8nwiuDMicVhinIEvXh8LNGA6rjv7KmpeY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4PQMQIG6XWSTR47WN3IHSQFEVBNHHBUYMJPU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2685/issue_event/2498185674@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2685@github.com>
References: <quicwg/base-drafts/issues/2685@github.com>
Subject: Re: [quicwg/base-drafts] CC state after a change of path? (#2685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b282773b3_17943f8cfd0cd964540998"; 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/v-Ga-xTmx6gdANgmXamvtpnoqzw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:44:22 -0000

----==_mimepart_5d34b282773b3_17943f8cfd0cd964540998
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2685 via #2917.

-- 
You are receiving 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/2685#event-2498185674
----==_mimepart_5d34b282773b3_17943f8cfd0cd964540998
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="442599805" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2685" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2685/hovercard" href="https://github.com/quicwg/base-drafts/issues/2685">#2685</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470811671" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2917" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2917/hovercard" href="https://github.com/quicwg/base-drafts/pull/2917">#2917</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/2685?email_source=notifications&amp;email_token=AFTOJK7TYWMAZW5XUMI6NTLQASVAFA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSQ#event-2498185674">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6DERHH62GQBEHR47TQASVAFANCNFSM4HMA6SFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FURUP4RWDLYJ24C3QASVAFA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSQ.gif" height="1" width="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/2685?email_source=notifications\u0026email_token=AFTOJK7TYWMAZW5XUMI6NTLQASVAFA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSQ#event-2498185674",
"url": "https://github.com/quicwg/base-drafts/issues/2685?email_source=notifications\u0026email_token=AFTOJK7TYWMAZW5XUMI6NTLQASVAFA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSQ#event-2498185674",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34b282773b3_17943f8cfd0cd964540998--


From nobody Sun Jul 21 11:44:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 285AE12016E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jqrcZIZp_OyU for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:44: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 8E83A120161 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:44:19 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:44:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734658; bh=4hkin2J4BL5b3wH0zBuT/6DeXJRfRfTzPt0LYTsKiJE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z6lUPaKpRgopqJguc2Dc7FPzL0YwHOKj/82KnZrFflA2KhI5a9uOwT7O6V2iYgSUt aMzH+nY7ERf/95qGmbJgp8ngZUoDBJIn+A+/zcWljNMZQveDbHTUndWsF06NAI5ouv HZtKb0tJ0EoUF7igiRncvlvHkeBmwF4e1NasTTTQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5C3O7BA6FIK226IA53IHSQFEVBNHHBYEAEC4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2917/issue_event/2498185673@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2917@github.com>
References: <quicwg/base-drafts/pull/2917@github.com>
Subject: Re: [quicwg/base-drafts] Clarify resetting congestion control (#2917)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b282ad18b_34123f815bccd960506765"; 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/4QnYIo8J83GC-wTfNH2GC3kwM-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: Sun, 21 Jul 2019 18:44:22 -0000

----==_mimepart_5d34b282ad18b_34123f815bccd960506765
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2917 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/2917#event-2498185673
----==_mimepart_5d34b282ad18b_34123f815bccd960506765
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470811671" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2917" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2917/hovercard" href="https://github.com/quicwg/base-drafts/pull/2917">#2917</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/2917?email_source=notifications&amp;email_token=AFTOJK4ZJIFJCJXDURBCZHLQASVAFA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSI#event-2498185673">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6B7JTL5RU3VS5VGH3QASVAFANCNFSM4IFTFBPQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5QZQY7L7K4RNCT5XLQASVAFA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2917?email_source=notifications\u0026email_token=AFTOJK4ZJIFJCJXDURBCZHLQASVAFA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSI#event-2498185673",
"url": "https://github.com/quicwg/base-drafts/pull/2917?email_source=notifications\u0026email_token=AFTOJK4ZJIFJCJXDURBCZHLQASVAFA5CNFSM4IFTFBP2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTUTSI#event-2498185673",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34b282ad18b_34123f815bccd960506765--


From nobody Sun Jul 21 11:45:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 52FD3120165 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:45:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NQgwuks6FfRa for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 11:45: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 C8F2F120135 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 11:45:31 -0700 (PDT)
Date: Sun, 21 Jul 2019 11:45:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563734731; bh=Z1o83zB+lMJHV6/twRvZJV1kFnZmlZ/C+Ne7DcsSaxk=; h=Date:From:To:Subject:From; b=K+LifVMpoUZHKBcVeZ+7JxEsQb00k0RCxm30cWgoEpm38459OlR1R7PGEXN9Q0fBU 0SGJquPFhFi9f2EZ1oYtmMEl64IBUq6/ONOlof4IfyWbxIVEJLz0Wup9UAvds3sje7 tw/AmjMcJMAWjU8VLrrSO/lSkCvc94h/cp/F1+2g=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/74313a-e6c4d7@github.com>
Subject: [quicwg/base-drafts] e6c4d7: Script updating gh-pages from 02c8c88c. [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/DuKJYSoaKj3Qn8nCMjTVjt6gWNg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 18:45:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e6c4d73db5a827097eda77054f02e0dad0e15d24
      https://github.com/quicwg/base-drafts/commit/e6c4d73db5a827097eda77054f02e0dad0e15d24
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 02c8c88c. [ci skip]



From nobody Sun Jul 21 12:02:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0434B1201F3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:01:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id s5IQXlM9-h7E for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:01: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 2347F120170 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:01:52 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:01:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563735711; bh=QFrZ29ylFcIs4h+m/Kzq+P3r5APQkd0JXdeN+d5XVTk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eJPdJ3mjfLC4sa+tRqJTtenR/brNfXt7+3hFTIZH5kH1od2EqtepyanxyxBgyIKd0 CLu089qcMiBgxZJmbd+eUtDz1Kx5xVGfQyIb8qjKVDSIF2kAk7Ads/5j62FK5lyaqf wydJVcYD7TkLycXYf62PWOvcDRqaraBT4/DP7gSU=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6WTAL6TPDUPX64CNF3IHUR7EVBNHHBXDZPBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2863/513579031@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2863@github.com>
References: <quicwg/base-drafts/issues/2863@github.com>
Subject: Re: [quicwg/base-drafts] unrecoverable loss pattern leads to deadlock (#2863)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b69f64b97_176f3f8cfd0cd96475199a"; 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/4OITjyt6HD3yUAwKPmzxnVik7wk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:02:03 -0000

----==_mimepart_5d34b69f64b97_176f3f8cfd0cd96475199a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Technically, 1RTT packets can be sent on the PTO when there is unacked Handshake data, but you're correct that if there are two MSS or more of Handshake data, the client would repeatedly retransmit that data instead of sending any 1RTT packets as written today.

I think MT's PR is heading in the right direction.

@marten-seemann do you have an alternate suggestion of how to deal with this situation?

-- 
You are receiving 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/2863#issuecomment-513579031
----==_mimepart_5d34b69f64b97_176f3f8cfd0cd96475199a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Technically, 1RTT packets can be sent on the PTO when there is unacked Handshake data, but you're correct that if there are two MSS or more of Handshake data, the client would repeatedly retransmit that data instead of sending any 1RTT packets as written today.</p>
<p>I think MT's PR is heading in the right direction.</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a> do you have an alternate suggestion of how to deal with this situation?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2863?email_source=notifications&amp;email_token=AFTOJK5BHYYDDA4QSZVLYVLQASXB7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJQFY#issuecomment-513579031">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2KN5HZGCJMGFDKHZTQASXB7ANCNFSM4H4LZFRA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYKK7PPJPUHQKQHMTQASXB7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJQFY.gif" height="1" width="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/2863?email_source=notifications\u0026email_token=AFTOJK5BHYYDDA4QSZVLYVLQASXB7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJQFY#issuecomment-513579031",
"url": "https://github.com/quicwg/base-drafts/issues/2863?email_source=notifications\u0026email_token=AFTOJK5BHYYDDA4QSZVLYVLQASXB7A5CNFSM4H4LZFRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJQFY#issuecomment-513579031",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34b69f64b97_176f3f8cfd0cd96475199a--


From nobody Sun Jul 21 12:06:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E50E1120127 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:06:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hj0H_hf2FE0N for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:06:56 -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 0A833120094 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:06:56 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:06:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736015; bh=QyuMbCQqJ2aJU3NYDOxBqqvf3iUNvFn5cWFp+FCGbgc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vQbWVsH6phVokZwqrpDoX3KQZlDPWJRoK9kC06vm0kUmM2cG4+kmQo7cytOahBIMw nnqXbGeh+5LpCPcNdaXcZveQN1ztSMNnHf3cgsrwDgpLiKZraG0Dvx47xs0klkY3eq 74J0aUsEIgUFfusMrb7ZOuZZV49Ci05BEAfVfFEc=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2KRG3VFSBAD2S7EN3IHVE7EVBNHHBYD42OI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2916/review/264550154@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b7cf1ce65_a003ff392acd9689397be"; 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/1m_CFJmtnPzSdvfMfdp9KoZGTJM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:06:58 -0000

----==_mimepart_5d34b7cf1ce65_a003ff392acd9689397be
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -2880,6 +2880,28 @@ packet.
 expectations about what implementations do with packets that have errors after
 valid frames? -->
 
+
+## Generating Acknowledgements {#generating-acks}
+
+An acknowledgement SHOULD be sent immediately upon receipt of a second
+ack-eliciting packet. QUIC recovery algorithms do not assume the peer sends
+an ACK immediately when receiving a second ack-eliciting packet.
+
+In order to accelerate loss recovery and reduce timeouts, the receiver SHOULD
+send an immediate ACK after it receives an out-of-order packet. It could send

Yes, both would be considered out of order.  I thought we already said to send an immediate ACK when the PN is not 1 larger than the largest processed packet number, but I can't find 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/2916#discussion_r305631524
----==_mimepart_5d34b7cf1ce65_a003ff392acd9689397be
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2916#discussion_r305631524">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2880,6 +2880,28 @@ packet.
 expectations about what implementations do with packets that have errors after
 valid frames? --&gt;
 
+
+## Generating Acknowledgements {#generating-acks}
+
+An acknowledgement SHOULD be sent immediately upon receipt of a second
+ack-eliciting packet. QUIC recovery algorithms do not assume the peer sends
+an ACK immediately when receiving a second ack-eliciting packet.
+
+In order to accelerate loss recovery and reduce timeouts, the receiver SHOULD
+send an immediate ACK after it receives an out-of-order packet. It could send
</pre>
<p>Yes, both would be considered out of order.  I thought we already said to send an immediate ACK when the PN is not 1 larger than the largest processed packet number, but I can't find 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/2916?email_source=notifications&amp;email_token=AFTOJK54U3HXNK4YPN6B26TQASXU7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLOCQ#discussion_r305631524">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FN3IJPH7XFP7IOYLQASXU7ANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK76WRDRFXHTWMR3FSDQASXU7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLOCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK54U3HXNK4YPN6B26TQASXU7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLOCQ#discussion_r305631524",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK54U3HXNK4YPN6B26TQASXU7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLOCQ#discussion_r305631524",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34b7cf1ce65_a003ff392acd9689397be--


From nobody Sun Jul 21 12:13:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BB8A01200A3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:13:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 2BSpsIArfz8R for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:13: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 83D32120094 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:13:34 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:13:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736413; bh=RF0jvWHbIiBLeIWiaclYHozr++ZbJAF6gr5c0ddfEHo=; h=Date:From:To:Subject:From; b=oMk5jDJpjB/ExizP7dLu9H1NaO7anNO70maeOwS1H3Gdfqfya/DDBwT9tnPjLGr7N CVDYkhhTC1L6vd5CoewE697IxX3XyeSOog3I+O1E6zUqMcvAYTbusQLSA7qsf4a8CB Wa6LXcIqH6rxJRxqTaKcShMqTgprVxVQ67kKDu/g=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/b1cd75-34f06f@github.com>
Subject: [quicwg/base-drafts] 34f06f: 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/p4vs99F2qwDpbd4y-16lsFAQogg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:13:36 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 34f06f467b1e4aee411948339734d339846da4c9
      https://github.com/quicwg/base-drafts/commit/34f06f467b1e4aee411948339734d339846da4c9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Sun Jul 21 12:13:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5A1381200B9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:13:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 T0ub05pd_x3S for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:13:43 -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 9983C120094 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:13:42 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:13:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736421; bh=FU8i3pV+MjM4K1xLKf4fVYqIzklMwhYxGXlMNVtdjbc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=awxteu4WrfNpqRT/Fx3fibAMGauPznj/ERzRYN8IsIVoGxcz8URg0FHyhkTM8VUIp ieBRZpjjruFvR28rqDwroLHBDxIPXqZlHm8+7rELeVIGlmtutylOpT8Bv2mxsMMola d5QN3LQaz+3p4q9HBd66R2AfG0kovJbCz+IhfsnI=
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/2916/push/3839702434@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2916@github.com>
References: <quicwg/base-drafts/pull/2916@github.com>
Subject: Re: [quicwg/base-drafts] Move Generating Acknowledgements to Transport (#2916)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b965be100_9483f94798cd96027959f"; 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/6ghW5ZCo-b2HcMiyOcto0o7aeEI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:13:44 -0000

----==_mimepart_5d34b965be100_9483f94798cd96027959f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

34f06f467b1e4aee411948339734d339846da4c9  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/2916/files/b1cd751bf703af2bc1fc2e0efec54dc83d10101a..34f06f467b1e4aee411948339734d339846da4c9

----==_mimepart_5d34b965be100_9483f94798cd96027959f
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/34f06f467b1e4aee411948339734d339846da4c9">34f06f4</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/2916/files/b1cd751bf703af2bc1fc2e0efec54dc83d10101a..34f06f467b1e4aee411948339734d339846da4c9?email_source=notifications&amp;email_token=AFTOJKYND6UZW52M6HYTMMLQASYOLA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNZQGI2DGNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LGKUUWSCY735JGKLQASYOLANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3H4UPZIL4TJVORPKDQASYOLA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNZQGI2DGNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2916/files/b1cd751bf703af2bc1fc2e0efec54dc83d10101a..34f06f467b1e4aee411948339734d339846da4c9?email_source=notifications\u0026email_token=AFTOJKYND6UZW52M6HYTMMLQASYOLA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNZQGI2DGNA",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/b1cd751bf703af2bc1fc2e0efec54dc83d10101a..34f06f467b1e4aee411948339734d339846da4c9?email_source=notifications\u0026email_token=AFTOJKYND6UZW52M6HYTMMLQASYOLA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZTHAZTSNZQGI2DGNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34b965be100_9483f94798cd96027959f--


From nobody Sun Jul 21 12:14:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8B2441200B9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:14:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gshB97jZ3pIU for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:14: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 1DD22120094 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:14:08 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:14:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736447; bh=6668q7pEPFFUpM/WLBQAeBYfqKzzQZ+6SDyWAd/dvrE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TDurXhxAEwETwLCHBr9hNN0Ksdzf0E0/fnPXgKJfFUTTtsUGTqMIek/Mik+Yqlkbj gVgmRU7vRwNqcI2EqZb9uagLYT1c8qg+bxTjKU7loNSNnL7RBQnflo9VXBh0s/qQ9I JPEXG3zImHdEs1D8m2PVDqDdpr0SCRdT3U5GZbfE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK53MOGVYIQ2OGV646F3IHV77EVBNHHBUYMJPU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2685/513579953@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2685@github.com>
References: <quicwg/base-drafts/issues/2685@github.com>
Subject: Re: [quicwg/base-drafts] CC state after a change of path? (#2685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b97f30262_14fc3fed79ccd96c6785c4"; 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/vu-oEwUF2CCdTe7CxmPF0R9Kbqk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:14:09 -0000

----==_mimepart_5d34b97f30262_14fc3fed79ccd96c6785c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Re-opening issue. This needs a bit more 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/2685#issuecomment-513579953
----==_mimepart_5d34b97f30262_14fc3fed79ccd96c6785c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Re-opening issue. This needs a bit more 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/2685?email_source=notifications&amp;email_token=AFTOJK2EYEPCPQVRHM74MPDQASYP7A5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJXMI#issuecomment-513579953">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYSR34LQ456M7HGOVTQASYP7ANCNFSM4HMA6SFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5NZUVHKHTUSWHQ2FTQASYP7A5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJXMI.gif" height="1" width="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/2685?email_source=notifications\u0026email_token=AFTOJK2EYEPCPQVRHM74MPDQASYP7A5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJXMI#issuecomment-513579953",
"url": "https://github.com/quicwg/base-drafts/issues/2685?email_source=notifications\u0026email_token=AFTOJK2EYEPCPQVRHM74MPDQASYP7A5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OJXMI#issuecomment-513579953",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34b97f30262_14fc3fed79ccd96c6785c4--


From nobody Sun Jul 21 12:14:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 18B49120094 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:14:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id T2cMNp1x1w9N for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:14: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 BFE441200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:14:08 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:14:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736448; bh=EYQpfuVaGEH4xR3AkanWeOMM/zZrsLLy5SddtvzfFbk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PI2TLVZZ8Z8yvluk6YY8anhQqEYFIFaoCxYMLyJmh61fvNvx9TJntFZTqUS/mY7Nv Poea7Xk64pcZezJZ6snaMJpiJmUltn0hIdm/FX6xDbzQsN4dno2FmuRz/EZBOKPr0m /FUF2I9+ah2KxIBJTcAzoxLsIrORmZ/oT487nsKA=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOMYPIACTRRDO3ZYF3IHWABEVBNHHBUYMJPU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2685/issue_event/2498199517@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2685@github.com>
References: <quicwg/base-drafts/issues/2685@github.com>
Subject: Re: [quicwg/base-drafts] CC state after a change of path? (#2685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b98010b3d_4fc23fda89ccd9604346b2"; 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/ww5VTAxd5JXG8QGWkkjDAxSPaoo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:14:10 -0000

----==_mimepart_5d34b98010b3d_4fc23fda89ccd9604346b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Reopened #2685.

-- 
You are receiving 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/2685#event-2498199517
----==_mimepart_5d34b98010b3d_4fc23fda89ccd9604346b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Reopened <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="442599805" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2685" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2685/hovercard" href="https://github.com/quicwg/base-drafts/issues/2685">#2685</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/2685?email_source=notifications&amp;email_token=AFTOJK4QDK4TZDGI7CP6SPDQASYQBA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTX7XI#event-2498199517">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY3OAWZENQ6GUFHLCTQASYQBANCNFSM4HMA6SFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYKMDUWXQXIXIL5Z5LQASYQBA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTX7XI.gif" height="1" width="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/2685?email_source=notifications\u0026email_token=AFTOJK4QDK4TZDGI7CP6SPDQASYQBA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTX7XI#event-2498199517",
"url": "https://github.com/quicwg/base-drafts/issues/2685?email_source=notifications\u0026email_token=AFTOJK4QDK4TZDGI7CP6SPDQASYQBA5CNFSM4HMA6SFKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTX7XI#event-2498199517",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34b98010b3d_4fc23fda89ccd9604346b2--


From nobody Sun Jul 21 12:14:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 87AC11201D0 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:14:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e36bxGQFfTZv for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:14: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 EFC69120189 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:14:49 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:14:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736489; bh=e+07iz9yorfNybIlby6fy8ky9dxBtYJy+Su/ei6P8wE=; h=Date:From:To:Subject:From; b=V7WFzTxbrSzP8jCvaIoCQHRgESVe1nKYFub6ERPdUAYXCi4l8yfuGYZgdIaG5K9Wz INdPic9BpqL5l2PeE1SMTZq5vsWe9uTuqTnP0o6mlJEu/MYo40eV4Z1YEjQDLkP/c6 RVfL5ya83YNRhwZSt7uYY/DCUkCr3oRJny4TPx2c=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e6c4d7-0db43e@github.com>
Subject: [quicwg/base-drafts] 0db43e: Script updating gh-pages from 34f06f46. [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/d1EolgpD6F_WOsCXv7LVUBqHAgY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:14:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0db43e137688a1ae8ab7a9423618dcbf7af12ee8
      https://github.com/quicwg/base-drafts/commit/0db43e137688a1ae8ab7a9423618dcbf7af12ee8
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    A ianswett-generating-acknowledgements/draft-ietf-quic-http.html
    A ianswett-generating-acknowledgements/draft-ietf-quic-http.txt
    A ianswett-generating-acknowledgements/draft-ietf-quic-invariants.html
    A ianswett-generating-acknowledgements/draft-ietf-quic-invariants.txt
    A ianswett-generating-acknowledgements/draft-ietf-quic-qpack.html
    A ianswett-generating-acknowledgements/draft-ietf-quic-qpack.txt
    A ianswett-generating-acknowledgements/draft-ietf-quic-recovery.html
    A ianswett-generating-acknowledgements/draft-ietf-quic-recovery.txt
    A ianswett-generating-acknowledgements/draft-ietf-quic-tls.html
    A ianswett-generating-acknowledgements/draft-ietf-quic-tls.txt
    A ianswett-generating-acknowledgements/draft-ietf-quic-transport.html
    A ianswett-generating-acknowledgements/draft-ietf-quic-transport.txt
    A ianswett-generating-acknowledgements/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 34f06f46. [ci skip]



From nobody Sun Jul 21 12:15:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ABFED1200B9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:15:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 BL0O9C_m3Jkm for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:15:32 -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 43FC31200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:15:32 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:15:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736531; bh=ZbClX8V2+eGUCWlHW3j/tW6p6P/JXDEGlZYDAUYZPTU=; h=Date:From:To:Subject:From; b=fpDf/0eGkRPfl8goHy8Wc4B6hJBRPqSzQCk29NC1e0LNkI596uontXniH/Xto1dQD bYoGZOMBEkP5FjZg2JBOvKb7bk+D0qmtwbPQt4smJ4VemMsHm71O2nBY9JGYdHBMRZ aqfi6/oGuzmPt07iAIrQ7QKc9L9KfgbfpKQqEvRc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-under-utilizing/d510f2-e26439@github.com>
Subject: [quicwg/base-drafts] e26439: 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/VyuKyPoOkTyO8aBRyNHXf5qNeg0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:15:34 -0000

  Branch: refs/heads/ianswett-under-utilizing
  Home:   https://github.com/quicwg/base-drafts
  Commit: e264396d527b2369250330fafe996a58f3f8a3ae
      https://github.com/quicwg/base-drafts/commit/e264396d527b2369250330fafe996a58f3f8a3ae
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Sun Jul 21 12:15:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BC98C120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:15:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M-63sG5md3MX for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:15: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 273631200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:15:40 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:15:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736539; bh=A5HwLoQfJ06AMTYYwOn8zGnyjTIvo3bZKZPdk243688=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xX7HmGBEE4S6PXJKlHiELRWZlXUOKfgsyIq0XbFpTJ7D3EOVN4orejTGTjUdxkVmG NqtMlizT0x/6Zltl4G+EO0p+LIeTOmxUH2S6GuMnrk3VXXRIx2+SPhjD/o5uCgzlgd e/d6CImrxeq12osmRGnWJbn9qs8V0R9TQxLu/Elw=
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/2675/push/3839705083@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2675@github.com>
References: <quicwg/base-drafts/pull/2675@github.com>
Subject: Re: [quicwg/base-drafts] Define under-utilizing the congestion window (#2675)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34b9db66eaf_13493f8347acd960115166"; 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/TH7BiT9ofXrOAcMPFWFuYoE3HPM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:15:42 -0000

----==_mimepart_5d34b9db66eaf_13493f8347acd960115166
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

e264396d527b2369250330fafe996a58f3f8a3ae  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/2675/files/d510f2bfbbcc8e06a2906bcd0a706c48b60cc253..e264396d527b2369250330fafe996a58f3f8a3ae

----==_mimepart_5d34b9db66eaf_13493f8347acd960115166
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/e264396d527b2369250330fafe996a58f3f8a3ae">e264396</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/2675/files/d510f2bfbbcc8e06a2906bcd0a706c48b60cc253..e264396d527b2369250330fafe996a58f3f8a3ae?email_source=notifications&amp;email_token=AFTOJK4PIGNWCKBEZYNCDC3QASYVXA5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNZQGUYDQMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLHEA5VAI5LBDEKRDQASYVXANCNFSM4HLNTECA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6DIA3KASVVAWVLWDTQASYVXA5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNZQGUYDQMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2675/files/d510f2bfbbcc8e06a2906bcd0a706c48b60cc253..e264396d527b2369250330fafe996a58f3f8a3ae?email_source=notifications\u0026email_token=AFTOJK4PIGNWCKBEZYNCDC3QASYVXA5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNZQGUYDQMY",
"url": "https://github.com/quicwg/base-drafts/pull/2675/files/d510f2bfbbcc8e06a2906bcd0a706c48b60cc253..e264396d527b2369250330fafe996a58f3f8a3ae?email_source=notifications\u0026email_token=AFTOJK4PIGNWCKBEZYNCDC3QASYVXA5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI3TMOBSGE4TKM2QOVZWQIZTHAZTSNZQGUYDQMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34b9db66eaf_13493f8347acd960115166--


From nobody Sun Jul 21 12:17:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2267A12012C for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:17:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 L6MczLN16mpQ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:17: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 DD957120127 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:17:00 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:17:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736620; bh=x7rCroPSM3h1FhJt7h/OBZOflLwoNs+m2+G1UmoX18U=; h=Date:From:To:Subject:From; b=WxD/FFTJGHfK2KyOQkzr5EvkSQXNDoa27iR4sydqoI74w521fCo/evYcRFf+ZDnSe ZJSAaw2B5StgkcYKR/zLqLMXtaKAY5sVBgwFFeG54ZKDKgnbPJbXDxt5Wyulcy6HXv JaDgGfGg83izeZLwl+16dYO1wF4G24d1rcgleg+w=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0db43e-8889d1@github.com>
Subject: [quicwg/base-drafts] 8889d1: Script updating gh-pages from e264396d. [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/QqrvrIsSdBrH2RvlZnLeyQvhFck>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:17:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8889d1996ebc96cadbaeb7d53dbe05611a5d2c74
      https://github.com/quicwg/base-drafts/commit/8889d1996ebc96cadbaeb7d53dbe05611a5d2c74
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-under-utilizing/draft-ietf-quic-recovery.html
    M ianswett-under-utilizing/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e264396d. [ci skip]



From nobody Sun Jul 21 12:17:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B50041200A3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:17:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eXKios7rH91i for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:17: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 54DD3120127 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:17:08 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:17:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736627; bh=Z+7dv7fwY2r9At1xi9FR6dzu3ROUEMjObzUHzrjD0tY=; h=Date:From:To:Subject:From; b=JfdspFR+79ukWJSAWqPVVp1xh+KjtTzVVG9xuBGxfolJpUMIRtSBMVU+nx6aH0s21 PZGEY11AOGCJ5YhpPzqKFil8N6mirShM6BIXN2GxL+GQ8Vtxbo7bMuARtqyxlRxOAF ZkJSETeBECjWinOVYx4zd6d7zLzEE2XwxUIJC6Tc=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/more2685/000000-e58ced@github.com>
Subject: [quicwg/base-drafts] e58ced: Fix language around CC on 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/PIbVE9Py_UEVdlzQ1rhKiIqMacQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:17:11 -0000

  Branch: refs/heads/more2685
  Home:   https://github.com/quicwg/base-drafts
  Commit: e58ced75abd82ea603981ba95cf760986e033d95
      https://github.com/quicwg/base-drafts/commit/e58ced75abd82ea603981ba95cf760986e033d95
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix language around CC on migration



From nobody Sun Jul 21 12:18:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3F04A120127 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:18:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id A16-M4fJ2HnN for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:18: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 D6FA2120110 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:18:15 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:18:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736694; bh=cKny1mE/zuBiHq0gUQvMTBKgczwemOeIW7Us/fUoEnQ=; h=Date:From:To:Subject:From; b=Z8JNfdIPJKx0KJlWfpizyKevYsDl9NKfKjc6HhDKyj73L+4V+TkB5KX1rUH4QaXx6 pJGu2ik9ULzfpaeWDS3vdVoXfPisMdprfaJXy2ZtO/hCwxRKIwrcFMAo4x7e2Ig2wc cst2sNsdOSmi4EfAKj0ImQzMcUV+cyhTQ7GdcqdM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8889d1-91283f@github.com>
Subject: [quicwg/base-drafts] 91283f: Script updating gh-pages from e58ced75. [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/B92W_ddHi1HflDQVksNJo56Eul4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:18:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 91283f9b6f14698b3de7fc96913d4b9d28fb7247
      https://github.com/quicwg/base-drafts/commit/91283f9b6f14698b3de7fc96913d4b9d28fb7247
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M index.html
    A more2685/draft-ietf-quic-http.html
    A more2685/draft-ietf-quic-http.txt
    A more2685/draft-ietf-quic-invariants.html
    A more2685/draft-ietf-quic-invariants.txt
    A more2685/draft-ietf-quic-qpack.html
    A more2685/draft-ietf-quic-qpack.txt
    A more2685/draft-ietf-quic-recovery.html
    A more2685/draft-ietf-quic-recovery.txt
    A more2685/draft-ietf-quic-tls.html
    A more2685/draft-ietf-quic-tls.txt
    A more2685/draft-ietf-quic-transport.html
    A more2685/draft-ietf-quic-transport.txt
    A more2685/index.html

  Log Message:
  -----------
  Script updating gh-pages from e58ced75. [ci skip]



From nobody Sun Jul 21 12:19:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 96F21120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:19:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5XHqfJyNS4ER for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:19:28 -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 BD5F31200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:19:27 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:19:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563736766; bh=7sifNcntthtOu2+mzn29Sh9taALhw6fyjqCQXI0p0Z8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=oZBGkiTyGRfz2Wnzy7r1QjR5q43e+47x3ruAQBYh5RE/ClSWI0TQogKN8sNJmCj5Q YMnOYhqTl/rLVpyI9+8Ue3v6RhZB6OGsEs3X0XEBmKSpjONvAYnprd1p6Uvg5Hg8DC qgaEImhjLwJURh9E32VkLG35mfbna4/lzIvmG4eU=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK62ARUKRVNDRUKMEJN3IHWT5EVBNHHBYEARTM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2918@github.com>
Subject: [quicwg/base-drafts] Fix language around CC on migration (#2918)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34babec60d0_8cf3f94798cd960168453"; 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/W-2xEdF1n_k_a8UjnRcaP0CEegY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:19:30 -0000

----==_mimepart_5d34babec60d0_8cf3f94798cd960168453
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Cleans up some text in the transport doc around reseting (or not) CC and RTT values on migration.

Closes #2685 

 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2918

-- Commit Summary --

  * Fix language around CC on migration

-- File Changes --

    M draft-ietf-quic-transport.md (20)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2918.patch
https://github.com/quicwg/base-drafts/pull/2918.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/2918

----==_mimepart_5d34babec60d0_8cf3f94798cd960168453
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Cleans up some text in the transport doc around reseting (or not) CC and RTT values on migration.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2685.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="442599805" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2685" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2685/hovercard" href="https://github.com/quicwg/base-drafts/issues/2685">#2685</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/2918'>https://github.com/quicwg/base-drafts/pull/2918</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix language around CC on migration</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2918/files#diff-0">draft-ietf-quic-transport.md</a>
    (20)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2918.patch'>https://github.com/quicwg/base-drafts/pull/2918.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2918.diff'>https://github.com/quicwg/base-drafts/pull/2918.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/2918?email_source=notifications&amp;email_token=AFTOJK7YX36FF3GB2HJDI33QASZD5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQCGNQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYXZXNA37WO2HGZMGDQASZD5ANCNFSM4IFTHRZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJOYRHHPFYFZBHBT3QASZD5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQCGNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2918?email_source=notifications\u0026email_token=AFTOJK7YX36FF3GB2HJDI33QASZD5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQCGNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2918?email_source=notifications\u0026email_token=AFTOJK7YX36FF3GB2HJDI33QASZD5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQCGNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34babec60d0_8cf3f94798cd960168453--


From nobody Sun Jul 21 12:24:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AB602120127 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:24:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QE5ecgjQmcAO for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:24:10 -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 2D41E1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:24:10 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:24:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737049; bh=Zyu4QBXIbL9yvHlRUhKYID8R3DwTbO3BWkH1AGVd1+Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zI3fQLSNUYjpSlNG61Yr8UpnUAABsFHrWJUh8SQIMRvRKKx3VS60YFFERjcuAHnCf ETR/iu/THVpFRr82+yBBYgTy0qSqOFkO+CgEb2tdrMQYOyeR9k9bThLwphD2gESbad f3H51LWW2a6gtr4WmMjj4pp/CEBL+r06twsrgu84=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYK2VDI7JWMGSFWEON3IHXFTEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264550842@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bbd93fa54_8d83f91a72cd9683356ab"; 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/ofOBg96JtG9rqSvO4s1OyHD0vDQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:24:12 -0000

----==_mimepart_5d34bbd93fa54_8d83f91a72cd9683356ab
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



>  ack-eliciting packets are not acknowledged within the expected period of
 time or the handshake has not been completed.  A PTO enables a connection to
-recover from loss of tail packets or acks. The PTO algorithm used in QUIC
+recover from loss of tail packets or ACKs. The PTO algorithm used in QUIC

```suggestion
recover from loss of tail packets or acknowledgements. The PTO algorithm used in 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/pull/2915#pullrequestreview-264550842
----==_mimepart_5d34bbd93fa54_8d83f91a72cd9683356ab
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<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/2915#discussi=
on_r305632221">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  ack-eliciting packets are not acknowledge=
d within the expected period of=0D
 time or the handshake has not been completed.  A PTO enables a connectio=
n to=0D
-recover from loss of tail packets or acks. The PTO algorithm used in QUI=
C=0D
+recover from loss of tail packets or ACKs. The PTO algorithm used in QUI=
C=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-recover from loss of tail packets or ACKs. Th=
e PTO algorithm used in QUIC=0D
+recover from loss of tail packets or acknowledgements. The PTO algorithm=
 used in QUIC=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/2915?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK6SMWO25J2L3AF24HTQASZVTA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLTOQ#pullrequestreview-264550842=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK333ZKTMOYCJA3KZULQASZVTANCNFSM4IFSKZXQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK64U7YW=
W7ATWPCG27DQASZVTA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLTOQ.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/2915?email_source=3D=
notifications\u0026email_token=3DAFTOJK6SMWO25J2L3AF24HTQASZVTA5CNFSM4IFS=
KZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CLTOQ#pullrequestreview-264550842",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK6SMWO25J2L3AF24HTQASZVTA5CNFSM4IFSKZ=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
LTOQ#pullrequestreview-264550842",=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_5d34bbd93fa54_8d83f91a72cd9683356ab--


From nobody Sun Jul 21 12:24:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A4AE0120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:24:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i5FJ5bKk4R5S for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:24:44 -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 9CA671200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:24:44 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:24:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737083; bh=4UC7PH7+h/iG0kvsRjAahPsvPPWMYePUzlzF2Rwg2J8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F8L5MnKY1dDXZ1YrkQC0vUFaCKNSOGB4Z+TlGfST9a3KZWKDekgO5CfGdVf1rqgj0 4AGFEx4tAwSGaxTEJLvxUyO7SMzQ8EvLoLoVqUeti7qUemNUnwF4ZgOB+wZNpa2UGC VUOWAzSnP8gVvDl6OUI4T/P47szBXrov+9Ec2jpE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ2GJIPTHTCXVQCMMV3IHXHXEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264550865@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bbfbb1ac4_1d613fed79ccd96c515725"; 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/SNOnc15pjeYA43zGKdA97MIkexo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:24:47 -0000

----==_mimepart_5d34bbfbb1ac4_1d613fed79ccd96c515725
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



> @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an

```suggestion
to two full-sized datagrams containing ack-eliciting packets, to avoid an
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2915#pullrequestreview-264550865
----==_mimepart_5d34bbfbb1ac4_1d613fed79ccd96c515725
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<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/2915#discussi=
on_r305632249">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -598,8 +598,8 @@ discarded.=0D
 =0D
 When a PTO timer expires, a sender MUST send at least one ack-eliciting =
packet=0D
 as a probe, unless there is no data available to send.  An endpoint MAY =
send up=0D
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expi=
ration=0D
-due to a single packet loss.=0D
+to two full sized datagrams containing ack-eliciting packets, to avoid a=
n=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-to two full sized datagrams containing ack-el=
iciting packets, to avoid an=0D
+to two full-sized datagrams containing ack-eliciting packets, to avoid a=
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/2915?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4REOQ3TLGFP5PLHBLQASZXXA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLTUI#pullrequestreview-264550865=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK22L27UCRU4AXJFN5DQASZXXANCNFSM4IFSKZXQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK2MXMMJ=
QGAH3TPDL7TQASZXXA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLTUI.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/2915?email_source=3D=
notifications\u0026email_token=3DAFTOJK4REOQ3TLGFP5PLHBLQASZXXA5CNFSM4IFS=
KZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CLTUI#pullrequestreview-264550865",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4REOQ3TLGFP5PLHBLQASZXXA5CNFSM4IFSKZ=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
LTUI#pullrequestreview-264550865",=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_5d34bbfbb1ac4_1d613fed79ccd96c515725--


From nobody Sun Jul 21 12:25:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 88A45120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:25:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.354
X-Spam-Level: 
X-Spam-Status: No, score=-6.354 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AL3XjyqXEsNC for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:25:32 -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 3725B1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:25: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 6B991961969 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:25:31 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:25:31 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY7U3HM7UHLKCN4PXV3IHXKXEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264550901@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bc2b5ce1f_646d3f8e580cd96c35303"; 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/ELqRyY9WqjOTkgLf6lzVz-1bPng>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:25:34 -0000

----==_mimepart_5d34bc2b5ce1f_646d3f8e580cd96c35303
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar approved this pull request.

nits, but 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/2915#pullrequestreview-264550901
----==_mimepart_5d34bc2b5ce1f_646d3f8e580cd96c35303
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@janaiyengar</b> approved this pull request.</p>

<p>nits, but 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/2915?email_source=notifications&amp;email_token=AFTOJKZTWLPWA27GYRNZ7FLQASZ2XA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLT5I#pullrequestreview-264550901">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6OLGZYACRBGR3DHD3QASZ2XANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK36UGG25KJIOAZVGF3QASZ2XA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLT5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJKZTWLPWA27GYRNZ7FLQASZ2XA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLT5I#pullrequestreview-264550901",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJKZTWLPWA27GYRNZ7FLQASZ2XA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLT5I#pullrequestreview-264550901",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34bc2b5ce1f_646d3f8e580cd96c35303--


From nobody Sun Jul 21 12:26:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4BCAD1200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:26:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 bi3CCHr_XdqW for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:26: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 DDEB21200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:26:48 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:26:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737208; bh=SoEWzXrcUDxGUgY5JQxIosiaBEO1HF8Bm4d0JfCungY=; h=Date:From:To:Subject:From; b=La+FECJKP2j9TqLVlZeRIeQo5RvzqzmssFMS8wO43ct6LK89YoCxHFhGwwuw+YLsg UrO9lmgoFdX0kA7ApxFWEO8t7w0npmuYlXXy1ZX3oUDVh/YMch3bJJ+ObZnizLqvY7 Rd5jfULz152mbFPwosU6+MGP4iw4++GY3UHJ5YeM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-datagrams/e42227-86bd39@github.com>
Subject: [quicwg/base-drafts] 86bd39: 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/LsWjql-zPGmnd-_e1JlHBvS6Xyc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:26:50 -0000

  Branch: refs/heads/ianswett-pto-datagrams
  Home:   https://github.com/quicwg/base-drafts
  Commit: 86bd396336f01afeae18bc302614d25961d29ed0
      https://github.com/quicwg/base-drafts/commit/86bd396336f01afeae18bc302614d25961d29ed0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 Sun Jul 21 12:26:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DB824120120 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:26:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 07nTNxAnY4fj for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:26:56 -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 A7BCA1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:26:56 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:26:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737216; bh=Z44u1wNrj//5ojw7qIFxHTVptW2I0B5PLoQKTIV+oBY=; h=Date:From:To:Subject:From; b=l0jMMlP83wl/0lTY786MgmOqk3Or7D8hLJhX7Sk7zHyr3e70hoNrJSyzY6UwNL4zc R/w0PFDGNkt61gDOAcYwvZUUzcpklC2gREHUNjt+X9s3ktAiqGODPsSs9tP/+o6m3S bM37GCPnxkCzLkRVD8+YQuj/T/wyHqOhUvh0PysQ=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-datagrams/86bd39-cd3951@github.com>
Subject: [quicwg/base-drafts] cd3951: 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/h0QoEYUKc7z4jEwUVjZxJIVFmqk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:26:58 -0000

  Branch: refs/heads/ianswett-pto-datagrams
  Home:   https://github.com/quicwg/base-drafts
  Commit: cd39516a3929f7b5aaedb98787e579b605b70669
      https://github.com/quicwg/base-drafts/commit/cd39516a3929f7b5aaedb98787e579b605b70669
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 Sun Jul 21 12:27:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F41DB1200A3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:26:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 4NCSrGdPsgCk for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:26: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 B6EAA1200B8 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:26:56 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:26:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737216; bh=97qyP00TBYY9QOTbgB8h2+JPdQLfDqka9+EB9u1aPDk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sfXqsXJ6a2oJtBHKY/NgC4FbsmYqxddGamZIA++x8AFMHt4f3du4OXJ+EY+/wtEJi 4DWN3EHC7UJS0E6meUUZRNZIQw62NV+JkdCIeIZhQNiHJdbhWUaBsBgcYIUm/haGuC r6sqV7QRhIPaigM6B71IX2OcvuJu8MPIiyLcq5CA=
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/2915/push/3839720251@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bc80d52b_10443fa5956cd96c214485"; 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/08k96wDt1q3nYriIYTbOH5Rjync>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:26:59 -0000

----==_mimepart_5d34bc80d52b_10443fa5956cd96c214485
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

86bd396336f01afeae18bc302614d25961d29ed0  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/2915/files/e4222702990931ae6002bff60fdf5f2c4d835cf8..86bd396336f01afeae18bc302614d25961d29ed0

----==_mimepart_5d34bc80d52b_10443fa5956cd96c214485
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/86bd396336f01afeae18bc302614d25961d29ed0">86bd396</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/2915/files/e4222702990931ae6002bff60fdf5f2c4d835cf8..86bd396336f01afeae18bc302614d25961d29ed0?email_source=notifications&amp;email_token=AFTOJK75MPVPHAXNVXTAB7TQAS2ABA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGAZDKMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3RIDXY6UXXYXMP7EDQAS2ABANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4EQHKGZMSQQD7TWE3QAS2ABA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGAZDKMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915/files/e4222702990931ae6002bff60fdf5f2c4d835cf8..86bd396336f01afeae18bc302614d25961d29ed0?email_source=notifications\u0026email_token=AFTOJK75MPVPHAXNVXTAB7TQAS2ABA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGAZDKMI",
"url": "https://github.com/quicwg/base-drafts/pull/2915/files/e4222702990931ae6002bff60fdf5f2c4d835cf8..86bd396336f01afeae18bc302614d25961d29ed0?email_source=notifications\u0026email_token=AFTOJK75MPVPHAXNVXTAB7TQAS2ABA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGAZDKMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34bc80d52b_10443fa5956cd96c214485--


From nobody Sun Jul 21 12:27:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 64A531200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:27:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id N5E-1V8GSbEi for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:27:04 -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 EAAE1120110 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:27:03 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:27:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737223; bh=h3p/Z51jD7dNMFCnPKhipUCSDCdyZzc4nsKtWqOFxwQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IXx/RFogS72IBQ9LymoVvmG2z3rG+TeO/SXwNVg27TSHhE+pe+tf1tqzvaub0pvx9 JIdNjayqkqZ3EHQ1qT7S1olrtFafZcKj/nd7oOi20Y1ajBENDSjG4dh/kdwirJ7kOi u1vs63fBensuEEVtIrmZw9k2HIt9zKStjnnzSVBY=
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/2915/push/3839720443@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bc875e9a4_726c3fa1c84cd96c6986d5"; 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/H0hqQzPRZdqe8g3JOoAZeAKv-WE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:27:05 -0000

----==_mimepart_5d34bc875e9a4_726c3fa1c84cd96c6986d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

cd39516a3929f7b5aaedb98787e579b605b70669  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/2915/files/86bd396336f01afeae18bc302614d25961d29ed0..cd39516a3929f7b5aaedb98787e579b605b70669

----==_mimepart_5d34bc875e9a4_726c3fa1c84cd96c6986d5
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/cd39516a3929f7b5aaedb98787e579b605b70669">cd39516</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/2915/files/86bd396336f01afeae18bc302614d25961d29ed0..cd39516a3929f7b5aaedb98787e579b605b70669?email_source=notifications&amp;email_token=AFTOJK33EDJCNSZ36KWHFU3QAS2APA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGA2DIMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK37GYZVLOC7JQ6PWMLQAS2APANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK62ZANJWZN5V5QXMKLQAS2APA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGA2DIMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915/files/86bd396336f01afeae18bc302614d25961d29ed0..cd39516a3929f7b5aaedb98787e579b605b70669?email_source=notifications\u0026email_token=AFTOJK33EDJCNSZ36KWHFU3QAS2APA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGA2DIMY",
"url": "https://github.com/quicwg/base-drafts/pull/2915/files/86bd396336f01afeae18bc302614d25961d29ed0..cd39516a3929f7b5aaedb98787e579b605b70669?email_source=notifications\u0026email_token=AFTOJK33EDJCNSZ36KWHFU3QAS2APA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGA2DIMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34bc875e9a4_726c3fa1c84cd96c6986d5--


From nobody Sun Jul 21 12:28:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 562C11200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:28:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EG25qc46jLFG for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:28:18 -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 320371200FD for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:28:18 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:28:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737297; bh=YghpUfLCA8omPQH69DY7svLowk6x5AX3bvs5vwlJfbg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DnYnpSLby6qnilPuhUO8J2CZ0eIt5FZi1mJwmbuTtnLYe9G/lZhy3arCWOysrMyOQ 1Hk5K8wrohn5oIFhiOFiRI9RBjh/cT4PhQPEIOXxI/3w+VtPd4px6Akh/IWrNrkCgz IMEM+UvknpdPJrd5gl1X+DvNnSUYUy0MQEQlZv1I=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TIA2ZROPGZHPFPHN3IHXVDEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264550985@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bcd176527_4e663fa0c6acd9644422a7"; 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/MXtTmdUcHKB1P7XFrkcZx-Q_YgU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:28:21 -0000

----==_mimepart_5d34bcd176527_4e663fa0c6acd9644422a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 

There's no limit of 2 packets in a datagram here and I don't think there's one elsewhere?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2915#discussion_r305632363
----==_mimepart_5d34bcd176527_4e663fa0c6acd9644422a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2915#discussion_r305632363">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 
</pre>
<p>There's no limit of 2 packets in a datagram here and I don't think there's one elsewhere?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications&amp;email_token=AFTOJKYH7LT2MCU5XVYBRFTQAS2FDA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUSI#discussion_r305632363">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7IOLHPZ3NRZXVA65DQAS2FDANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2D6LVRPRAIRRHWNHTQAS2FDA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUSI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJKYH7LT2MCU5XVYBRFTQAS2FDA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUSI#discussion_r305632363",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJKYH7LT2MCU5XVYBRFTQAS2FDA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUSI#discussion_r305632363",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34bcd176527_4e663fa0c6acd9644422a7--


From nobody Sun Jul 21 12:28:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F3FB41200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:28:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id V7l2_SJP2LXf for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:28:48 -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 9DF341200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:28:48 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:28:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737327; bh=GzCQDegJVlONpxKOs3r+1eleVmZHkvOwm7dXtqcW6Ko=; h=Date:From:To:Subject:From; b=ezK2wM7SWiJeNzax58w7xDrQHIZAuDN2dsuUPlWBHiUD3+TKVZMupMyXjOkXP7n4J 1BzzI8LxGRrTV3MOXbiwlkWcXRKXFhCYFXdXWLbu3CDUzahc3FYrpyr+fzLz0BX7Ss ltdC2D/plt9H9v2NaRw52msYoRgi3Y1QDWy/1QrI=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-datagrams/cd3951-a1b9be@github.com>
Subject: [quicwg/base-drafts] a1b9be: Fix a long 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/yGpd5iXPG6G4IEv2S5tJPLEowu0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:28:50 -0000

  Branch: refs/heads/ianswett-pto-datagrams
  Home:   https://github.com/quicwg/base-drafts
  Commit: a1b9bed8a9154f4f251a78d61dddfde676893fa3
      https://github.com/quicwg/base-drafts/commit/a1b9bed8a9154f4f251a78d61dddfde676893fa3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix a long line



From nobody Sun Jul 21 12:28:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 60ABD1200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:28:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i7LP-QeVo-b8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:28: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 C94BB1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:28:55 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:28:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737335; bh=EEb6QoG6bqdRhv48CeFVThcea9L441DOhpnAoi8BLnI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y7HvCIbmienndu9sEz6Vt20+Mh5p6cPYjwgGjOdF3FTqAZFljusYyiCX/i91SkzuT pJFcYitALSR5Llo1/bEhdBMyZFYxsuoLt+SLnOVDe7oO7OiLkgMBj8FWa8/iB5Y+8f E6rvRpEb68O1T0zpESz9uaR+4J76fhye0imtafsM=
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/2915/push/3839722770@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bcf711fc8_44a03feabeccd95c5293b1"; 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/RdAV4KttVrp4_jmbLPhL0YMzGwU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:28:57 -0000

----==_mimepart_5d34bcf711fc8_44a03feabeccd95c5293b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

a1b9bed8a9154f4f251a78d61dddfde676893fa3  Fix a long line


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2915/files/cd39516a3929f7b5aaedb98787e579b605b70669..a1b9bed8a9154f4f251a78d61dddfde676893fa3

----==_mimepart_5d34bcf711fc8_44a03feabeccd95c5293b1
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/a1b9bed8a9154f4f251a78d61dddfde676893fa3">a1b9bed</a>  Fix a long 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/2915/files/cd39516a3929f7b5aaedb98787e579b605b70669..a1b9bed8a9154f4f251a78d61dddfde676893fa3?email_source=notifications&amp;email_token=AFTOJKYZZDT3STXO4ZOSYBLQAS2HPA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGI3TOMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJMA7KL3YTMSAUQBLQAS2HPANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5IQOIMCLS7OY7SATDQAS2HPA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGI3TOMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915/files/cd39516a3929f7b5aaedb98787e579b605b70669..a1b9bed8a9154f4f251a78d61dddfde676893fa3?email_source=notifications\u0026email_token=AFTOJKYZZDT3STXO4ZOSYBLQAS2HPA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGI3TOMA",
"url": "https://github.com/quicwg/base-drafts/pull/2915/files/cd39516a3929f7b5aaedb98787e579b605b70669..a1b9bed8a9154f4f251a78d61dddfde676893fa3?email_source=notifications\u0026email_token=AFTOJKYZZDT3STXO4ZOSYBLQAS2HPA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTG42DSMKQOVZWQIZTHAZTSNZSGI3TOMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34bcf711fc8_44a03feabeccd95c5293b1--


From nobody Sun Jul 21 12:29:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 46A34120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:29:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5sNdNlJpol59 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:29: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 0482E1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:29:03 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:29:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737342; bh=0pdJwXyiqu/9edFnvl282mXMgDckngt+CdWFB+Kzic0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WUPcl/QuGwr1Rfpx5bsINamT9m+KuKhBR7Vfreb3cRB/WQ0bdJJekC1cDIOMWZcGh AiHqM7EnmHA6/UuyS5fP4jsi9LFoY2Lpx1BHNmcXwJFlEEAHJ8FEyWK7SxgMluqnCm LJNB8bYLyLcGsEH4aPgihQIM1CSwj/q92GgHDPjw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKU23YPJHFBTRIZGN3IHXX5EVBNHHBYEARTM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2918/review/264551012@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2918@github.com>
References: <quicwg/base-drafts/pull/2918@github.com>
Subject: Re: [quicwg/base-drafts] Fix language around CC on migration (#2918)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bcfedf86_8a23faece0cd96c1046aa"; 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/OOJHMY1XNhSRgUOcZ1urSrJ7T70>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:29:04 -0000

----==_mimepart_5d34bcfedf86_8a23faece0cd96c1046aa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.

The associated issue is marked design, but this looks 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/2918#pullrequestreview-264551012
----==_mimepart_5d34bcfedf86_8a23faece0cd96c1046aa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> approved this pull request.</p>

<p>The associated issue is marked design, but this looks 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/2918?email_source=notifications&amp;email_token=AFTOJK63LKBHHFRVFFMYS5TQAS2H5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUZA#pullrequestreview-264551012">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYZVYSRW7TGAI3MWFDQAS2H5ANCNFSM4IFTHRZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XWQZKMS3JF637TTDQAS2H5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2918?email_source=notifications\u0026email_token=AFTOJK63LKBHHFRVFFMYS5TQAS2H5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUZA#pullrequestreview-264551012",
"url": "https://github.com/quicwg/base-drafts/pull/2918?email_source=notifications\u0026email_token=AFTOJK63LKBHHFRVFFMYS5TQAS2H5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLUZA#pullrequestreview-264551012",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34bcfedf86_8a23faece0cd96c1046aa--


From nobody Sun Jul 21 12:29:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E2093120120 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:29:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GuB8ZwSREWSw for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:29:56 -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 744501200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:29:56 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:29:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737395; bh=ZphRg9P32VSAGCD3UiIaoxEdRNBSKFLtKPNYHIntVVw=; h=Date:From:To:Subject:From; b=pyYYH8J/5nfMjPZlKHab6J3unQSwo4FqQh5H9+rwZtJQq5MTwXhoH9Ygke9BxUjqP BAJyST55DYxky9FkBMz/mkL12wlNXAjdwbfRn8BSCn2A3Efbe7fbWSxQUSLggfDa7w YLTFlaVi9y58/XoXEzzm1aV6Rj5mxSoGA5iFEri8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/91283f-fd7965@github.com>
Subject: [quicwg/base-drafts] fd7965: Script updating gh-pages from a1b9bed8. [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/FCh6hQymjo9DqpRmfq8Zas8e7aE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:29:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fd7965df6d99b98035b7984058ba2e9166e67088
      https://github.com/quicwg/base-drafts/commit/fd7965df6d99b98035b7984058ba2e9166e67088
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-pto-datagrams/draft-ietf-quic-recovery.html
    M ianswett-pto-datagrams/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a1b9bed8. [ci skip]



From nobody Sun Jul 21 12:30:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3095C1200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:30:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1bBVjUiGgyFM for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:30:38 -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 DD10B1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:30:38 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:30:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737438; bh=KGRE8naa4dPXllKuI2yIyyxpRqo46HPhhQM8PDlshns=; h=Date:From:To:Subject:From; b=kPPTBQmZ5acaygeZzFNV8TF1m/SXd4WkZnDCQqQmnuj406i4T7iJVzHQNOjqupncm NT4Ar6gnpRY+XsokYIeInDPaE0tbVK3g6hvPA9F/vfeic4xkk5qNPoPyqG/Czgf+hN Bmq6Pbq22r6wZJWxWu77XNUtEib49x5ggNqJH4Gg=
From: Lars Eggert <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/e1000f-9025e3@github.com>
Subject: [quicwg/wg-materials] 9025e3: Add files via upload
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3O8wOM1MpX9OpEzlYxLzqaTYobY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:30:40 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: 9025e36f9557c64106b1d5dca3fbb16a31a6082a
      https://github.com/quicwg/wg-materials/commit/9025e36f9557c64106b1d5dca3fbb16a31a6082a
  Author: Lars Eggert <200328+larseggert@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    A ietf105/ietf105-hackathon-report-quic.pdf

  Log Message:
  -----------
  Add files via upload



From nobody Sun Jul 21 12:30:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 39D011200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:30:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Zs4Hkj9hlSdx for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:30:53 -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 C96351200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:30:53 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:30:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737452; bh=MoRJs7Vfkhm3de/fdScyj7hl7IKNZZ+2Zen3he5pAFE=; h=Date:From:To:Subject:From; b=wXXpStSkLd0KNUA/ihmtmAp57AqgDTIYLy1wBBTkYaGNlO3H+X6ohrR607SeSfwD9 yEGCVgJ1qSXSH55oQWtHEjQ0QAtEn08poWIQGUFHW/TpwLrEf8XZiobe5ILzdgFBoX 99MTkkiZmz+345e/I8Fa7oThPVHb+RwMbclu0Ejo=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/02c8c8-d3c66d@github.com>
Subject: [quicwg/base-drafts] d3c66d: Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iMJyDHpU6OAkqpP4PFSY1myqF-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: Sun, 21 Jul 2019 19:30:55 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d3c66d26508da8ad76829342bd75c7e844cf02ca
      https://github.com/quicwg/base-drafts/commit/d3c66d26508da8ad76829342bd75c7e844cf02ca
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Up to two full-sized datagrams, not packets (#2915)

* Up to two full-sized datagrams, not packets

Now that the PTO retransmits Initial and Handshake data, it's possible and likely desirable to bundle multiple QUIC packets in a single datagram.  This change makes it clear that is allowed.

* Update draft-ietf-quic-recovery.md

Co-Authored-By: MikkelFJ <mikkelfj@gmail.com>

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>

* Fix a long line



From nobody Sun Jul 21 12:31:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0497D1200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:31:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p8_E6KW9w1sh for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:31: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 32A1F1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:31:03 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:31:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737462; bh=eKQ/0k3tw7pG4MGF6gne1dIOgu5zSfA0EipqJ+iZO8g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OW3QMdisvJFiElMlk5jtvhm9TLzFiMBML4XF3EjCwkafPSvH9er6aXxF0Wo6G4pkl qe2T+2MrYf3iM/4EnK2nqaxwL5XHDJT2BgnNi7bFiqqKTG/G7eV0leZxq0J4NYHLzU NIwMEK8WY3cVtjosDxcqD89jIPiiVQPcXb5uNEOA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYEDDQYLY4T4SOIDF53IHX7NEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/issue_event/2498207460@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bd764a23d_13223f8347acd960512891"; 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/S-mOctBdHjIdBvqeNNmq1A5tcNE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:31:05 -0000

----==_mimepart_5d34bd764a23d_13223f8347acd960512891
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2915 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/2915#event-2498207460
----==_mimepart_5d34bd764a23d_13223f8347acd960512891
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470783430" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2915" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2915/hovercard" href="https://github.com/quicwg/base-drafts/pull/2915">#2915</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/2915?email_source=notifications&amp;email_token=AFTOJK4QPWKHXSD64KDYTPTQAS2PNA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTZ5ZA#event-2498207460">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2QWISKVYEUUWDCOMLQAS2PNANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYPUU5ELAE7XO5TWJDQAS2PNA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTZ5ZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK4QPWKHXSD64KDYTPTQAS2PNA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTZ5ZA#event-2498207460",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK4QPWKHXSD64KDYTPTQAS2PNA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTTZ5ZA#event-2498207460",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34bd764a23d_13223f8347acd960512891--


From nobody Sun Jul 21 12:32:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 06CAE120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:32:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 tQpPTv1F2ZOF for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:32: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 9F7781200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:32:05 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:32:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737525; bh=ivKhb+CQwqO5ByUi99fmlYRGqnK0LZUF+I89Gu5pPnY=; h=Date:From:To:Subject:From; b=GgdqaD64GlmZDkWQHnJSrlEXiW/V3ZHloC0A4u+OOLktDlVcXCY5gvnKVOheJ2+ms bBibrMd1W4puLkD2to2VkI8cA/mGAQUnzA3/OXljBP2kTHwvB5ODWxVsMBQzQc1kOC RyBV/d0wiz0RhZ7P+Nz4WdCsYEhgAIZhnRgmaBgA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fd7965-a49de5@github.com>
Subject: [quicwg/base-drafts] a49de5: Script updating gh-pages from d3c66d26. [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/jZCq9apfIi54WQVstIdx45jUKG4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:32:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a49de5dd3f588f06376966c39ca4edb373c69ad0
      https://github.com/quicwg/base-drafts/commit/a49de5dd3f588f06376966c39ca4edb373c69ad0
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d3c66d26. [ci skip]



From nobody Sun Jul 21 12:34:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E06481200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:34:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FUPIyqGdhiNZ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:34: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 1AD401200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:34:01 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:34:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737640; bh=ryQMSogl54MzGeVwWcv9MDJ+/OdxWhidA+NX8PbtOg4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xmJlEJs8EP0jrxSEDzQ2//Cnqxt76eVydqK/kGFvsfRxb+c86HdW1X5I+Ou+Xy0EB jTzQqnv4GCZoH88OFolBRoju1c0K/CHKLrJ6wFKLdLMR7GDxqyzkrkamfaNyQmVshV r4xuorXXcouTOAkeZlOs3EgNHtt+uYvN4gq6ML1s=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHNCSUNHUECKCYQDN3IHYKREVBNHHBXQFRGE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2881/review/264551207@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2881@github.com>
References: <quicwg/base-drafts/pull/2881@github.com>
Subject: Re: [quicwg/base-drafts] Explain asymmetric confirmation condition (#2881)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34be2832e33_9fc3ff392acd968337365"; 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/n4gNj6fsXgyGcTD_0tuaw-HFMaY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:34:03 -0000

----==_mimepart_5d34be2832e33_9fc3ff392acd968337365
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/2881#pullrequestreview-264551207
----==_mimepart_5d34be2832e33_9fc3ff392acd968337365
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2881?email_source=notifications&amp;email_token=AFTOJK5S7D74HOLYYC7LKZTQAS22RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWJY#pullrequestreview-264551207">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2JT6SUJ33R4GLQELQAS22RANCNFSM4H7CMENA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55XNV2IGQHGLYZZNLQAS22RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWJY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK5S7D74HOLYYC7LKZTQAS22RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWJY#pullrequestreview-264551207",
"url": "https://github.com/quicwg/base-drafts/pull/2881?email_source=notifications\u0026email_token=AFTOJK5S7D74HOLYYC7LKZTQAS22RA5CNFSM4H7CMENKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWJY#pullrequestreview-264551207",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34be2832e33_9fc3ff392acd968337365--


From nobody Sun Jul 21 12:34:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A208E1200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:34:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HXkxiuooJjQi for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:34:23 -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 EA5541200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:34:22 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:34:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737662; bh=wcTvG4Ot6JMggnj815lux1ClNyo4wqqoioqIx1R6bgs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kDnDm44EwMs1AtqnjnHr3JPAvAIY2uFkfK9oEYDowcd8zduwJclaY0lvR1uGbn3he OU0/9s2KlN82ZWlqWHHTm0mCm7Wkmup3xFXWrLDPosyxwlc4NTlS7cwXqFHPRfHQDr 7WYW57rL49S+bf2DGMoIg8nbSs3TU4NyLoAW8je0=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRQCF2UHP3JCE2NNF3IHYL5EVBNHHBUUHC6A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2675/review/264551231@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2675@github.com>
References: <quicwg/base-drafts/pull/2675@github.com>
Subject: Re: [quicwg/base-drafts] Define under-utilizing the congestion window (#2675)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34be3e2af1c_6f963fb78d4cd964662257"; 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/_rGq50sYHkIfuF0oIsxrkwAtYhs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:34:25 -0000

----==_mimepart_5d34be3e2af1c_6f963fb78d4cd964662257
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/2675#pullrequestreview-264551231
----==_mimepart_5d34be3e2af1c_6f963fb78d4cd964662257
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2675?email_source=notifications&amp;email_token=AFTOJKYMIREVP2MGOM7ICK3QAS235A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWPY#pullrequestreview-264551231">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7GDR7HIY3IS23FQMDQAS235ANCNFSM4HLNTECA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZCKUJAHFV7OYZDXZLQAS235A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2675?email_source=notifications\u0026email_token=AFTOJKYMIREVP2MGOM7ICK3QAS235A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWPY#pullrequestreview-264551231",
"url": "https://github.com/quicwg/base-drafts/pull/2675?email_source=notifications\u0026email_token=AFTOJKYMIREVP2MGOM7ICK3QAS235A5CNFSM4HLNTECKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLWPY#pullrequestreview-264551231",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34be3e2af1c_6f963fb78d4cd964662257--


From nobody Sun Jul 21 12:36:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F13FE1200CE for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:36:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7riNxw9Laazp for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:36: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 6BD1D1200B8 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:36:44 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:36:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563737803; bh=2CvGq6bsmQGYMhFl8gJ1mTdMvAwYKyGkxtb+qHa5Ts0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=A8Hg3Ebz+dR0v5yA2kpN4q18Ok7fWAq74XdMZukaunqsNxuGAM1MGOQkLb/ysFGy/ Ce3jn1cXQALMmWejzcSIr+tW6LyTk38sximyedMsbxlA0AKjqEPL8tIs4EnRb/pPCh fT6Pjao12tVDfbGTlPuMBMDr2/SeeQxX/tRyY5dk=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ODMBCOAJ6OECXOMV3IHYUXEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264551273@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34becbaa103_38a93fb6cd6cd964396021"; 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/6a7e9fSYqhJw6K6Phuub3lCdGcU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:36:46 -0000

----==_mimepart_5d34becbaa103_38a93fb6cd6cd964396021
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinduke approved this pull request.



> @@ -581,13 +581,13 @@ data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
 data has been received from the client.
 
 Because the server could be blocked until more packets are received, the client
-MUST ensure that the retransmission timer is set if the client does not yet
-have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
-it is possible that the client may not have any crypto data to retransmit.
-However, the client MUST send a new packet, containing only PADDING frames if
-necessary, to allow the server to continue sending data. If Handshake keys
-are available to the client, it MUST send a Handshake packet, and otherwise
-it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+MUST ensure that the retransmission timer is set if the client has not received
+an ACK in a Handshake packet or does not yet have 1-RTT keys.  If the probe

or -> 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/2907#pullrequestreview-264551273
----==_mimepart_5d34becbaa103_38a93fb6cd6cd964396021
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinduke</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2907#discussion_r305632618">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -581,13 +581,13 @@ data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
 data has been received from the client.
 
 Because the server could be blocked until more packets are received, the client
-MUST ensure that the retransmission timer is set if the client does not yet
-have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
-it is possible that the client may not have any crypto data to retransmit.
-However, the client MUST send a new packet, containing only PADDING frames if
-necessary, to allow the server to continue sending data. If Handshake keys
-are available to the client, it MUST send a Handshake packet, and otherwise
-it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+MUST ensure that the retransmission timer is set if the client has not received
+an ACK in a Handshake packet or does not yet have 1-RTT keys.  If the probe
</pre>
<p>or -&gt; and</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK4ETNOQI2RPXBWQ3W3QAS3EXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLW2I#pullrequestreview-264551273">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZPNRM6SI5KYYJ7B7LQAS3EXANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2WV536EM77KKJ4ORTQAS3EXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLW2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4ETNOQI2RPXBWQ3W3QAS3EXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLW2I#pullrequestreview-264551273",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4ETNOQI2RPXBWQ3W3QAS3EXA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLW2I#pullrequestreview-264551273",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34becbaa103_38a93fb6cd6cd964396021--


From nobody Sun Jul 21 12:41:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9DE541200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:41:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id scmzANU0sOGS for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:40:59 -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 4519D1200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:40:59 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:40:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738058; bh=6xxP8/gpJcyfcs6U0qYOEx26yvJMu8x5Q1UKTazHHIg=; h=Date:From:To:Subject:From; b=tBFqjSc1s0FwRBLVWo/vA6ShPHW1glXAsfSfzu6O+DH1Hh5u0TNu5dFQ3aiYTNLTC L2tuqNhri/JbOQbwaMW1eTVOJTVOH77aUK7enydeIkXxWBpKCb24ECySk6+R6kM1R2 junncCFJnw+h3XMuwoie4kB3UVhbxMaC7iPNweV0=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-ack-eliciting/407928-114b20@github.com>
Subject: [quicwg/base-drafts] 114b20: Add rationale for why ack-eliciting
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S9VkHcXV_oCUYmhYwQHfNR6nG0A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:41:01 -0000

  Branch: refs/heads/ianswett-pto-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 114b20f4b2accf4f76a242a34d5f620cd48f4e3d
      https://github.com/quicwg/base-drafts/commit/114b20f4b2accf4f76a242a34d5f620cd48f4e3d
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add rationale for why ack-eliciting



From nobody Sun Jul 21 12:41:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 780991200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:41:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 VCrYWxfY0zRe for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:41: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 D3C841200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:41:06 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:41:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738066; bh=TK/eYqVgwLlefohK9euZY9leTi0ICsKYLvoogNar4FU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Mp/y5W4lGkQYOi9UkLLAeb4eR8C0elTwYPvuLgYE8JgqHTae4yHDk1l59LxWvio82 ObvYBwmMf4OrmEnKlZ3Gn7kSFA5Kr82IpXGb8QJHLGbBqscXP7+Xt6gTjo4Qqnk+Xp 7zFqhAlRHU9HtbHaMkJuMehMBfYZ2jV4UtEinQXM=
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/2912/push/3839739355@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2912@github.com>
References: <quicwg/base-drafts/pull/2912@github.com>
Subject: Re: [quicwg/base-drafts] PTO should always send an ack-eliciting packet (#2912)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bfd1ed588_14f63fed79ccd96c6076d7"; 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/fNoerOJi6g62VLv1sgi-ZN6fcw8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:41:09 -0000

----==_mimepart_5d34bfd1ed588_14f63fed79ccd96c6076d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

114b20f4b2accf4f76a242a34d5f620cd48f4e3d  Add rationale for why ack-eliciting


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2912/files/407928b26fd9e4fcb2efbef4f70a39eb8a466cd6..114b20f4b2accf4f76a242a34d5f620cd48f4e3d

----==_mimepart_5d34bfd1ed588_14f63fed79ccd96c6076d7
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/114b20f4b2accf4f76a242a34d5f620cd48f4e3d">114b20f</a>  Add rationale for why ack-eliciting</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/2912/files/407928b26fd9e4fcb2efbef4f70a39eb8a466cd6..114b20f4b2accf4f76a242a34d5f620cd48f4e3d?email_source=notifications&amp;email_token=AFTOJK2ORKY7PJ7DFYIJKODQAS3VDA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTGIZTKNCQOVZWQIZTHAZTSNZTHEZTKNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6O65N3L2BIVB663ITQAS3VDANCNFSM4IFSDGOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4HOLVDE3EO2LAKSBDQAS3VDA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTGIZTKNCQOVZWQIZTHAZTSNZTHEZTKNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2912/files/407928b26fd9e4fcb2efbef4f70a39eb8a466cd6..114b20f4b2accf4f76a242a34d5f620cd48f4e3d?email_source=notifications\u0026email_token=AFTOJK2ORKY7PJ7DFYIJKODQAS3VDA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTGIZTKNCQOVZWQIZTHAZTSNZTHEZTKNI",
"url": "https://github.com/quicwg/base-drafts/pull/2912/files/407928b26fd9e4fcb2efbef4f70a39eb8a466cd6..114b20f4b2accf4f76a242a34d5f620cd48f4e3d?email_source=notifications\u0026email_token=AFTOJK2ORKY7PJ7DFYIJKODQAS3VDA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTGIZTKNCQOVZWQIZTHAZTSNZTHEZTKNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34bfd1ed588_14f63fed79ccd96c6076d7--


From nobody Sun Jul 21 12:41:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D1DAB1200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:41:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id McnlDPEiDiiW for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:41:41 -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 94ED41200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:41:41 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:41:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738100; bh=j88tC+UL3hFTW5eGDVRuyK+aKDhhJNyYuIg2TZxmHzA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kiFCm7SwVH7VrCs391aCETzZQ8gOyJDZLY6qcKdyQ1lj0KiR5Yf7O4wfDDYs5eBqv IG4tNTdeAqgBgMtqBvLbC7mN6kvf9jC11E1bADL+rvu7Buc4EfxmCcjsG9m4jU19iS 9dqP3AwUBHzGs+Y7eJDgmxQFztgdpA6GAuDPSebs=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYASMM5DRLS3WNNKYN3IHZHJEVBNHHBYD3YSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2912/review/264551544@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2912@github.com>
References: <quicwg/base-drafts/pull/2912@github.com>
Subject: Re: [quicwg/base-drafts] PTO should always send an ack-eliciting packet (#2912)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34bff4b4b9f_4fc23fda89ccd960557063"; 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/PA9fp7DWTaWLrTQDNtA-47zMNYM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:41:43 -0000

----==_mimepart_5d34bff4b4b9f_4fc23fda89ccd960557063
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar approved this pull request.

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/2912#pullrequestreview-264551544
----==_mimepart_5d34bff4b4b9f_4fc23fda89ccd960557063
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@janaiyengar</b> approved this pull request.</p>

<p>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/2912?email_source=notifications&amp;email_token=AFTOJK54BIXPRA3OPKBI6SDQAS3XJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLY6A#pullrequestreview-264551544">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK55LSA4E6NXRJFS7ILQAS3XJANCNFSM4IFSDGOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4QNKA2UF4RMJOC2Q3QAS3XJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLY6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJK54BIXPRA3OPKBI6SDQAS3XJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLY6A#pullrequestreview-264551544",
"url": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJK54BIXPRA3OPKBI6SDQAS3XJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLY6A#pullrequestreview-264551544",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34bff4b4b9f_4fc23fda89ccd960557063--


From nobody Sun Jul 21 12:42:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4BF261200CE for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:42:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0RAN8zIb92KA for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:42:00 -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 E4A8E1200B8 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:41:59 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:41:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738119; bh=4/9vQgrRfYaQlG8iKnCLkKCkXGLjwF+Z2S7XZ2DeB1Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F8ZA/C5pbUlIwltRUVC+q3H555xthwG22mPi7yWof/bs0P2w8saG4EALuYkcHKCkq jlrdlV0pBNncHhZ6EDQYwGZWZxG4OoL0ShBc6VMeDKrW4av5v9ydEuFAD+RQoxYnbi 1EfGFKvPvDxG95n0a+Lws8KZ1HP39v62z1+KSe/0=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFTBG6T7UKOI3U2VF3IHZINEVBNHHBYEARTM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2918/review/264551559@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2918@github.com>
References: <quicwg/base-drafts/pull/2918@github.com>
Subject: Re: [quicwg/base-drafts] Fix language around CC on migration (#2918)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c006e9037_1ce53fed79ccd96c423013"; 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/6TzrnPLRRpErQ-OvLRgG_x-JMUE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:42:01 -0000

----==_mimepart_5d34c006e9037_1ce53fed79ccd96c423013
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

erickinnear approved this pull request.

LGTM, "MUST, unless" seems like a nicer balance than the previous "SHOULD".



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2918#pullrequestreview-264551559
----==_mimepart_5d34c006e9037_1ce53fed79ccd96c423013
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@erickinnear</b> approved this pull request.</p>

<p>LGTM, "MUST, unless" seems like a nicer balance than the previous "SHOULD".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2918?email_source=notifications&amp;email_token=AFTOJK2WNWUY5NQGLSCMBKDQAS3YNA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLZBY#pullrequestreview-264551559">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6S5CPKD2X3J7QJ7ZDQAS3YNANCNFSM4IFTHRZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYITCDECNYZSAUT43LQAS3YNA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLZBY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2918?email_source=notifications\u0026email_token=AFTOJK2WNWUY5NQGLSCMBKDQAS3YNA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLZBY#pullrequestreview-264551559",
"url": "https://github.com/quicwg/base-drafts/pull/2918?email_source=notifications\u0026email_token=AFTOJK2WNWUY5NQGLSCMBKDQAS3YNA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CLZBY#pullrequestreview-264551559",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c006e9037_1ce53fed79ccd96c423013--


From nobody Sun Jul 21 12:42:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 12CAC1200CE for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:42:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eO9FcC0tEaIl for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:42: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 9F5111200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:42:17 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:42:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738136; bh=d2sd8t2E6T7lIpM26ExWEJrwaS5HGyWgkaoSbOVjGK8=; h=Date:From:To:Subject:From; b=KBye7yknP1BGkPUH+VlTcQF082H+KlcHGCGCH7cyTYU2DaiRxP9bRO3DrHts8Mksv UjmCuUrcmUseHhpOcp0NmHrXqgrqfQY5dlsV0gTQirnmnlqEpUzyirpf4VilqlzJME 8oG+nVBtdEkNNwP13uQAmbopmuLglAptJC6EDgTU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a49de5-6cbe03@github.com>
Subject: [quicwg/base-drafts] 6cbe03: Script updating gh-pages from 114b20f4. [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/twpb7ZmVw-93uC9Og0c9EJW6bJY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:42:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6cbe030ffc81f61bc3433497df3be0587a039a3a
      https://github.com/quicwg/base-drafts/commit/6cbe030ffc81f61bc3433497df3be0587a039a3a
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-pto-ack-eliciting/draft-ietf-quic-recovery.html
    M ianswett-pto-ack-eliciting/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 114b20f4. [ci skip]



From nobody Sun Jul 21 12:43:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B0C3B120120 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:43:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_2jxt1qq0Ae for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:43:41 -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 428491200A3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:43:41 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:43:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738220; bh=ZH1dJbOSGWkp7orNpDhYR30NUMFBagwGIbNEhzzUq78=; h=Date:From:To:Subject:From; b=EFjXF78uHUAv0tKRsj3cUWPkVIVHV3xJQujDpv1JaPURrFPQBjj9m6T6AKf+aZiho yGJESBKib3X0WEQwOBVrI+CiBdbLfOv/pYxHHmfaSygT6JOy52+jcnaq/HX9baDz74 3/Phr8ABk0p8x4hN9hnbM4iyRpOoFQLo3UD14vso=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-rtt/000000-d2eae3@github.com>
Subject: [quicwg/base-drafts] d2eae3: MinRTT for the congestion control 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/21EEYRfZtn_w7VlG1dYolu9RunQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:43:43 -0000

  Branch: refs/heads/ianswett-min-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: d2eae3ff88e64a67ad605f58a6f981b14fd26739
      https://github.com/quicwg/base-drafts/commit/d2eae3ff88e64a67ad605f58a6f981b14fd26739
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  MinRTT for the congestion control context

Also explains what happens to MinRTT if the path RTT changes.

Fixes #2908



From nobody Sun Jul 21 12:44:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BEB14120127 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:44:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id V1Y_aLLB_c6d for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:43: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 E23D9120147 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:43:58 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:43:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738238; bh=rTMYikg1TNEYRKOKOnYvAkwOYNQ3d2Mtiq1UNca9/oA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=THKay382nwzYd2Yh1B0CdKMEkcTXWDxP3YLfMX7lOZcDPXRrW44sRCuyz5x2dglPT er34Rfe2t8hAN3KLMxAx5SSwa9NWliTEaDv9r8TqMxNrsA8eES5Nsyhd9ARj3W62WI rfEGRs2+V+bgamXWzy2hMSwuOB3Gh/WOUfOgIN28=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JDG4LXQ5QTMF75J53IHZP5EVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919@github.com>
Subject: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c07e3d0bf_5a963fbd41ccd95c23294b"; 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/ivuFYc4qJrtW9wSJ8UsJrRglBtw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:44:01 -0000

----==_mimepart_5d34c07e3d0bf_5a963fbd41ccd95c23294b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Also explains what happens to MinRTT if the path RTT changes.

Fixes #2908
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2919

-- Commit Summary --

  * MinRTT for the congestion control context

-- File Changes --

    M draft-ietf-quic-recovery.md (23)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2919.patch
https://github.com/quicwg/base-drafts/pull/2919.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/2919

----==_mimepart_5d34c07e3d0bf_5a963fbd41ccd95c23294b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Also explains what happens to MinRTT if the path RTT changes.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2908.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469762950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2908" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2908/hovercard" href="https://github.com/quicwg/base-drafts/issues/2908">#2908</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/2919'>https://github.com/quicwg/base-drafts/pull/2919</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>MinRTT for the congestion control context</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2919/files#diff-0">draft-ietf-quic-recovery.md</a>
    (23)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2919.patch'>https://github.com/quicwg/base-drafts/pull/2919.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2919.diff'>https://github.com/quicwg/base-drafts/pull/2919.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/2919?email_source=notifications&amp;email_token=AFTOJKYUAPFHRZYRUKC4PH3QAS375A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQDICQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK42WFPEHABKI2DTU7TQAS375ANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZI7AY5ERMYI3JZWQ3QAS375A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQDICQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJKYUAPFHRZYRUKC4PH3QAS375A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQDICQ",
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJKYUAPFHRZYRUKC4PH3QAS375A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQDICQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34c07e3d0bf_5a963fbd41ccd95c23294b--


From nobody Sun Jul 21 12:45:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ED21112012C for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:45:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_owgKMhiFd1 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:45:18 -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 79360120120 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:45:18 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:45:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738318; bh=YqCf+Vhw3XdWSvQvJY5VYKRKc2bWmyGNQcLpybHC5c0=; h=Date:From:To:Subject:From; b=rQKUXBcwqG/C8JIwuEcvQMiZ+3kCbX9c7pXIYytOfcccVhMi1CCB8SkPNJ0unz63q 6TurbboAk80S5EVCFTB6RH/fNkiDnzNaCxrVhNyJPcfBVN/jV3xm8SpoPjDAO9jzGb ksy7Ro9kvWIPkqPMzoe+ZOsR+8sMaKgmEFskUV8A=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-rtt/d2eae3-eead85@github.com>
Subject: [quicwg/base-drafts] eead85: Fix a long 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/qNAWfWFVkwjCqqvpRYubaAFdh6Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:45:20 -0000

  Branch: refs/heads/ianswett-min-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: eead856d0a445f35be1f55f0823c759a53ab9eab
      https://github.com/quicwg/base-drafts/commit/eead856d0a445f35be1f55f0823c759a53ab9eab
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix a long line



From nobody Sun Jul 21 12:45:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DC86F12012C for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:45:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 jS0OL-yLmpPU for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:45: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 EAEFE120120 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:45:25 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:45:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738325; bh=vMTCtIAqPFAP6CWsZdgbMF0NAcQCX5vV862Hp5UHGSQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hgElgMrItH9fuceKsa5AuHe14Inq5S825GBElPjs8wGOyVjqscXP3aowVzPyIYyxO j7Yv+SPY0zlRO+gqRCZzz7ijARWSWPgjSg+C/C2amdqAkBLsTCecfUr4uCuHHZlYQZ iezWG6QeQPF+4KS66VaM8mU+g+WSumhev5YrYqv8=
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/2919/push/3839745087@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c0d510fb4_38343ffa0c0cd960219833"; 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/zq9-Uw7-unZzH4WbhBLMVw_IArg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:45:28 -0000

----==_mimepart_5d34c0d510fb4_38343ffa0c0cd960219833
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

eead856d0a445f35be1f55f0823c759a53ab9eab  Fix a long line


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919/files/d2eae3ff88e64a67ad605f58a6f981b14fd26739..eead856d0a445f35be1f55f0823c759a53ab9eab

----==_mimepart_5d34c0d510fb4_38343ffa0c0cd960219833
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/eead856d0a445f35be1f55f0823c759a53ab9eab">eead856</a>  Fix a long 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/2919/files/d2eae3ff88e64a67ad605f58a6f981b14fd26739..eead856d0a445f35be1f55f0823c759a53ab9eab?email_source=notifications&amp;email_token=AFTOJKZHM7JYIU3CLLBFEX3QAS4FLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSNZUGUYDQNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7LRQSDOL4X6JD6MB3QAS4FLANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYTLBXHVFDSATCV6ALQAS4FLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSNZUGUYDQNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919/files/d2eae3ff88e64a67ad605f58a6f981b14fd26739..eead856d0a445f35be1f55f0823c759a53ab9eab?email_source=notifications\u0026email_token=AFTOJKZHM7JYIU3CLLBFEX3QAS4FLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSNZUGUYDQNY",
"url": "https://github.com/quicwg/base-drafts/pull/2919/files/d2eae3ff88e64a67ad605f58a6f981b14fd26739..eead856d0a445f35be1f55f0823c759a53ab9eab?email_source=notifications\u0026email_token=AFTOJKZHM7JYIU3CLLBFEX3QAS4FLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSNZUGUYDQNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34c0d510fb4_38343ffa0c0cd960219833--


From nobody Sun Jul 21 12:45:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A2CC3120134 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:45:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9qnw7mkWC8Yp for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:45: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 0EC7D12012C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:45:42 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:45:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738341; bh=tnEDK5hNhqXgosayjfjFP5mp8K3GqT1zMD1iiIzputU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QiQ17i+f/pXokguSwU1L/jxVpkag/Uvg3hwz+R8nCQYIVZRkx1adj0aMlCDZMqmna qbzo+SrIJQrNC0kKntq59Phdg6eJL/3bYFp7WafauWT5yQjsNaD5z4RJxJ3N6UtKOc bAN3U/5GZW2N+gnLeWmCt6tb56bp5mvXdyzeqbzg=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6GQNLN65HYRULRZYF3IHZWLEVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2895/513582198@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2895@github.com>
References: <quicwg/base-drafts/issues/2895@github.com>
Subject: Re: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c0e5dbb3_7fc13fce89acd9643561e6"; 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/sfI9miKIyqlPZMyt1ODS0_4-Ezk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:45:44 -0000

----==_mimepart_5d34c0e5dbb3_7fc13fce89acd9643561e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This seems reasonable. The RTT estimate could be quite wrong at this stage in the connection, so an ack-eliciting packet can be used to improve that 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/2895#issuecomment-513582198
----==_mimepart_5d34c0e5dbb3_7fc13fce89acd9643561e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This seems reasonable. The RTT estimate could be quite wrong at this stage in the connection, so an ack-eliciting packet can be used to improve that 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/2895?email_source=notifications&amp;email_token=AFTOJK65SIKBH7KS4LZJ7SDQAS4GLA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKI5Q#issuecomment-513582198">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6526OFCAV3UFNCYHLQAS4GLANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5GDSVSJDUDAZ4VM6DQAS4GLA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKI5Q.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJK65SIKBH7KS4LZJ7SDQAS4GLA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKI5Q#issuecomment-513582198",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJK65SIKBH7KS4LZJ7SDQAS4GLA5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKI5Q#issuecomment-513582198",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c0e5dbb3_7fc13fce89acd9643561e6--


From nobody Sun Jul 21 12:46:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 28490120134 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:46:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tn4dxS4utmE7 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:46: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 6F8E312012C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:46:24 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:46:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738383; bh=F3m3i0LtcWxd/rL7HMnaHqmpgJZ+zet+QHmQmGh+V/Q=; h=Date:From:To:Subject:From; b=ec292ovb066H7Q2gFLrJP9abdvMgzFZtlNaRCY24vEDcSFgFx4e8NFry9pkgmnveu n79TzePdNxfae3SbwdVq19/cYUS5aFwA1YlmRHsHXJno3xCvaqeb4PnvVLo5lE7Wou iUMJ84aZXFGmRrfWhK8vWyC0d4Nn8XvpWXiRbIO0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6cbe03-7eb64f@github.com>
Subject: [quicwg/base-drafts] 7eb64f: Script updating gh-pages from eead856d. [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/qTPbVRL_YWdhR03r8vZoR8zL1FE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:46:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7eb64f7eb77279db3a744d35eb7b414388f6c5cb
      https://github.com/quicwg/base-drafts/commit/7eb64f7eb77279db3a744d35eb7b414388f6c5cb
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    A ianswett-min-rtt/draft-ietf-quic-http.html
    A ianswett-min-rtt/draft-ietf-quic-http.txt
    A ianswett-min-rtt/draft-ietf-quic-invariants.html
    A ianswett-min-rtt/draft-ietf-quic-invariants.txt
    A ianswett-min-rtt/draft-ietf-quic-qpack.html
    A ianswett-min-rtt/draft-ietf-quic-qpack.txt
    A ianswett-min-rtt/draft-ietf-quic-recovery.html
    A ianswett-min-rtt/draft-ietf-quic-recovery.txt
    A ianswett-min-rtt/draft-ietf-quic-tls.html
    A ianswett-min-rtt/draft-ietf-quic-tls.txt
    A ianswett-min-rtt/draft-ietf-quic-transport.html
    A ianswett-min-rtt/draft-ietf-quic-transport.txt
    A ianswett-min-rtt/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from eead856d. [ci skip]



From nobody Sun Jul 21 12:49:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BC45C120134 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:49:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.597
X-Spam-Level: 
X-Spam-Status: No, score=-6.597 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 tbrzGgWQzTGT for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:49: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 054E712012C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:49:26 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:49:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738566; bh=C3Y7/WvnlOcCj3xbjXhvqniv6Q0l5BEjh4nHX5ZZMTo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yRd9sZ3KH8StwaKqRNCh5wEnOVOfEuPUCBDQWI0KTRGO1ras9/OQtyKrwVBrVGyCI FMW4zOrfXA+lAynhrgvbRbk22dAM15ijn8aU/n37kG2nPzRJPzyVO7/BJpSRmr5WuE F/Ew70fkHpPawSMqaBsAAc2uGU5IqdwTxosbVQys=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4SVSDMSY4SDH7A7LF3IH2ELEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264551821@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c1c5ee656_164e3fa0c6acd96436529c"; 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/xQ-_Hzcd-MsY80EjShvINHSD4pc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:49:29 -0000

----==_mimepart_5d34c1c5ee656_164e3fa0c6acd96436529c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 

> An endpoint MAY send up to two full-sized datagrams containing ack-eliciting packets,

I read that as it MAY NOT send more than two, but it MAY send less.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2915#discussion_r305633121
----==_mimepart_5d34c1c5ee656_164e3fa0c6acd96436529c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2915#discussion_r305633121">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 
</pre>
<blockquote>
<p>An endpoint MAY send up to two full-sized datagrams containing ack-eliciting packets,</p>
</blockquote>
<p>I read that as it MAY NOT send more than two, but it MAY send less.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications&amp;email_token=AFTOJK6XUA2CSSMYKIBCN4LQAS4ULA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3DI#discussion_r305633121">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4SVTKBDQMLVNH5RT3QAS4ULANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYV4VMASIIKIOPQBBLQAS4ULA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3DI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK6XUA2CSSMYKIBCN4LQAS4ULA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3DI#discussion_r305633121",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJK6XUA2CSSMYKIBCN4LQAS4ULA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3DI#discussion_r305633121",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c1c5ee656_164e3fa0c6acd96436529c--


From nobody Sun Jul 21 12:50:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 31A4E120134 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:50:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RGcSH8twR4-R for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:50:14 -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 6EFCA12012C for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:50:14 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:50:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738614; bh=M7CZtdlTc6/O71ozffdYcQUybru1YiljhQzZVpr1coo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mQsbTOstRRhMLRd55/BD0iwQZA3Jprv1oHvlo7SUNbZWmOU71PBW19kGSa0nkVpiT 3ajaHoAF5Ro/SOpdvSPlW3kFXsDo91yiDMFnpGZ+6FvE/jKmRInclue9Vh2vnEzRup sY1LuG9ofgPEY4Z1x4WwKiByIcnOwwP2SjLYR4QA=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4HPM23LIFTFMATWVF3IH2HLEVBNHHBYD4VYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2915/review/264551850@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2915@github.com>
References: <quicwg/base-drafts/pull/2915@github.com>
Subject: Re: [quicwg/base-drafts] Up to two full-sized datagrams, not packets (#2915)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c1f5ab8c9_2c3b3fcbc86cd968405051"; 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/hkkM_ykKszjZKP4gQhulSnAv71Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:50:16 -0000

----==_mimepart_5d34c1f5ab8c9_2c3b3fcbc86cd968405051
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 

Ah, I am confusing UDP datagrams and 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/2915#discussion_r305633152
----==_mimepart_5d34c1f5ab8c9_2c3b3fcbc86cd968405051
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mikkelfj</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2915#discussion_r305633152">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -598,8 +598,8 @@ discarded.
 
 When a PTO timer expires, a sender MUST send at least one ack-eliciting packet
 as a probe, unless there is no data available to send.  An endpoint MAY send up
-to two ack-eliciting packets, to avoid an expensive consecutive PTO expiration
-due to a single packet loss.
+to two full sized datagrams containing ack-eliciting packets, to avoid an
+expensive consecutive PTO expiration due to a single lost datagram.
 
</pre>
<p>Ah, I am confusing UDP datagrams and 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/2915?email_source=notifications&amp;email_token=AFTOJKZAFROBDLD5R3LDXODQAS4XLA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3KQ#discussion_r305633152">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JQH5S3FLR2NGOYADQAS4XLANCNFSM4IFSKZXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJ7WCXAQ4Y2WYMXVDQAS4XLA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3KQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJKZAFROBDLD5R3LDXODQAS4XLA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3KQ#discussion_r305633152",
"url": "https://github.com/quicwg/base-drafts/pull/2915?email_source=notifications\u0026email_token=AFTOJKZAFROBDLD5R3LDXODQAS4XLA5CNFSM4IFSKZX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL3KQ#discussion_r305633152",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c1f5ab8c9_2c3b3fcbc86cd968405051--


From nobody Sun Jul 21 12:53:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7F3F3120219 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:52:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id J9UUAPqj7TYJ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:52: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 D02F81201E3 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:52:53 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:52:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738772; bh=SEqN0xEF/q/7YQkNpg3Q93DYgQhSXTgO9bQfcsCUTIQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UPF16t8eGqrL4kNVbazfJzf1Cduih5Ae7ld2owfGYeE3gj52vX/SsIhXJxyXAeJcR VI5MIJGq0p16FsFtTYTofXG/trrh5JtgnZC2y9y3Owgiy+3YieP6ur07fDpW3reusq Zb2bPhnlzpwm91/XrvGupLzfuqz9DK7FDDgH8hbQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BJB6AC2B6AA6PAIV3IH2RJEVBNHHBYD3YSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2912/review/264551943@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2912@github.com>
References: <quicwg/base-drafts/pull/2912@github.com>
Subject: Re: [quicwg/base-drafts] PTO should always send an ack-eliciting packet (#2912)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c294bb1fb_38cf3fb6cd6cd964604059"; 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/4MYkj2XQ_2C2bQxrJgLeWPPi6Vg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:53:00 -0000

----==_mimepart_5d34c294bb1fb_38cf3fb6cd6cd964604059
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.

Thanks for your changes Jana, 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/2912#pullrequestreview-264551943
----==_mimepart_5d34c294bb1fb_38cf3fb6cd6cd964604059
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<p>Thanks for your changes Jana, 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/2912?email_source=notifications&amp;email_token=AFTOJKY5C7Z7MD2PRI7AH5LQAS5BJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL4BY#pullrequestreview-264551943">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4CFMY3ELGR64H37ITQAS5BJANCNFSM4IFSDGOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55Z2BM7R6Z3TILEZLQAS5BJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL4BY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJKY5C7Z7MD2PRI7AH5LQAS5BJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL4BY#pullrequestreview-264551943",
"url": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJKY5C7Z7MD2PRI7AH5LQAS5BJA5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL4BY#pullrequestreview-264551943",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c294bb1fb_38cf3fb6cd6cd964604059--


From nobody Sun Jul 21 12:56:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EA9D71200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:55:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vBJyYXnnKaue for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:55: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 42EA8120134 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:55:57 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:55:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563738956; bh=XEuCAQY4sImh97FHfZTj0QldGdDmiWkeAmDF0cGYT5w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=W/qhihlRp9AYiyr+ER41OF8lYugzniwNH2onzxT12w26g6nArm96vQ5uqHq33UBsO aHYEEnADtpPoQPpdD5Zc/ZGI63A6VtEqghj3sCYLen3TfOwfm66/6NHUOI5rllRfcg 9QjwgJPQTPCWmIo1VpCNdZZ9QmhgbkEpOY5zYELY=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RWO46VE7CACYAZBN3IH24ZEVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264552064@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c34c7c6a2_13493f8347acd960204197"; 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/Kr6O38URnkL62XbNKrFFgN9-KVw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:55:59 -0000

----==_mimepart_5d34c34c7c6a2_13493f8347acd960204197
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



> @@ -581,13 +581,13 @@ data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
 data has been received from the client.
 
 Because the server could be blocked until more packets are received, the client
-MUST ensure that the retransmission timer is set if the client does not yet
-have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
-it is possible that the client may not have any crypto data to retransmit.
-However, the client MUST send a new packet, containing only PADDING frames if
-necessary, to allow the server to continue sending data. If Handshake keys
-are available to the client, it MUST send a Handshake packet, and otherwise
-it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+MUST ensure that the retransmission timer is set if the client has not received
+an ACK in a Handshake packet or does not yet have 1-RTT keys.  If the probe

I think this should be '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/2907#discussion_r305633369
----==_mimepart_5d34c34c7c6a2_13493f8347acd960204197
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2907#discussion_r305633369">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -581,13 +581,13 @@ data.  If no data can be sent, then the PTO alarm MUST NOT be armed until
 data has been received from the client.
 
 Because the server could be blocked until more packets are received, the client
-MUST ensure that the retransmission timer is set if the client does not yet
-have 1-RTT keys.  If the probe timer expires before the client has 1-RTT keys,
-it is possible that the client may not have any crypto data to retransmit.
-However, the client MUST send a new packet, containing only PADDING frames if
-necessary, to allow the server to continue sending data. If Handshake keys
-are available to the client, it MUST send a Handshake packet, and otherwise
-it MUST send an Initial packet in a UDP datagram of at least 1200 bytes.
+MUST ensure that the retransmission timer is set if the client has not received
+an ACK in a Handshake packet or does not yet have 1-RTT keys.  If the probe
</pre>
<p>I think this should be '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/2907?email_source=notifications&amp;email_token=AFTOJK4N4AVZWRFW2EVPYMLQAS5MZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL5AA#discussion_r305633369">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK637SGKP4DJIQ3Z5LTQAS5MZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2HL4JGGOQUUZS4YHDQAS5MZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL5AA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4N4AVZWRFW2EVPYMLQAS5MZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL5AA#discussion_r305633369",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4N4AVZWRFW2EVPYMLQAS5MZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL5AA#discussion_r305633369",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c34c7c6a2_13493f8347acd960204197--


From nobody Sun Jul 21 12:59:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 27BC1120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:59:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gcE8B7dQGK0H for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 12:59: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 A89DA1200B9 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 12:59:43 -0700 (PDT)
Date: Sun, 21 Jul 2019 12:59:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739182; bh=yVLcWhsgYwBE/DbkWI8OnmKVNJ4n5mJk6IJPgMLw6wo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hdg4OYIjKVAvXMJN4EVnD85LUNi1bsFHcEOYIDzJ2VPBGfFDFkJfADBCE09uY9hBQ IgIaYgX/7pDbsqEyI/B1ZTT+zvBcW5+PgHI35R9ozpug8XtHeCxZaM9HqvzmxdozvL RDR5Gx1vWZb0SM6sZnAv1jDM9Xe2/arntEwAD6DA=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7OPJMIFTBVX6ID64N3IH3K5EVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264552221@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c42eb5304_1f683fc8c60cd9645499cf"; 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/h4f0XXJpgEwZiLKPcJd8PjS9KtU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 19:59:45 -0000

----==_mimepart_5d34c42eb5304_1f683fc8c60cd9645499cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



> @@ -1188,9 +1188,13 @@ SetLossDetectionTimer():
     return
 
   // Don't arm timer if there are no ack-eliciting packets
-  // in flight and the handshake is complete.
-  if (endpoint is client with 1-RTT keys &&
-      no ack-eliciting packets in flight):
+  // in flight and the endpoint is a server.  Do arm the
+  // timer until the client has received a Handshake ACK
+  // or completed the handshake.

```suggestion
  // or has completed 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/2907#pullrequestreview-264552221
----==_mimepart_5d34c42eb5304_1f683fc8c60cd9645499cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<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/2907#discussi=
on_r305633523">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1188,9 +1188,13 @@ SetLossDetectionTim=
er():=0D
     return=0D
 =0D
   // Don&#39;t arm timer if there are no ack-eliciting packets=0D
-  // in flight and the handshake is complete.=0D
-  if (endpoint is client with 1-RTT keys &amp;&amp;=0D
-      no ack-eliciting packets in flight):=0D
+  // in flight and the endpoint is a server.  Do arm the=0D
+  // timer until the client has received a Handshake ACK=0D
+  // or completed the handshake.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  // or completed the handshake.=0D
+  // or has completed the handshake.=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/2907?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKZAWJE2YKUJDUK423LQAS525A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL6HI#pullrequestreview-264552221=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKZJVJZJI456W54DLETQAS525ANCNFSM4IEVHR7A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK7EFK3U=
HP23XL44W53QAS525A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL6HI.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/2907?email_source=3D=
notifications\u0026email_token=3DAFTOJKZAWJE2YKUJDUK423LQAS525A5CNFSM4IEV=
HR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CL6HI#pullrequestreview-264552221",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZAWJE2YKUJDUK423LQAS525A5CNFSM4IEVHR=
7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
L6HI#pullrequestreview-264552221",=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_5d34c42eb5304_1f683fc8c60cd9645499cf--


From nobody Sun Jul 21 13:03:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C4F821200B9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:03:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 eGVJ9EqEeqIt for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:03: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 6DF421200B8 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:03:23 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:03:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739402; bh=xFpDMbD9t4X1Z2LpMve1Eo/lAkgld0JjCl6rEwdSnow=; h=Date:From:To:Subject:From; b=oFzjlqHdjDO/xUCskIk0YPN/ntbnXH5a68F9z59UE6Z2JFsY/ScipvPtJ9Qn/gz3i i//Qh8BqruDHNYl0CMbL3iGvG+8NQHoW/QovPbp7fDVJ5+gW8l9trM3w82sq8f0JTJ rdkrUKTSOtySGn0/713RjXErD8vCT2Q36YCGUohU=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/more2685/e58ced-ec3d2c@github.com>
Subject: [quicwg/base-drafts] ec3d2c: reorder reading better for
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bKjUvTt51BNRyBvcDAs2BZcxDHg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:03:25 -0000

  Branch: refs/heads/more2685
  Home:   https://github.com/quicwg/base-drafts
  Commit: ec3d2c564d8606b3243ba54aa3aff42c2793aa52
      https://github.com/quicwg/base-drafts/commit/ec3d2c564d8606b3243ba54aa3aff42c2793aa52
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  reorder reading better for



From nobody Sun Jul 21 13:03:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 02E871200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:03:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RSXaxmkZmwWo for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:03: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 6975C12001B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:03:31 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:03:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739410; bh=3VLa0HC9X7YTiVlOdN7lD+O7D80oxAWN/Wh7KXkLZi4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mgyn+CGu0tgga1mzV5Rq5lGj0qQyD+T2Kx0zTzZlxyVCW8Qz6Chq7vmTJDrnVcY1k cBz5imGQxYtoa6bYFSMTwSuJ5LE1ePe0GT7K1ItFfLQMz7AO+IKlb+QRmCx3WHGY36 74/UTFQMiFnEP7fbGYfp8Xl5ckZCBLMWNUJo/Wts=
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/2918/push/3839768218@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2918@github.com>
References: <quicwg/base-drafts/pull/2918@github.com>
Subject: Re: [quicwg/base-drafts] Fix language around CC on migration (#2918)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c512af52d_2473fb7968cd95c5223d8"; 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/YiFh3VJsO0WETvmP_ai5W-Az-Tk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:03:33 -0000

----==_mimepart_5d34c512af52d_2473fb7968cd95c5223d8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

ec3d2c564d8606b3243ba54aa3aff42c2793aa52  reorder reading better for


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2918/files/e58ced75abd82ea603981ba95cf760986e033d95..ec3d2c564d8606b3243ba54aa3aff42c2793aa52

----==_mimepart_5d34c512af52d_2473fb7968cd95c5223d8
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/ec3d2c564d8606b3243ba54aa3aff42c2793aa52">ec3d2c5</a>  reorder reading better for</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/2918/files/e58ced75abd82ea603981ba95cf760986e033d95..ec3d2c564d8606b3243ba54aa3aff42c2793aa52?email_source=notifications&amp;email_token=AFTOJK4JSGNWUI5DKR3ML2TQAS6JFA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRVHA3TKMKQOVZWQIZTHAZTSNZWHAZDCOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZFO6D73SQO44MGUBTQAS6JFANCNFSM4IFTHRZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYLP4HE344NZEYHKOTQAS6JFA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRVHA3TKMKQOVZWQIZTHAZTSNZWHAZDCOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2918/files/e58ced75abd82ea603981ba95cf760986e033d95..ec3d2c564d8606b3243ba54aa3aff42c2793aa52?email_source=notifications\u0026email_token=AFTOJK4JSGNWUI5DKR3ML2TQAS6JFA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRVHA3TKMKQOVZWQIZTHAZTSNZWHAZDCOA",
"url": "https://github.com/quicwg/base-drafts/pull/2918/files/e58ced75abd82ea603981ba95cf760986e033d95..ec3d2c564d8606b3243ba54aa3aff42c2793aa52?email_source=notifications\u0026email_token=AFTOJK4JSGNWUI5DKR3ML2TQAS6JFA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRVHA3TKMKQOVZWQIZTHAZTSNZWHAZDCOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34c512af52d_2473fb7968cd95c5223d8--


From nobody Sun Jul 21 13:04:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 96D411200B9 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:04:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p7yDfJIZHjYA for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13: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 20CB112001B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:04:34 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:04:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739473; bh=3hVNeGLWkYmbWIRSTB2brk7e1jq1aLZ9tqc2eg8+t9A=; h=Date:From:To:Subject:From; b=FofmIPN+tqDuy9nY4hzwtSIjbIWWjiCCqs7etWl/LPzhP5E8ro0g4VmjkcXrdSpQn v1wV65vfl+E7gK6ZGXBOthoaMHo4P3qfH5RgI6mh4WewCEpKyUot1Bb6EqZZewg4uU T/hHA9hmgixmfrSkG70pjxn1zcccsuoNQmh0d12Y=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7eb64f-7d6b65@github.com>
Subject: [quicwg/base-drafts] 7d6b65: Script updating gh-pages from ec3d2c56. [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/ZpjMMN5UAsfvzkxmPslqS7SGvhE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:04:36 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7d6b65c7946986f25d8a321a57d2088f75096b70
      https://github.com/quicwg/base-drafts/commit/7d6b65c7946986f25d8a321a57d2088f75096b70
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M index.html
    M more2685/draft-ietf-quic-transport.html
    M more2685/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from ec3d2c56. [ci skip]



From nobody Sun Jul 21 13:04:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 383C51200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:04:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id plLlFxVjMmR2 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:04: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 7696A12001B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:04:54 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:04:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739493; bh=Z2GKPrIwyErNVptKdhtU9JEg1rqTh0Fjd0s3+LGsAJU=; h=Date:From:To:Subject:From; b=Nt7da/vO7Xj+wfYj5iQAERi4mTWyIvxY0av1Jfyf84L6KbdjVX4yNEEboVa07cpWk URtRyRCtWZnb9QV3Dp8c1dsiGAQGfzWUxNzf2yiS8bf8KeDuyXTq1vMTp984fFFimV MQhh/DBTItL7nLj5evqMIb2d6y0q5VOlemHUD7G4=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d3c66d-0d6841@github.com>
Subject: [quicwg/base-drafts] 407928: PTO should always send an ack-eliciting packet
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/utHy41lUTSOWY6gU6-M3Q3r2qYw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:04:56 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 407928b26fd9e4fcb2efbef4f70a39eb8a466cd6
      https://github.com/quicwg/base-drafts/commit/407928b26fd9e4fcb2efbef4f70a39eb8a466cd6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  PTO should always send an ack-eliciting packet


  Commit: 114b20f4b2accf4f76a242a34d5f620cd48f4e3d
      https://github.com/quicwg/base-drafts/commit/114b20f4b2accf4f76a242a34d5f620cd48f4e3d
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add rationale for why ack-eliciting


  Commit: 0d684171abcf439c7fc5fa6ff95433826682a108
      https://github.com/quicwg/base-drafts/commit/0d684171abcf439c7fc5fa6ff95433826682a108
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #2912 from quicwg/ianswett-pto-ack-eliciting

PTO should always send an ack-eliciting packet


Compare: https://github.com/quicwg/base-drafts/compare/d3c66d26508d...0d684171abcf


From nobody Sun Jul 21 13:05:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 17F76120110 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:05:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LiPy0hG-abLN for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:05:02 -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 77D3412001B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:05:02 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:05:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739501; bh=QY5uw5Pt/M0bDEH5wHllHKQDQsdpX+/wV3EiUzs5iIo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ul5hfL7+cOHvc3iWLvzJk/aoHJn6nZ+pBgVxrsVDVJzcns/H+JWHg92mY5wHfF8KN R33C2zGzU/CDBJUdSdjIFxwjh/XmwSQI4QshRRXsSYmF9gYt69n29WQ//wWlr5L40M V9+WdFm9XJ00IXIM3P8plQYoNOXSnmf4uv2RPEdc=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOZ3ETP7PQIMH5AXF3IH363EVBNHHBXYFK3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2895/issue_event/2498220754@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2895@github.com>
References: <quicwg/base-drafts/issues/2895@github.com>
Subject: Re: [quicwg/base-drafts] Advise bundling a PING or other small ACK eliciting frame with Initials (#2895)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c56dafb05_13753f8347acd96027592f"; 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/3Mm7H37aEf0-lPRbN9A1l1klrHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:05:04 -0000

----==_mimepart_5d34c56dafb05_13753f8347acd96027592f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2895 via #2912.

-- 
You are receiving 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/2895#event-2498220754
----==_mimepart_5d34c56dafb05_13753f8347acd96027592f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467708634" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2895" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2895/hovercard" href="https://github.com/quicwg/base-drafts/issues/2895">#2895</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470775955" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2912" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2912/hovercard" href="https://github.com/quicwg/base-drafts/pull/2912">#2912</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/2895?email_source=notifications&amp;email_token=AFTOJK6YJLZFWAL2C2ZVBT3QAS6O3A5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FUQ#event-2498220754">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4MEEVAXSSOXC7FCBLQAS6O3ANCNFSM4IC3HCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34WQHMP6CTXM3SRR3QAS6O3A5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FUQ.gif" height="1" width="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/2895?email_source=notifications\u0026email_token=AFTOJK6YJLZFWAL2C2ZVBT3QAS6O3A5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FUQ#event-2498220754",
"url": "https://github.com/quicwg/base-drafts/issues/2895?email_source=notifications\u0026email_token=AFTOJK6YJLZFWAL2C2ZVBT3QAS6O3A5CNFSM4IC3HCX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FUQ#event-2498220754",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c56dafb05_13753f8347acd96027592f--


From nobody Sun Jul 21 13:05:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 807AE12001B for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:05:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 ZQcZs8En8ccK for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:05: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 EECFD1200B8 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:05:02 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:05:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739502; bh=3dFWtgewmMSmxDwMmV4ClYqKQ+QuEmLkjNc387y4IVw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HXlGjf081mtagWt4DLbrBOFQU6AjRoiSXQSXyPKdRSI4Rdyutrc2txJa19uo9oBA+ M+5nFYrjY35JGJFWcbB/q6Nt46HkayZHl5+rZAH7flQbRPIdUxnO9nReDcH8Kd0Ux8 I4zgqPSxHDud3sP8hdTMOxxFwh4ScXv3j6bVtkSU=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7AUV42JV3RDL4QSFN3IH365EVBNHHBYD3YSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2912/issue_event/2498220751@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2912@github.com>
References: <quicwg/base-drafts/pull/2912@github.com>
Subject: Re: [quicwg/base-drafts] PTO should always send an ack-eliciting packet (#2912)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c56e4496a_69373fb0afccd9643325a5"; 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/m0kl3YjRsdV5MtTfaHUf_gY1CWo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:05:04 -0000

----==_mimepart_5d34c56e4496a_69373fb0afccd9643325a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2912 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/2912#event-2498220751
----==_mimepart_5d34c56e4496a_69373fb0afccd9643325a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470775955" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2912" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2912/hovercard" href="https://github.com/quicwg/base-drafts/pull/2912">#2912</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/2912?email_source=notifications&amp;email_token=AFTOJKZC52XXX5YLHKIPKBLQAS6O5A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FTY#event-2498220751">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3R2CVWIOW6AIVRBEDQAS6O5ANCNFSM4IFSDGOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5R4ZTMBZ5I3CJNDOLQAS6O5A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJKZC52XXX5YLHKIPKBLQAS6O5A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FTY#event-2498220751",
"url": "https://github.com/quicwg/base-drafts/pull/2912?email_source=notifications\u0026email_token=AFTOJKZC52XXX5YLHKIPKBLQAS6O5A5CNFSM4IFSDGO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSTT5FTY#event-2498220751",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c56e4496a_69373fb0afccd9643325a5--


From nobody Sun Jul 21 13:05:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 36295120134 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:05:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Fs7ove53bVkx for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:05: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 10D8E1200B8 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:05:45 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:05:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739544; bh=FfLZZPvluhCdVd8Zu5t7G8ai6nInauP/3wkA/JX/Vu8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ihOM4Sq36vdyOwZI9NT5oihBrQMxIwlK447yi2l/LS8sSji/JqgnUkfH02tPC3CiG UFGXKaKm+yUKq6zqWp+x2rNuI0aMRJbO+quYDQRxn6tVPVlNvI35CMITHxx4f/zKA9 vYrOp/xypdSPjyMhQfvN0d7pvM3bSpc5ZRi+0lcY=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3OUM33B5JOKHHTG4F3IH4BREVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/c513583482@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c5982eeed_48fa3fa0a62cd9643444d2"; 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/pwFaoL5Lm9P5bmnTugfh2Yr33Ho>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:05:46 -0000

----==_mimepart_5d34c5982eeed_48fa3fa0a62cd9643444d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

You'll need to rebase to get the changes from #2912 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/2907#issuecomment-513583482
----==_mimepart_5d34c5982eeed_48fa3fa0a62cd9643444d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>You'll need to rebase to get the changes from <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470775955" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2912" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2912/hovercard" href="https://github.com/quicwg/base-drafts/pull/2912">#2912</a> 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/2907?email_source=notifications&amp;email_token=AFTOJK2YLFUA6U3KZFFNVFTQAS6RRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKS6Q#issuecomment-513583482">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLBU5H4ZIUDO7RZVTQAS6RRANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3GMU3DASWMAWKB6Q3QAS6RRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKS6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2YLFUA6U3KZFFNVFTQAS6RRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKS6Q#issuecomment-513583482",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2YLFUA6U3KZFFNVFTQAS6RRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OKS6Q#issuecomment-513583482",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c5982eeed_48fa3fa0a62cd9643444d2--


From nobody Sun Jul 21 13:06:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 151F81200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:06:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zkJsGOj_yYyQ for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:06: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 CA1091200B6 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:06:23 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:06:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739582; bh=t9t3NQRTLM3vW7WrtjK++w8i3aQFf6jMWNw/jLKbRcM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v3zLB/27n7G6B/pJoHKsPBgEASQQiyA0eWbvxByHKBVSKwkdbS7NBv8vHtuVOPJeq DwAj9Hceu+Y+DyOYmQsuiEj6VUEvl+AfJ0ZHZ6tfv3qcIe/zF2Grs4TSiaCiv+bRV6 +VUZ2f/T3LFiPF0QQhkhKD9D8ERLBOsCo9FBHKvM=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EH6ZI2MF2UJZYSUF3IH4D5EVBNHHBX66EHQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/review/264552410@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c5be798cc_5783faece0cd96c94604d"; 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/nBvzdiIxIhWasq8iygQ36My6RUI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:06:25 -0000

----==_mimepart_5d34c5be798cc_5783faece0cd96c94604d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.

This looks good to me, module rebasing and working out the conflicts.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907#pullrequestreview-264552410
----==_mimepart_5d34c5be798cc_5783faece0cd96c94604d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@janaiyengar</b> commented on this pull request.</p>

<p>This looks good to me, module rebasing and working out the conflicts.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK5H7NYE4QUJ36WJH7LQAS6T5A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL7WQ#pullrequestreview-264552410">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLFRENFOKH2HPOGWTQAS6T5ANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK22O7JKEAMOILKBFDLQAS6T5A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL7WQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK5H7NYE4QUJ36WJH7LQAS6T5A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL7WQ#pullrequestreview-264552410",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK5H7NYE4QUJ36WJH7LQAS6T5A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL7WQ#pullrequestreview-264552410",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c5be798cc_5783faece0cd96c94604d--


From nobody Sun Jul 21 13:06:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 509601200B8 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:06:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W7RyK1enrTe7 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:06: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 E52F51200B9 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:06:29 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:06:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739589; bh=HAoCgT26Hu13uQRm8ojlZxefRmSr1/Yyzu8gjGAp0Aw=; h=Date:From:To:Subject:From; b=EcRemAeTXDqG95GfT94We3jaKCSZ7A3+t8Ql8fvRjmPc3rSP3Yw+xyYEB31a2uxhE MsL7J0xf/sNn+uvUIz/31ua9ikOVydAsdCp6lrPfiiCPY7IbCrIvVlAbwom+amhkkI dFrHxuCe+0O0RkKvx0qyWwINy+Q+5tSvh16vH+P8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7d6b65-d18c02@github.com>
Subject: [quicwg/base-drafts] d18c02: Script updating gh-pages from 0d684171. [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/E99AyJ0jLB5XGRo6f1wN3Wwkci0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:06:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d18c02804c61b258d96858da39cbcc1f776ad9a7
      https://github.com/quicwg/base-drafts/commit/d18c02804c61b258d96858da39cbcc1f776ad9a7
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 0d684171. [ci skip]



From nobody Sun Jul 21 13:07:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 86B1E1200B6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:07:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id V9cUeDUy1C-S for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:07:31 -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 C8A4B12001B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:07:30 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:07:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563739650; bh=79lLzUsdU8UmIP+xev2UOE9dvD5CTKGEN62xU0JBOCA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qcZbSlH8J05rWVfsvE0B+uNjdNDg9wKClhwTNSzsWfaYEXcMPvXyrdZj9KqrfOyd+ vJTS4cqSdC5ZFYZH4QeGUtq+JjUiSqyBCX3H2HEfkFskop5/8Ij/NaeEzopCew4Jdn KUskYcqt4L8+tKFzmq1daz8OC5+YBrg390t647W0=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EPEDKR4QLWV62KNN3IH4IDEVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264552441@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c601e9b45_75753f91a72cd96852705a"; 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/78X9m-p_MSzOZKNpdJ3bqHT_NyE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:07:33 -0000

----==_mimepart_5d34c601e9b45_75753f91a72cd96852705a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



>  following three values: the minimum value observed over the lifetime of the
-connection (min_rtt), an exponentially-weighted moving average (smoothed_rtt),
-and the variance in the observed RTT samples (rttvar).
+congestion control context (min_rtt), an exponentially-weighted moving average

```suggestion
RTT estimator's context (min_rtt), an exponentially-weighted moving average
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919#pullrequestreview-264552441
----==_mimepart_5d34c601e9b45_75753f91a72cd96852705a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<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/2919#discussi=
on_r305633740">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  following three values: the minimum value=
 observed over the lifetime of the=0D
-connection (min_rtt), an exponentially-weighted moving average (smoothed=
_rtt),=0D
-and the variance in the observed RTT samples (rttvar).=0D
+congestion control context (min_rtt), an exponentially-weighted moving a=
verage=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-congestion control context (min_rtt), an expo=
nentially-weighted moving average=0D
+RTT estimator's context (min_rtt), an exponentially-weighted moving aver=
age=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/2919?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK7XYNSVGO6YSQXHWJLQAS6YDA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL76I#pullrequestreview-264552441=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK5WYCWFXWNZMMI34TLQAS6YDANCNFSM4IFTJCXQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZ2XNZ5=
CUYOMSGL77LQAS6YDA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CL76I.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/2919?email_source=3D=
notifications\u0026email_token=3DAFTOJK7XYNSVGO6YSQXHWJLQAS6YDA5CNFSM4IFT=
JCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CL76I#pullrequestreview-264552441",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK7XYNSVGO6YSQXHWJLQAS6YDA5CNFSM4IFTJC=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
L76I#pullrequestreview-264552441",=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_5d34c601e9b45_75753f91a72cd96852705a--


From nobody Sun Jul 21 13:17:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EBD53120193 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:17:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rX59WLAIf8tA for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:17:38 -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 3F34A1200B9 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:17:38 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:17:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563740257; bh=q+EhtQt5psQRey4IbRS3MPHVC2Ywxv7G7Z69ROW6Q+g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xuxRUrpRFm64MlP60DpQzXzVbfA81faVdzaq2h6WKenkvlq5M8KQ4v3LQVXWpm1jY 49repTZlu+tAuumK3ETQnf5/cLUQrg+BQ9geiImW9prmpUOjk3uFB7GwqtvKtxy6gz Luk7Qp7567ONyKHKvwh+0Yzc2bh2rBPyXSWowdew=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KEM4K5INDCHKL6U53IH5ODEVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264552498@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c861726f7_3aa53fc570ccd95c89813e"; 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/p3FlL9BYsP3l1vOplWNqNg5vWHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:17:48 -0000

----==_mimepart_5d34c861726f7_3aa53fc570ccd95c89813e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



> @@ -371,16 +371,23 @@ retain sufficient history is an open research question.
 
 ## Estimating min_rtt {#min-rtt}
 
-min_rtt is the minimum RTT observed over the lifetime of the connection.
-min_rtt is set to the latest_rtt on the first sample in a connection, and to the
-lesser of min_rtt and latest_rtt on subsequent samples.
+min_rtt is the minimum RTT observed for a given congestion control context.

min_rtt is only used for loss recovery in this doc. I think it's more appropriate to say RTT estimator context in general. 

> @@ -371,16 +371,23 @@ retain sufficient history is an open research question.
 
 ## Estimating min_rtt {#min-rtt}
 
-min_rtt is the minimum RTT observed over the lifetime of the connection.
-min_rtt is set to the latest_rtt on the first sample in a connection, and to the
-lesser of min_rtt and latest_rtt on subsequent samples.
+min_rtt is the minimum RTT observed for a given congestion control context.
+min_rtt is set to the latest_rtt on the first RTT sample, and to the lesser
+of min_rtt and latest_rtt on subsequent samples.  min_rtt is used to reject
+implausible RTT samples, but is not used directly in congestion control or

I would drop the rest of the text after "samples" and perhaps add "which would otherwise cause the smoothed_rtt estimate to be incorrectly low.". I understand what you're trying to say, but I think saying that it is not used directly in loss recovery makes it a bit confusing I think. It is used, and I think people will have different reads on what's indirect and what's 

>  
 An endpoint uses only locally observed times in computing the min_rtt and does
 not adjust for host delays reported by the peer ({{host-delay}}).  Doing so
 allows the endpoint to set a lower bound for the smoothed_rtt based entirely on
 what it observes (see {{smoothed-rtt}}), and limits potential underestimation
 due to erroneously-reported delays by the peer.
 
+The RTT for the path may change over time.  If the real path RTT decreases,

```suggestion
The RTT for a path may change over time.  If a path's actual RTT decreases,
```

>  
 An endpoint uses only locally observed times in computing the min_rtt and does
 not adjust for host delays reported by the peer ({{host-delay}}).  Doing so
 allows the endpoint to set a lower bound for the smoothed_rtt based entirely on
 what it observes (see {{smoothed-rtt}}), and limits potential underestimation
 due to erroneously-reported delays by the peer.
 
+The RTT for the path may change over time.  If the real path RTT decreases,
+it should be observed quickly.  If the real path RTT increases, it will not

```suggestion
the min_rtt will adapt immediately on the first low sample.  If the path's actual RTT increases,
```

>  
 An endpoint uses only locally observed times in computing the min_rtt and does
 not adjust for host delays reported by the peer ({{host-delay}}).  Doing so
 allows the endpoint to set a lower bound for the smoothed_rtt based entirely on
 what it observes (see {{smoothed-rtt}}), and limits potential underestimation
 due to erroneously-reported delays by the peer.
 
+The RTT for the path may change over time.  If the real path RTT decreases,
+it should be observed quickly.  If the real path RTT increases, it will not
+be observed, but the impact is limited to allowing some RTT samples that are

```suggestion
the min_rtt will not adapt to it, potentially causing future RTT samples that are
```

> @@ -410,11 +417,11 @@ endpoint:
   min_rtt.  This limits the underestimation that a misreporting peer can cause
   to the smoothed_rtt.
 
-On the first RTT sample in a connection, the smoothed_rtt is set to the
-latest_rtt.
+On the first RTT sample in a congestion control context, the smoothed_rtt is

RTT context

>  
 smoothed_rtt and rttvar are computed as follows, similar to {{?RFC6298}}.  On
-the first RTT sample in a connection:
+the first RTT sample in a congestion control context:

RTT context

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919#pullrequestreview-264552498
----==_mimepart_5d34c861726f7_3aa53fc570ccd95c89813e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<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/2919#discussi=
on_r305633795">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -371,16 +371,23 @@ retain sufficient hi=
story is an open research question.=0D
 =0D
 ## Estimating min_rtt {#min-rtt}=0D
 =0D
-min_rtt is the minimum RTT observed over the lifetime of the connection.=
=0D
-min_rtt is set to the latest_rtt on the first sample in a connection, an=
d to the=0D
-lesser of min_rtt and latest_rtt on subsequent samples.=0D
+min_rtt is the minimum RTT observed for a given congestion control conte=
xt.=0D
</pre>=0D
<p>min_rtt is only used for loss recovery in this doc. I think it's more =
appropriate to say RTT estimator context in general.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2919#discussi=
on_r305633927">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -371,16 +371,23 @@ retain sufficient hi=
story is an open research question.=0D
 =0D
 ## Estimating min_rtt {#min-rtt}=0D
 =0D
-min_rtt is the minimum RTT observed over the lifetime of the connection.=
=0D
-min_rtt is set to the latest_rtt on the first sample in a connection, an=
d to the=0D
-lesser of min_rtt and latest_rtt on subsequent samples.=0D
+min_rtt is the minimum RTT observed for a given congestion control conte=
xt.=0D
+min_rtt is set to the latest_rtt on the first RTT sample, and to the les=
ser=0D
+of min_rtt and latest_rtt on subsequent samples.  min_rtt is used to rej=
ect=0D
+implausible RTT samples, but is not used directly in congestion control =
or=0D
</pre>=0D
<p>I would drop the rest of the text after "samples" and perhaps add "whi=
ch would otherwise cause the smoothed_rtt estimate to be incorrectly low.=
". I understand what you're trying to say, but I think saying that it is =
not used directly in loss recovery makes it a bit confusing I think. It i=
s used, and I think people will have different reads on what's indirect a=
nd what's</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2919#discussi=
on_r305633941">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 An endpoint uses only locally observed times in computing the min_rtt an=
d does=0D
 not adjust for host delays reported by the peer ({{host-delay}}).  Doing=
 so=0D
 allows the endpoint to set a lower bound for the smoothed_rtt based enti=
rely on=0D
 what it observes (see {{smoothed-rtt}}), and limits potential underestim=
ation=0D
 due to erroneously-reported delays by the peer.=0D
 =0D
+The RTT for the path may change over time.  If the real path RTT decreas=
es,=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-The RTT for the path may change over time.  I=
f the real path RTT decreases,=0D
+The RTT for a path may change over time.  If a path's actual RTT decreas=
es,=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2919#discussi=
on_r305633963">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 An endpoint uses only locally observed times in computing the min_rtt an=
d does=0D
 not adjust for host delays reported by the peer ({{host-delay}}).  Doing=
 so=0D
 allows the endpoint to set a lower bound for the smoothed_rtt based enti=
rely on=0D
 what it observes (see {{smoothed-rtt}}), and limits potential underestim=
ation=0D
 due to erroneously-reported delays by the peer.=0D
 =0D
+The RTT for the path may change over time.  If the real path RTT decreas=
es,=0D
+it should be observed quickly.  If the real path RTT increases, it will =
not=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-it should be observed quickly.  If the real p=
ath RTT increases, it will not=0D
+the min_rtt will adapt immediately on the first low sample.  If the path=
's actual RTT increases,=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2919#discussi=
on_r305633999">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 An endpoint uses only locally observed times in computing the min_rtt an=
d does=0D
 not adjust for host delays reported by the peer ({{host-delay}}).  Doing=
 so=0D
 allows the endpoint to set a lower bound for the smoothed_rtt based enti=
rely on=0D
 what it observes (see {{smoothed-rtt}}), and limits potential underestim=
ation=0D
 due to erroneously-reported delays by the peer.=0D
 =0D
+The RTT for the path may change over time.  If the real path RTT decreas=
es,=0D
+it should be observed quickly.  If the real path RTT increases, it will =
not=0D
+be observed, but the impact is limited to allowing some RTT samples that=
 are=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-be observed, but the impact is limited to all=
owing some RTT samples that are=0D
+the min_rtt will not adapt to it, potentially causing future RTT samples=
 that are=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2919#discussi=
on_r305634033">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -410,11 +417,11 @@ endpoint:=0D
   min_rtt.  This limits the underestimation that a misreporting peer can=
 cause=0D
   to the smoothed_rtt.=0D
 =0D
-On the first RTT sample in a connection, the smoothed_rtt is set to the=0D=

-latest_rtt.=0D
+On the first RTT sample in a congestion control context, the smoothed_rt=
t is=0D
</pre>=0D
<p>RTT context</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2919#discussi=
on_r305634053">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 smoothed_rtt and rttvar are computed as follows, similar to {{?RFC6298}}=
.  On=0D
-the first RTT sample in a connection:=0D
+the first RTT sample in a congestion control context:=0D
</pre>=0D
<p>RTT context</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/2919?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK3E5TJQYDGSZ473DTDQAS76DA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMAMQ#pullrequestreview-264552498=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK2IG5RZBAL3WNRQRE3QAS76DANCNFSM4IFTJCXQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK3IUROC=
SGXM5UYXWMLQAS76DA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMAMQ.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/2919?email_source=3D=
notifications\u0026email_token=3DAFTOJK3E5TJQYDGSZ473DTDQAS76DA5CNFSM4IFT=
JCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CMAMQ#pullrequestreview-264552498",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK3E5TJQYDGSZ473DTDQAS76DA5CNFSM4IFTJC=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
MAMQ#pullrequestreview-264552498",=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_5d34c861726f7_3aa53fc570ccd95c89813e--


From nobody Sun Jul 21 13:22:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AB3B81200B6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:22:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wmc3BFVlWldb for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:22: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 EFB1012001B for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:22:55 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:22:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563740575; bh=de3HULHxLO3Xb5qP6B/k4sT2GkxFaLu3dQPzIii545M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cmngQR86xW4lW9EK9yDj11xNNgDrz1Jq2B52PZXsNi5mxpggB7lLqDA9tV3TgsX1P sqJDeGLquWBPvsTmPOpuUTHjrJiE3mhjAQ2H7wFAIp+zDlKknX+2KibOc08rH5436a cSpzz9KDVhbXClVuvKNkdSv6ixGzqV8RSJ52W9K0=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZZ6PV6BREOLNBGUX53IH6B7EVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/264552953@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34c99f2be45_28283fb22d2cd96c5386b"; 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/KucohVeCAQWnGFV4nQKXZLuxcsc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:22:58 -0000

----==_mimepart_5d34c99f2be45_28283fb22d2cd96c5386b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -804,17 +803,14 @@ modifying the contents of packets from future versions.
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
 packets even where the TLS versions offered do not include TLS 1.3.
 
+The secrets used for protecting Initial packets do not change during the
+connection, even after receiving a Retry.  A server that sends a Retry
+therefore needs to either remember Initial protection keys or save them

Shouldn't this just say that the server already needs to have access to the original destination CID because of the `original_connection_id` transport parameter? I don't think the server needs to remember/encode initial keys on top of 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/2878#pullrequestreview-264552953
----==_mimepart_5d34c99f2be45_28283fb22d2cd96c5386b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2878#discussion_r305634291">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -804,17 +803,14 @@ modifying the contents of packets from future versions.
 The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
 packets even where the TLS versions offered do not include TLS 1.3.
 
+The secrets used for protecting Initial packets do not change during the
+connection, even after receiving a Retry.  A server that sends a Retry
+therefore needs to either remember Initial protection keys or save them
</pre>
<p>Shouldn't this just say that the server already needs to have access to the original destination CID because of the <code>original_connection_id</code> transport parameter? I don't think the server needs to remember/encode initial keys on top of 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/2878?email_source=notifications&amp;email_token=AFTOJK62RGJ7HTB7RLYZE2DQATAR7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMD6I#pullrequestreview-264552953">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FAKU7FCVPQJ2SQSDQATAR7ANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RKBSC23RYTQOLCGTQATAR7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMD6I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK62RGJ7HTB7RLYZE2DQATAR7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMD6I#pullrequestreview-264552953",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK62RGJ7HTB7RLYZE2DQATAR7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMD6I#pullrequestreview-264552953",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34c99f2be45_28283fb22d2cd96c5386b--


From nobody Sun Jul 21 13:47:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6CB8E12014A for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:47:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OexB2o3i0eSf for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 13:47: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 71BF5120147 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 13:47:48 -0700 (PDT)
Date: Sun, 21 Jul 2019 13:47:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563742067; bh=Ygqhezd4OIUGZXjhOMz/BeWEC3IiAOjjyToe9WEsa9s=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=GvwCf2BAveyLL3bLgF+DvcuK9wfGxwcPT+1npxgfwYA5XiE83qr/75XHPy53JH41l VAeHNXW+CraWHo01F/ufJ3F862hR+RIqG37x1t9laCSzorLtDjdsbTeKQgj/BnkXMy 92k5nPRpC8WQwR4MfVwBma954h9fszH5XX93f2AA=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5YAQODRAUBOIWTSZ53IIA7HEVBNHHBYEBQTA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2920@github.com>
Subject: [quicwg/base-drafts] Should server TP encryption be a requirement for the cryptographic handshake? (#2920)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34cf7338f54_75443f91a72cd968102966a"; 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/V8LM6A2YC2nZC-QUxF0L5hL902I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 20:47:51 -0000

----==_mimepart_5d34cf7338f54_75443f91a72cd968102966a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The TPs might carry a stateless reset token, which must be encrypted in transit. Section 7 lists some requirements for the handshake, including authentication of the TPs, yet does not include any mention of encrypting them from server to client. Should it? 

cc @DavidSchinazi @martinthomson 

-- 
You are receiving 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/2920
----==_mimepart_5d34cf7338f54_75443f91a72cd968102966a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The TPs might carry a stateless reset token, which must be encrypted in transit. Section 7 lists some requirements for the handshake, including authentication of the TPs, yet does not include any mention of encrypting them from server to client. Should it?</p>
<p>cc <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=5599133" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</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/2920?email_source=notifications&amp;email_token=AFTOJK6NUPO4IQX77QCYJ2DQATDPHA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQGCMA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6OQFAUZUFMPRH4JLTQATDPHANCNFSM4IFTM7HA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZW6QZAVKJXYMT3EM3QATDPHA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQGCMA.gif" height="1" width="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/2920?email_source=notifications\u0026email_token=AFTOJK6NUPO4IQX77QCYJ2DQATDPHA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQGCMA",
"url": "https://github.com/quicwg/base-drafts/issues/2920?email_source=notifications\u0026email_token=AFTOJK6NUPO4IQX77QCYJ2DQATDPHA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAQGCMA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34cf7338f54_75443f91a72cd968102966a--


From nobody Sun Jul 21 14:35:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C12AF120150 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:35:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k7bl8KWCPI7s for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:35:08 -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 45D3112014F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:35:08 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:35:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563744907; bh=CWmiCvRXOTbhAQ5SBzmrZ5UcDV/JXz+B/2rBgvUZbVw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jiWYZZ1r4IaCfF5MO/4hCzA1zh1czUo1U3jgPX6CnnUab/D/oW+oFDNjU6Pq2ideP 0p11PYjhAUELJWe5bD9o+fgHdsFpkyBqnSV+zZ2/chx95w+bCliEBGiKKJ+A4szR5Y FQVI087i32yRkOqoLlaWfjyrgGCEafkHyuomwLE0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EYRKMTRXVIAVB52N3IIGQXEVBNHHBYEARTM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2918/review/264555409@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2918@github.com>
References: <quicwg/base-drafts/pull/2918@github.com>
Subject: Re: [quicwg/base-drafts] Fix language around CC on migration (#2918)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34da8b361ce_48fa3fa0a62cd964538624"; 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/EpyfoD3Bjm--9A4zQNeQFtZ_X7U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:35:10 -0000

----==_mimepart_5d34da8b361ce_48fa3fa0a62cd964538624
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett approved this pull request.

Thanks, LGTM

>  immediately reset the congestion controller and round-trip time estimator for
-the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOVERY}}).
-
-An endpoint MUST NOT return to the send rate used for the previous path unless
-it is reasonably sure that the previous send rate is valid for the new path.
-For instance, a change in the client's port number is likely indicative of a
-rebinding in a middlebox and not a complete change in path.  This determination
-likely depends on heuristics, which could be imperfect; if the new path capacity
-is significantly reduced, ultimately this relies on the congestion controller
-responding to congestion signals and reducing send rates appropriately.
+the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOVERY}})
+unless it has knowledge that the previous send rate or round-trip time estimate
+is valid for the new path.  For instance, an endpoint might infer that a change
+in only the client's port number is likely indicative of a NAT rebinding,
+meaning that the new path is likely to have similar bandwidth and round-trip
+time. This determination might be a heuristic and is likely to be imperfect.  If

```suggestion
time. This determination is likely to be imperfect.  If
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2918#pullrequestreview-264555409
----==_mimepart_5d34da8b361ce_48fa3fa0a62cd964538624
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@ianswett</b> approved this pull request.</p>=0D
=0D
<p>Thanks, LGTM</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2918#discussi=
on_r305637078">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  immediately reset the congestion controll=
er and round-trip time estimator for=0D
-the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOV=
ERY}}).=0D
-=0D
-An endpoint MUST NOT return to the send rate used for the previous path =
unless=0D
-it is reasonably sure that the previous send rate is valid for the new p=
ath.=0D
-For instance, a change in the client&#39;s port number is likely indicat=
ive of a=0D
-rebinding in a middlebox and not a complete change in path.  This determ=
ination=0D
-likely depends on heuristics, which could be imperfect; if the new path =
capacity=0D
-is significantly reduced, ultimately this relies on the congestion contr=
oller=0D
-responding to congestion signals and reducing send rates appropriately.=0D=

+the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOV=
ERY}})=0D
+unless it has knowledge that the previous send rate or round-trip time e=
stimate=0D
+is valid for the new path.  For instance, an endpoint might infer that a=
 change=0D
+in only the client&#39;s port number is likely indicative of a NAT rebin=
ding,=0D
+meaning that the new path is likely to have similar bandwidth and round-=
trip=0D
+time. This determination might be a heuristic and is likely to be imperf=
ect.  If=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-time. This determination might be a heuristic=
 and is likely to be imperfect.  If=0D
+time. This determination is likely to be imperfect.  If=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/2918?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK2QVKGHBOAMLZWKF43QATJAXA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMXEI#pullrequestreview-264555409=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK2LMQ53TU2CQ5FZYOLQATJAXANCNFSM4IFTHRZQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZPQT7Z=
UK6KGIEEN33QATJAXA5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMXEI.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/2918?email_source=3D=
notifications\u0026email_token=3DAFTOJK2QVKGHBOAMLZWKF43QATJAXA5CNFSM4IFT=
HRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CMXEI#pullrequestreview-264555409",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2918?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2QVKGHBOAMLZWKF43QATJAXA5CNFSM4IFTHR=
Z2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
MXEI#pullrequestreview-264555409",=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_5d34da8b361ce_48fa3fa0a62cd964538624--


From nobody Sun Jul 21 14:40:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E1347120150 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:40:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yQBjthAIMHF5 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:40: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 E1559120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:40:23 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:40:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745223; bh=HP3vg5xqXL0Eu82RNuN4je8PCBEPGl8yb9jye6Jw8lI=; h=Date:From:To:Subject:From; b=QP3yVijzyNBplU0fEUmt2B8AizKsn4tBGmYka3Tu1Kq/89FCw/ou5OE0lEjxeSkv/ JErRfh1MdNqVwI3+5U0H6GdbdVKMXDIQc48sPWGtCEaraUFXI76TeAUmcUsLLALM5K MFby+NB1THbpybtfgm999j5cDMHpEOHditxh6GNg=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/f079e9-08ea0f@github.com>
Subject: [quicwg/base-drafts] 94e02c: Typo in change log
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dsV-btO4CPenet30UvYDj5J-v9c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:40:26 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 94e02c1f34af486b0ef3cce6530ee1609da754b5
      https://github.com/quicwg/base-drafts/commit/94e02c1f34af486b0ef3cce6530ee1609da754b5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-20 (Sat, 20 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Typo in change log


  Commit: 407928b26fd9e4fcb2efbef4f70a39eb8a466cd6
      https://github.com/quicwg/base-drafts/commit/407928b26fd9e4fcb2efbef4f70a39eb8a466cd6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  PTO should always send an ack-eliciting packet


  Commit: e0c0ed2898f55e5dc4feac38520bcb272c6276f2
      https://github.com/quicwg/base-drafts/commit/e0c0ed2898f55e5dc4feac38520bcb272c6276f2
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify resetting congestion control


  Commit: 02c8c88c142ca4ac8a1b08c1c16b333cbf1a38f8
      https://github.com/quicwg/base-drafts/commit/02c8c88c142ca4ac8a1b08c1c16b333cbf1a38f8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2917 from quicwg/close2685

Clarify resetting congestion control


  Commit: d3c66d26508da8ad76829342bd75c7e844cf02ca
      https://github.com/quicwg/base-drafts/commit/d3c66d26508da8ad76829342bd75c7e844cf02ca
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Up to two full-sized datagrams, not packets (#2915)

* Up to two full-sized datagrams, not packets

Now that the PTO retransmits Initial and Handshake data, it's possible and likely desirable to bundle multiple QUIC packets in a single datagram.  This change makes it clear that is allowed.

* Update draft-ietf-quic-recovery.md

Co-Authored-By: MikkelFJ <mikkelfj@gmail.com>

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>

* Update draft-ietf-quic-recovery.md

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>

* Fix a long line


  Commit: 114b20f4b2accf4f76a242a34d5f620cd48f4e3d
      https://github.com/quicwg/base-drafts/commit/114b20f4b2accf4f76a242a34d5f620cd48f4e3d
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add rationale for why ack-eliciting


  Commit: 0d684171abcf439c7fc5fa6ff95433826682a108
      https://github.com/quicwg/base-drafts/commit/0d684171abcf439c7fc5fa6ff95433826682a108
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #2912 from quicwg/ianswett-pto-ack-eliciting

PTO should always send an ack-eliciting packet


  Commit: 08ea0f58a7562c1c091e7678e20654bb283cbc07
      https://github.com/quicwg/base-drafts/commit/08ea0f58a7562c1c091e7678e20654bb283cbc07
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into ianswett-fix-loss-detection


Compare: https://github.com/quicwg/base-drafts/compare/f079e9dc3664...08ea0f58a756


From nobody Sun Jul 21 14:40:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 579981200D6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:40:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yiyIV1iTrDBt for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:40: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 D4158120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:40:31 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:40:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745231; bh=zK8dQSdYU0exe4a/5t3RhkjXbFQPfgZ9mio2ogh+E6Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jhoi+anL4kCS1f+sg6PBZ7m5EYIk891+yUjSdXRSdNVHesM2/w2x98985aug7rrSS 3wY28AQfdDwDX3HzC0iuSA0KEGb+hsYWT1TBNB4S0MQhOHBPExxnWUiCuOQENoKCMR lMeJem76VS+SRRCKn+ghgs32uhykALB4DWh4gS2I=
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/2907/push/3839885139@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dbcf16d51_67933fb7968cd95c45603"; 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/XnxkJ6zCqy2JTf0FKYrToXxRJnQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:40:33 -0000

----==_mimepart_5d34dbcf16d51_67933fb7968cd95c45603
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

08ea0f58a7562c1c091e7678e20654bb283cbc07  Merge branch 'master' into ianswett-fix-loss-detection


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907/files/f079e9dc3664d2abe4e5a0b1b615c826fbd9be15..08ea0f58a7562c1c091e7678e20654bb283cbc07

----==_mimepart_5d34dbcf16d51_67933fb7968cd95c45603
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/08ea0f58a7562c1c091e7678e20654bb283cbc07">08ea0f5</a>  Merge branch &#39;master&#39; into ianswett-fix-loss-detection</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/2907/files/f079e9dc3664d2abe4e5a0b1b615c826fbd9be15..08ea0f58a7562c1c091e7678e20654bb283cbc07?email_source=notifications&amp;email_token=AFTOJK4Q3DLN6XNB5FVEUITQATJU7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGUYTGOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2EDZDGJEHWBGGK6D3QATJU7ANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYVCVTJZ2BHSDGB243QATJU7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGUYTGOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907/files/f079e9dc3664d2abe4e5a0b1b615c826fbd9be15..08ea0f58a7562c1c091e7678e20654bb283cbc07?email_source=notifications\u0026email_token=AFTOJK4Q3DLN6XNB5FVEUITQATJU7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGUYTGOI",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/f079e9dc3664d2abe4e5a0b1b615c826fbd9be15..08ea0f58a7562c1c091e7678e20654bb283cbc07?email_source=notifications\u0026email_token=AFTOJK4Q3DLN6XNB5FVEUITQATJU7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGUYTGOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34dbcf16d51_67933fb7968cd95c45603--


From nobody Sun Jul 21 14:41:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1820B1200D6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:41:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 xI0YvlN73i0P for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:41: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 D27D7120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:41:26 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:41:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745285; bh=7S+PXbMjVanDHZKXkKmnf39NzeyWQHIfcyoXeP0EkDI=; h=Date:From:To:Subject:From; b=hjlOsJqBbwNtOOuZcSi5Hnlv0TKwjeYsBamYX/wQtUyEm8DDeT5ttAumtuAYmLEs2 FzYikVABLk7ro4Z8ZBpM8BEtl9SJRbgXLTVgzYJXegSCD7NHVfs5VhmUpbER9TIuL8 OEWcpl0mlc1CF1vkiZeh043PijQcy1/L/zJyOUhc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/08ea0f-59c3af@github.com>
Subject: [quicwg/base-drafts] 59c3af: 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/OjDNvxXrs3YtmmhNl99td0O3bx8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:41:28 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 59c3af3f32313b54f31eacd6d64df1ad19c1210c
      https://github.com/quicwg/base-drafts/commit/59c3af3f32313b54f31eacd6d64df1ad19c1210c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 Sun Jul 21 14:41:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C8C3A12014A for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:41:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k9bNbXCtJSXu for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:41: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 0DC201200D6 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:41:34 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:41:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745293; bh=O6OwrvEJILI9NmmRzvz3ywwfctkg3QlTdVNXUDZqAGg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xHk7J0XR67qun7CINFOlbRHKFD9/AXbqEBTmA9qZO0ZOuc4uiHXdzOMEA+qXr0CHz m5gqZi08bBy0jdQXjCqyHBBAnQcVCvCMKbgxYp2rnd2FGeubW3SYzpGevbZnfKCmWZ dLg8PnGYX/aCG6DsKl8c/h06Ka9n3zEwUM4udLKE=
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/2907/push/3839886438@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2907@github.com>
References: <quicwg/base-drafts/pull/2907@github.com>
Subject: Re: [quicwg/base-drafts] Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dc0d25ea1_6d1e3f94798cd9603065b3"; 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/TLMS8w7HpouUJl8QTfFsLo6HkQ8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:41:36 -0000

----==_mimepart_5d34dc0d25ea1_6d1e3f94798cd9603065b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

59c3af3f32313b54f31eacd6d64df1ad19c1210c  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/2907/files/08ea0f58a7562c1c091e7678e20654bb283cbc07..59c3af3f32313b54f31eacd6d64df1ad19c1210c

----==_mimepart_5d34dc0d25ea1_6d1e3f94798cd9603065b3
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/59c3af3f32313b54f31eacd6d64df1ad19c1210c">59c3af3</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/2907/files/08ea0f58a7562c1c091e7678e20654bb283cbc07..59c3af3f32313b54f31eacd6d64df1ad19c1210c?email_source=notifications&amp;email_token=AFTOJK6ZEG76JGKC7OW6TXTQATJY3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGY2DGOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6JMG5SHZJEIK4TJTDQATJY3ANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGW7AIQO6YZ4ZQZW3QATJY3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGY2DGOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2907/files/08ea0f58a7562c1c091e7678e20654bb283cbc07..59c3af3f32313b54f31eacd6d64df1ad19c1210c?email_source=notifications\u0026email_token=AFTOJK6ZEG76JGKC7OW6TXTQATJY3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGY2DGOA",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/08ea0f58a7562c1c091e7678e20654bb283cbc07..59c3af3f32313b54f31eacd6d64df1ad19c1210c?email_source=notifications\u0026email_token=AFTOJK6ZEG76JGKC7OW6TXTQATJY3A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHAZTSOBYGY2DGOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34dc0d25ea1_6d1e3f94798cd9603065b3--


From nobody Sun Jul 21 14:41:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3687512014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:41:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iIYeSwcRqFHX for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:41: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 E5D1C120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:41:50 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:41:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745310; bh=BNJwzlr0yy8nWfcxNMFDKmWtB5e49uEmyDvIFYicDho=; h=Date:From:To:Subject:From; b=1/zkoeSrcHdOFDKon33Ww8B4HGnEtwkF8RaKeXVq9kLsqN9VJgyIghT2LV9kdzVVE qosUppKZSf13XJqFXclqZkSj61+gRoHklZCNIrUGCzCNygmAcVpgS350t1TiS+NyVy DLFuaUkOHePShn+Ru0elLwUmqqoYi/lSIBQYEgnw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d18c02-d65d44@github.com>
Subject: [quicwg/base-drafts] d65d44: Script updating gh-pages from 08ea0f58. [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/hxerQhJj3zWoiBHTXOk_lvoYbDE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:41:52 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d65d44a5afc74e4cb005d753003df4342c5d96a7
      https://github.com/quicwg/base-drafts/commit/d65d44a5afc74e4cb005d753003df4342c5d96a7
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.html
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.txt
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.html
    M ianswett-fix-loss-detection/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 08ea0f58. [ci skip]



From nobody Sun Jul 21 14:42:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D00D212014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:42:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZKHIICIo0CpS for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:42:36 -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 798F7120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:42:36 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:42:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745355; bh=uKJBfndbncvJz6pT2Zn4rgJTy0Sxyx/YgKjrilxArE0=; h=Date:From:To:Subject:From; b=QNwu7usWoBq31ftFhYvEgbQtGRtNgyzsIQAUQqw7Uos1VxlahBXyVLU0s68PSzyFP X1sKG6g9zsHy8+XffQKEIeEd6v7nwWjtMUg7peSPioreplTRxfSQgstdw32TQa7uXV tjE9LP/OwGlqX1u5ZPCoo4N1AMXEyyuLcZc1ngpw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d65d44-0fc1a3@github.com>
Subject: [quicwg/base-drafts] 0fc1a3: Script updating gh-pages from 59c3af3f. [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/ipanJakFEGT4a2ABuOYc4rsevqg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:42:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0fc1a3ee8d30444f1f8bf360b69003cfc68dea1f
      https://github.com/quicwg/base-drafts/commit/0fc1a3ee8d30444f1f8bf360b69003cfc68dea1f
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.html
    M ianswett-fix-loss-detection/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 59c3af3f. [ci skip]



From nobody Sun Jul 21 14:43:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 262E312014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:43:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id P54wqLdBqzpS for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:43: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 CEB87120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:43:40 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:43:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745419; bh=hLmlDnNZUq29RSj3rNAyx4g2n00gqZfqMStBxkdDK9E=; h=Date:From:To:Subject:From; b=elVUrVT4rwrsPEK8Byjm6wje3mA955thQ7rAQGx/tZ9RPNUuG/Uuen5YWAzhdL3nU pxVaOy8RZKXrr9Mj4u1m2z3TxmhEL6+b4cYvMywg7wcsYkPLDNeCc/7CQkjK7IPm8V +aaEznh3bZL2M3eiK65GklJ1IQNwZ1IC8ne8dA18=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0fc1a3-ce7009@github.com>
Subject: [quicwg/base-drafts] ce7009: Script updating issues at 2019-07-21T21:43:33Z. [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/eofo2JJ8T8PXsoopqPFDRniQjsk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:43:42 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ce7009ba912e9acf8e0d8d211c7d5d591e4bd041
      https://github.com/quicwg/base-drafts/commit/ce7009ba912e9acf8e0d8d211c7d5d591e4bd041
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-21T21:43:33Z. [ci skip]



From nobody Sun Jul 21 14:44:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7345612014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:44:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vIgTG--9lZzx for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:44: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 37012120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:44:17 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:44:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745456; bh=iojpZyVfWuSw/CH5XzKLmnEyfyvIEvW1/hZEGwcVK1E=; h=Date:From:To:Subject:From; b=Cx7D0/yqNHW7pgyxoaUtOspDmm7RrcuZrrnm5GyAeEp0+Xcfp953Mm2JucXncSc7h quFrNoh3OhDGFNZSfmqPSsQpxRj1Hy6RyaDaI1CyzHgOJrZr2Whr6Ly84qU4VWU0Es WA5MOHgPEMeYVqQNtHVPqKfopibyfzKf4J+seOCg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ce7009-237c85@github.com>
Subject: [quicwg/base-drafts] 237c85: Script updating issues at 2019-07-21T21:44:10Z. [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/8cnZs92Lc5cayP7N7GJ8kCMd-f8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:44:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 237c8583f633262705e109e9560ec635eb8d87c2
      https://github.com/quicwg/base-drafts/commit/237c8583f633262705e109e9560ec635eb8d87c2
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-21T21:44:10Z. [ci skip]



From nobody Sun Jul 21 14:44:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ECA6612014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:44:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QtDazgVnwH3Y for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:44:36 -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 7BD3C120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:44:36 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:44:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745475; bh=S0ldVla22YaKk4eQanzRCRjnNEpoPbfZ6rnh01Y2pvI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bB84LOb0dSnkJ0gZgQ3Q8li8+3godmS8fhqU6cbffXpFY+7QMv4Kt0dJrDF5tTHne vxqs4r/wTct5HLQ0NNVoxv87OZVoXAdc6bxXgtT91g/9s6EJ41WOMx1ZMAV9J5ZOSl YVPoiRYZFM1ldJtABIW/RS7jgbkfSgAFicvQ+2fA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IGXPV656XS5RXF653IIHUHEVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264555725@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dcc3babbc_38cd3fb6cd6cd96480275"; 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/bmDRZcexvmUtFrkbwvO2YecLv50>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:44:38 -0000

----==_mimepart_5d34dcc3babbc_38cd3fb6cd6cd96480275
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



>  following three values: the minimum value observed over the lifetime of the
-connection (min_rtt), an exponentially-weighted moving average (smoothed_rtt),
-and the variance in the observed RTT samples (rttvar).
+congestion control context (min_rtt), an exponentially-weighted moving average

We never define this, but isn't the RTT estimator a subset of the congestion control context?  Also, we only use RTT estimator once in this document at the moment.

Possibly I should use path for all of these now, against @erickinnear suggestion?  Also, path is much shorter than "congestion control context"

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919#discussion_r305637430
----==_mimepart_5d34dcc3babbc_38cd3fb6cd6cd96480275
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2919#discussion_r305637430">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  following three values: the minimum value observed over the lifetime of the
-connection (min_rtt), an exponentially-weighted moving average (smoothed_rtt),
-and the variance in the observed RTT samples (rttvar).
+congestion control context (min_rtt), an exponentially-weighted moving average
</pre>
<p>We never define this, but isn't the RTT estimator a subset of the congestion control context?  Also, we only use RTT estimator once in this document at the moment.</p>
<p>Possibly I should use path for all of these now, against <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=32474881" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/erickinnear">@erickinnear</a> suggestion?  Also, path is much shorter than "congestion control context"</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications&amp;email_token=AFTOJKZCGPYKP35IQBV22GTQATKEHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZTI#discussion_r305637430">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYCXYZ7DNCAJSKT3M3QATKEHANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYTMKN4TKVTH3X3KYDQATKEHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJKZCGPYKP35IQBV22GTQATKEHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZTI#discussion_r305637430",
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJKZCGPYKP35IQBV22GTQATKEHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZTI#discussion_r305637430",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34dcc3babbc_38cd3fb6cd6cd96480275--


From nobody Sun Jul 21 14:45:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6855112014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 4k2abTHX7KLj for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45:13 -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 6F105120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:45:13 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:45:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745512; bh=GWkOrFj4MwJGDEVD8fLVMN+iRicCkLnadJlJYHLAy54=; h=Date:From:To:Subject:From; b=JdynDelaTiHHl3qdYTDG3j+BFA5EOKZwbMLOkqw7crSkvEWH7IbxL8WoGM3tIBt7S RS7HMcko7Xkjcla7I3MUoWWa4kZWbs8JPrX8L85A+o5YCSdhJObysM02pOvrP+mEgx uKk0ROS+TuU/c2VF7+zHOv7w+HslV9Bkv4VfWi0Y=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-rtt/eead85-32ee7e@github.com>
Subject: [quicwg/base-drafts] 32ee7e: 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/tc8_lX7CoCS-VXBTtcGi2sycAqk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:45:16 -0000

  Branch: refs/heads/ianswett-min-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 32ee7e524d6582a317cb4ec3ffbd23263a6040d0
      https://github.com/quicwg/base-drafts/commit/32ee7e524d6582a317cb4ec3ffbd23263a6040d0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 Sun Jul 21 14:45:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F1698120150 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PrCsNrkAwOMN for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45: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 61D6712014F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:45:21 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:45:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745520; bh=Ybq8npTRpQQ1VzEcZpQeSV6KTvVJq3NrCcJPPS1wxq4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nT8Bkp9gbuXzMWFFFaWU1C+HRGmdznLuRm48CJ1zr4vHaGNYljgaez439bJedORN6 DuBuX3yRNgoJiHKVvtnZxF/xI2bFwC3i7G/YKE0icIWgDoUTj5svn9I9TQbElmt0nh 80rfa4Ay2TTcFI2TjlSMnCC2g3tfDpcclMxh54hI=
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/2919/push/3839890922@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dcf09abe7_693d3fb0afccd9645979c2"; 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/FSK9pF0Q4KxpF_2mduKCzZoOJfg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:45:23 -0000

----==_mimepart_5d34dcf09abe7_693d3fb0afccd9645979c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

32ee7e524d6582a317cb4ec3ffbd23263a6040d0  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/2919/files/eead856d0a445f35be1f55f0823c759a53ab9eab..32ee7e524d6582a317cb4ec3ffbd23263a6040d0

----==_mimepart_5d34dcf09abe7_693d3fb0afccd9645979c2
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/32ee7e524d6582a317cb4ec3ffbd23263a6040d0">32ee7e5</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/2919/files/eead856d0a445f35be1f55f0823c759a53ab9eab..32ee7e524d6582a317cb4ec3ffbd23263a6040d0?email_source=notifications&amp;email_token=AFTOJKZETN2JSIYZK6QLOY3QATKHBA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGA4TEMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2H5HAZGLSJUMN46U3QATKHBANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3AZEQUFV36RJHVEYLQATKHBA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGA4TEMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919/files/eead856d0a445f35be1f55f0823c759a53ab9eab..32ee7e524d6582a317cb4ec3ffbd23263a6040d0?email_source=notifications\u0026email_token=AFTOJKZETN2JSIYZK6QLOY3QATKHBA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGA4TEMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2919/files/eead856d0a445f35be1f55f0823c759a53ab9eab..32ee7e524d6582a317cb4ec3ffbd23263a6040d0?email_source=notifications\u0026email_token=AFTOJKZETN2JSIYZK6QLOY3QATKHBA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGA4TEMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34dcf09abe7_693d3fb0afccd9645979c2--


From nobody Sun Jul 21 14:45:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1A331120098 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZCfoqgFVrwd1 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45:40 -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 0D0CD12014F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:45:40 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:45:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745539; bh=OEaRgmVdw2773+1WFFOaFRGI/Mm1bHH1IVfBbUW9blc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cuQAvgnaQ67GwcMOEobYrks0qOvZK6wES4VO7QrycKXdD5X2UJf87vYBOLHkTrvxv wiu2rZRTQtaNVuqqiPkHxsu8zzZ4uRSP00Gxit7G3rExtCuMyE4ZOfFUjpTGDnQ53g Z4c42r07G2Ly0qDUuL2pnErJOC4/l6ucOxcLr0dU=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32MCXCJYKLZDZVNY53IIHYHEVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264555767@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dd035026e_51883fc8c60cd964793570"; 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/4aEf82vE3-2S7EIZ2ZaMsA5rkW0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:45:42 -0000

----==_mimepart_5d34dd035026e_51883fc8c60cd964793570
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -410,11 +417,11 @@ endpoint:
   min_rtt.  This limits the underestimation that a misreporting peer can cause
   to the smoothed_rtt.
 
-On the first RTT sample in a connection, the smoothed_rtt is set to the
-latest_rtt.
+On the first RTT sample in a congestion control context, the smoothed_rtt is

path?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919#discussion_r305637470
----==_mimepart_5d34dd035026e_51883fc8c60cd964793570
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2919#discussion_r305637470">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -410,11 +417,11 @@ endpoint:
   min_rtt.  This limits the underestimation that a misreporting peer can cause
   to the smoothed_rtt.
 
-On the first RTT sample in a connection, the smoothed_rtt is set to the
-latest_rtt.
+On the first RTT sample in a congestion control context, the smoothed_rtt is
</pre>
<p>path?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications&amp;email_token=AFTOJK4OPLIAEO3NVIVW2CDQATKIHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ5Y#discussion_r305637470">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5OSYPGOPT6DWKYENLQATKIHANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5U4CZ62C34K3RQZ6DQATKIHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ5Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK4OPLIAEO3NVIVW2CDQATKIHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ5Y#discussion_r305637470",
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK4OPLIAEO3NVIVW2CDQATKIHA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ5Y#discussion_r305637470",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34dd035026e_51883fc8c60cd964793570--


From nobody Sun Jul 21 14:45:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5D7CC120098 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.373
X-Spam-Level: 
X-Spam-Status: No, score=-6.373 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_PASS=-0.001, T_SPF_HELO_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 cWv0Vo2gK2Qi for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:45:46 -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 C7619120150 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:45:45 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:45:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745545; bh=qI9+TRxbJNI6T+5BdGxLnnkfycuG4DCcNS3dCxFXFsQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lrJnOYiUTswiHR5BH8hNsVYOV6dScRBJPPi8kJ5Lr9+de6Sa/RgY4tQqWqcs66+q/ /U0VL1sxo0Ilkw7IJkn08/yDyLu+gkCetio5mwaVnvN1B6Mnt4tv5Z1QJ2XjeR+znd 4a7vBYWMuN/hd0H+mVT7gl7w534x/dc1IxruH8/Y=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5RQSZLF3EAYM2MD6N3IIHYTEVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264555773@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dd091d29f_39933ffa0c0cd9602837cc"; 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/i46IaPfZxdWwrCTXJRTbpm7o6R8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:45:47 -0000

----==_mimepart_5d34dd091d29f_39933ffa0c0cd9602837cc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



>  
 smoothed_rtt and rttvar are computed as follows, similar to {{?RFC6298}}.  On
-the first RTT sample in a connection:
+the first RTT sample in a congestion control context:

path?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919#discussion_r305637474
----==_mimepart_5d34dd091d29f_39933ffa0c0cd9602837cc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2919#discussion_r305637474">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
 smoothed_rtt and rttvar are computed as follows, similar to {{?RFC6298}}.  On
-the first RTT sample in a connection:
+the first RTT sample in a congestion control context:
</pre>
<p>path?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications&amp;email_token=AFTOJK45LKHZKQA3DHREL73QATKITA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ7I#discussion_r305637474">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZPD5O4QCPB2NCZ4G3QATKITANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5MTHUMSNHQT6QYBKLQATKITA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK45LKHZKQA3DHREL73QATKITA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ7I#discussion_r305637474",
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK45LKHZKQA3DHREL73QATKITA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CMZ7I#discussion_r305637474",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34dd091d29f_39933ffa0c0cd9602837cc--


From nobody Sun Jul 21 14:46:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3071512014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 h6e4mKfpRZFT for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46:00 -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 A229F120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:46:00 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:45:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745559; bh=kTXjVk13O9XKg3f6lqmuJL2hkDGcp8skoV51IdUzITI=; h=Date:From:To:Subject:From; b=ZdllRE7SOT8OJONBN25F8PXfACrkdNETy0lsCdrtem6NjP4+xSSCEf3jlc/SRoBhe WVDoM74xJlLb7gKoSfgJuu9aDvB46tIehEu0e6JeXGQNe0tt/sU0pbkJefpEQ00RHA //eZsOfNlzb9s36+PPNJL2xTEAZCaXH2B4WmcQJk=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-rtt/32ee7e-f0169f@github.com>
Subject: [quicwg/base-drafts] f0169f: 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/WBDi2l9mBuUYjl73pgplqvH2-Eo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:46:02 -0000

  Branch: refs/heads/ianswett-min-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: f0169fe1e0568effdc7307ea1613750e70b06056
      https://github.com/quicwg/base-drafts/commit/f0169fe1e0568effdc7307ea1613750e70b06056
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 Sun Jul 21 14:46:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1669812014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4WEXZsMYryg1 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46: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 50BDD120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:46:08 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:46:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745567; bh=I3xzpmaFxYOGO2qg4EmImLESB8EHgIOBswzEtcFYpzE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YfQVHVa6j3PEdKeZJrzyWFJbY1JyZXcUqXIOqcpHBM+o2qtR4u/RHiaPgRfxbmVjs 1w0O3nIwua7mOyuw9LoHYN91d9GGLdYGGRvKbS4KM2ef3V/hUCytFYhrBk1Em4AOVc fiTGxVJwNZNZTVjaLL0+8xhWN20hvVsBIAgS8Lu0=
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/2919/push/3839891874@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dd1f55b38_38a43fb6cd6cd964483082"; 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/SLGnTh5tQeKZKBt9mP3n6tUtS74>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:46:10 -0000

----==_mimepart_5d34dd1f55b38_38a43fb6cd6cd964483082
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

f0169fe1e0568effdc7307ea1613750e70b06056  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/2919/files/32ee7e524d6582a317cb4ec3ffbd23263a6040d0..f0169fe1e0568effdc7307ea1613750e70b06056

----==_mimepart_5d34dd1f55b38_38a43fb6cd6cd964483082
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/f0169fe1e0568effdc7307ea1613750e70b06056">f0169fe</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/2919/files/32ee7e524d6582a317cb4ec3ffbd23263a6040d0..f0169fe1e0568effdc7307ea1613750e70b06056?email_source=notifications&amp;email_token=AFTOJKYJYL6TFX3ZCBOMZ3TQATKJ7A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGE4DONA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ODONREHKKEMRC4Y3QATKJ7ANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5JN3TQPFERBIEXX5DQATKJ7A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGE4DONA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919/files/32ee7e524d6582a317cb4ec3ffbd23263a6040d0..f0169fe1e0568effdc7307ea1613750e70b06056?email_source=notifications\u0026email_token=AFTOJKYJYL6TFX3ZCBOMZ3TQATKJ7A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGE4DONA",
"url": "https://github.com/quicwg/base-drafts/pull/2919/files/32ee7e524d6582a317cb4ec3ffbd23263a6040d0..f0169fe1e0568effdc7307ea1613750e70b06056?email_source=notifications\u0026email_token=AFTOJKYJYL6TFX3ZCBOMZ3TQATKJ7A5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGE4DONA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34dd1f55b38_38a43fb6cd6cd964483082--


From nobody Sun Jul 21 14:46:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 80240120150 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 GLCul82t5cL3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46: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 0F3F8120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:46:25 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:46:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745584; bh=k6WBU1eYYPaM5nSVTwLwJnsBBv+2p+LCqbgqpqDY5uo=; h=Date:From:To:Subject:From; b=iocS/20s1AX/p0pVP3CQz8f2rSAxrAvQ4LrztEubb0Dteiht56BIQHkhI6VMA3YCQ w4Enfp37Tvsgc3hTVHXI+ionDAdke0E5uzx2bgBi0Lz9aiTMSNZq0z9uRNTzITteYY rfmWo+MuGWGNlH75bdlfrrzzz5vkcQ8W72wpgdSY=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-rtt/f0169f-9c1e11@github.com>
Subject: [quicwg/base-drafts] 9c1e11: 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/rwBHYPvxGtyOghWxs9MIBhNoBn8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:46:27 -0000

  Branch: refs/heads/ianswett-min-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9c1e11a0221952729437f0692ca8a079b4102523
      https://github.com/quicwg/base-drafts/commit/9c1e11a0221952729437f0692ca8a079b4102523
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  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 Sun Jul 21 14:46:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E54EC120098 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7haDvHHW5Uul for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46: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 676A512014F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:46:25 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:46:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745584; bh=MyGl4mvYL7cDOdlbWQHt6+1FRzYU3iqchKzDdBJg4/I=; h=Date:From:To:Subject:From; b=DSshSEGX3d87vKP1G3XyBqswn+zUSG3/BTWi/XU2YzUUR+Ak5Ckh6MlspKg10huGD TB9+U1SkhNbEuNzUJK3L+cspYHnyeF7LeTGd2Ons/f1Km6tUOrbHophlDDXHoGdvci xVX4qUWKgbsMre+QCKAkG+95XF6DkdlkeWqBxLlY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/237c85-d5d80b@github.com>
Subject: [quicwg/base-drafts] d5d80b: Script updating gh-pages from 32ee7e52. [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/KzVN9_UKYL15vCnmWLTyQ8HvXoY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:46:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d5d80bd55ca3aad214c23abfece4be19d0eb0ac8
      https://github.com/quicwg/base-drafts/commit/d5d80bd55ca3aad214c23abfece4be19d0eb0ac8
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-min-rtt/draft-ietf-quic-recovery.html
    M ianswett-min-rtt/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 32ee7e52. [ci skip]



From nobody Sun Jul 21 14:46:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A461312014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tVzxKwax1lyG for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:46: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 6DDB3120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:46:32 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:46:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745592; bh=N2DcWzptLfnsQSivO71MfWpfKgbjbBBs0DQnLnyEGlk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yZS5LJlfmCdM/vwzvEMamBNvHlUECzmdMUZrEcA/MIZnRDvvaVsVIVq/B2bODD4wV TynUGsODrSAigsCnUkn2bvWP6DeA3UfLfjptdQgkSD0/mpSq6MZI/AHBf+p8bZ1UKl OTpTb3/mrduDEDBGUtKpwE1jRgHivxvqzNrHjNW0=
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/2919/push/3839892386@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dd37db245_28173fb22d2cd96c8773c7"; 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/dAhhjh5-xuqtRxm7bEFJx417ipg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:46:34 -0000

----==_mimepart_5d34dd37db245_28173fb22d2cd96c8773c7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

9c1e11a0221952729437f0692ca8a079b4102523  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/2919/files/f0169fe1e0568effdc7307ea1613750e70b06056..9c1e11a0221952729437f0692ca8a079b4102523

----==_mimepart_5d34dd37db245_28173fb22d2cd96c8773c7
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/9c1e11a0221952729437f0692ca8a079b4102523">9c1e11a</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/2919/files/f0169fe1e0568effdc7307ea1613750e70b06056..9c1e11a0221952729437f0692ca8a079b4102523?email_source=notifications&amp;email_token=AFTOJKYTREHQYFYAN43RPZ3QATKLPA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGIZTQNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4BA4WW3XPJCV57MW3QATKLPANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5M3GF2AIW45YNWKTQATKLPA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGIZTQNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919/files/f0169fe1e0568effdc7307ea1613750e70b06056..9c1e11a0221952729437f0692ca8a079b4102523?email_source=notifications\u0026email_token=AFTOJKYTREHQYFYAN43RPZ3QATKLPA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGIZTQNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2919/files/f0169fe1e0568effdc7307ea1613750e70b06056..9c1e11a0221952729437f0692ca8a079b4102523?email_source=notifications\u0026email_token=AFTOJKYTREHQYFYAN43RPZ3QATKLPA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGIZTQNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34dd37db245_28173fb22d2cd96c8773c7--


From nobody Sun Jul 21 14:47:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A9006120150 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:47:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 EZ-yLGnkWfXn for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:47: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 04E4612014F for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:47:27 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:47:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745646; bh=06icPE1N6i8+0B+L6a41/CqE/X22Y8mddImjDpgsHgM=; h=Date:From:To:Subject:From; b=SgSIY0hjJfN/UnIn1JNe11+mDZ1iBoS29+z0vKD6tnBSRaADlee8toHNj0d83NdVF TKSzrvDL/VS8IXBglDpbLwGsUi9JDhHejOoIFo0xXa+jifMg2ARiyrb+EJQU2Inf/L Vq0UmAB3q7oHSFwGiXI5sIpJr+oYjlLj4HfZTxSc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-rtt/9c1e11-c1604a@github.com>
Subject: [quicwg/base-drafts] c1604a: 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/vhMLjRayezO630PtV0p2X2SjHgY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:47:29 -0000

  Branch: refs/heads/ianswett-min-rtt
  Home:   https://github.com/quicwg/base-drafts
  Commit: c1604ae7dcaed0cd4cf624c946e5470bb887efa4
      https://github.com/quicwg/base-drafts/commit/c1604ae7dcaed0cd4cf624c946e5470bb887efa4
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Sun Jul 21 14:47:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A3E4212014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:47:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SnpERm4Echpq for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:47: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 53472120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:47:34 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:47:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745653; bh=s4Y9mAPgda3tF7I8ygZY6uEHlD27jNY+ZfRZ0AL+BPE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=l25e9iDj0htvbS3Jhl24di+xwSVOTV/9VoI3R0SNHuMLswF6+t+aC4rHF95LF4/zN 5m//FiqC3ECUct5HtWFZv7uhexTYST1O5fXYDZo45xWKUFXGXt2MVput9bl74DwcID +Zsqvak6a0IBvQ5yY2p8Y8vH3/emshXeKU2YQsPg=
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/2919/push/3839893576@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34dd7599bdd_177e3f8cfd0cd9646506a6"; 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/sGbHuuhyZgpE4Ufn6VcZCQpiPJY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:47:36 -0000

----==_mimepart_5d34dd7599bdd_177e3f8cfd0cd9646506a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

c1604ae7dcaed0cd4cf624c946e5470bb887efa4  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/2919/files/9c1e11a0221952729437f0692ca8a079b4102523..c1604ae7dcaed0cd4cf624c946e5470bb887efa4

----==_mimepart_5d34dd7599bdd_177e3f8cfd0cd9646506a6
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/c1604ae7dcaed0cd4cf624c946e5470bb887efa4">c1604ae</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/2919/files/9c1e11a0221952729437f0692ca8a079b4102523..c1604ae7dcaed0cd4cf624c946e5470bb887efa4?email_source=notifications&amp;email_token=AFTOJK67NLVVPFDDD2CD5HDQATKPLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGM2TONQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5Z25NAWV7QT2Y5ZFTQATKPLANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7R6VVNJVOVZRB4NNLQATKPLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGM2TONQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919/files/9c1e11a0221952729437f0692ca8a079b4102523..c1604ae7dcaed0cd4cf624c946e5470bb887efa4?email_source=notifications\u0026email_token=AFTOJK67NLVVPFDDD2CD5HDQATKPLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGM2TONQ",
"url": "https://github.com/quicwg/base-drafts/pull/2919/files/9c1e11a0221952729437f0692ca8a079b4102523..c1604ae7dcaed0cd4cf624c946e5470bb887efa4?email_source=notifications\u0026email_token=AFTOJK67NLVVPFDDD2CD5HDQATKPLA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRWGAYTQMKQOVZWQIZTHAZTSOBZGM2TONQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34dd7599bdd_177e3f8cfd0cd9646506a6--


From nobody Sun Jul 21 14:48:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C0E5212014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:48:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 z-VJUQ78WfJN for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:48: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 23637120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:48:39 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:48:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745718; bh=w2cjNC0/uh6UoqS1iwF/zOlplVbo64POSi4JwqT784E=; h=Date:From:To:Subject:From; b=r9KajjtQZSVri+NMHI7Fkd05DEm2UD7l6HOlzIY14cSaBnZE9cbx9e+/wWSnDwC7W i3UJJJtYeIz7R4iLAxRBenasbO23Wv1HsjUrECn4t22w5I0+de6x70TRdsvqhjxprH 4lseCVmsD77Ulx71WgccMhBqqirPK3sFsPiT40P4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d5d80b-b94533@github.com>
Subject: [quicwg/base-drafts] b94533: Script updating gh-pages from c1604ae7. [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/csdcOZuYNgcgroTnGAmS78DPVW0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:48:41 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b94533d4df226af1b2cf65d3ecd293afc9a227db
      https://github.com/quicwg/base-drafts/commit/b94533d4df226af1b2cf65d3ecd293afc9a227db
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-min-rtt/draft-ietf-quic-recovery.html
    M ianswett-min-rtt/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c1604ae7. [ci skip]



From nobody Sun Jul 21 14:52:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 122A61200D6 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:52:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DmJuf8U-PDhI for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:52:16 -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 9C27E120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:52:16 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:52:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745936; bh=SO3nb0aW7rnpnhYN1WVKTOJSIgvhbtTpne/ZxeFTOrQ=; h=Date:From:To:Subject:From; b=yRF72gU66dTX/0T9QTmYMb9fJEnFUapO/CqeXD5CWkR0Np3YOrjgpZ3e1nfEvCtgs MSGpLHIzXgJdweXWMGoi3xuOOFkWOxmu/78ilOwtot5AQpH0w/8+N3dZ7mYv43LoYA TO4qnVQ0c/LeqLvh6P+pr6i3mdRQkH8EkPTGNONg=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/6aaad3-67067f@github.com>
Subject: [quicwg/base-drafts] 67067f: David's comment
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bNgRThMnalz0XNbf77yTYBOmfCo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:52:18 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 67067f61332c82fff8fdc26d35c8dc8cc76b5a75
      https://github.com/quicwg/base-drafts/commit/67067f61332c82fff8fdc26d35c8dc8cc76b5a75
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  David's comment



From nobody Sun Jul 21 14:52:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4C42312013A for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:52:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CPZUNLj2_1l5 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:52: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 ABE951200D6 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:52:24 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:52:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563745943; bh=EXbe2JF6xkzDQ3PS0zg3DcGx8IQLSAl4+9TSSUjv7RY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Th1Xsv7CGdiuXg7bM9t1hFgFTLfXQ8VOXueRWrknTQSIwNI/52Rg7kkw5EBDmJpgw dNll6SwmbPmMGNdnhU5U+G8xLPL84FlormBuzRbD1TSfvBLSQrGY0Sz6Wtt46AG07p DPEkZ+3/cqP341gUiM40fHi9rulIBYs1jP1FXG20=
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/2878/push/3839899345@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34de97b8510_30e63f8c7d4cd968350159"; 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/HYn1XU715q48uLiJrH4HIDA0yrM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:52:26 -0000

----==_mimepart_5d34de97b8510_30e63f8c7d4cd968350159
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

67067f61332c82fff8fdc26d35c8dc8cc76b5a75  David's comment


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878/files/6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7..67067f61332c82fff8fdc26d35c8dc8cc76b5a75

----==_mimepart_5d34de97b8510_30e63f8c7d4cd968350159
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/67067f61332c82fff8fdc26d35c8dc8cc76b5a75">67067f6</a>  David&#39;s comment</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/2878/files/6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7..67067f61332c82fff8fdc26d35c8dc8cc76b5a75?email_source=notifications&amp;email_token=AFTOJK5YNBX7GSEPFK4WJX3QATLBPA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTSOBZHEZTINI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QPARSF2E3VTUHF53QATLBPANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2PY6XQIFQWCE32ZKTQATLBPA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTSOBZHEZTINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878/files/6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7..67067f61332c82fff8fdc26d35c8dc8cc76b5a75?email_source=notifications\u0026email_token=AFTOJK5YNBX7GSEPFK4WJX3QATLBPA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTSOBZHEZTINI",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/6aaad3e1de4ec7cd0aeb2d3598d5921ddc9f6be7..67067f61332c82fff8fdc26d35c8dc8cc76b5a75?email_source=notifications\u0026email_token=AFTOJK5YNBX7GSEPFK4WJX3QATLBPA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHAZTSOBZHEZTINI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d34de97b8510_30e63f8c7d4cd968350159--


From nobody Sun Jul 21 14:54:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 904B412014F for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:54:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XuR7ArXyBsBr for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 14:54:03 -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 1696E120098 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 14:54:03 -0700 (PDT)
Date: Sun, 21 Jul 2019 14:54:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563746041; bh=qooHLoB2QilObl9p8/2mRq8zluQpPI/vx7LpEwI9SQw=; h=Date:From:To:Subject:From; b=OG8mEKCUElZq7xESXJfOHX7thPqDOEqr/ffocwvfEBrDC1JU+yD2aghZLQNIcXknr kxbA1gvW9VIhuLMI6EQstoe2Y6l6Yt2EfqtLWT/grdly8mTSqaLcfUCl2n12bR4L+3 Q7JcmBNJ8in1Z4seQ2LZ1XTA9nXTu6aVi+8HrnIc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b94533-d5be02@github.com>
Subject: [quicwg/base-drafts] d5be02: Script updating gh-pages from 67067f61. [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/kYlnjEjvh4YXVXBuJ1ko7Fwm9Ew>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 21:54:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d5be02230122431039ec7fe49b762dc5bed19738
      https://github.com/quicwg/base-drafts/commit/d5be02230122431039ec7fe49b762dc5bed19738
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-21 (Sun, 21 Jul 2019)

  Changed paths:
    M ianswett-initial-secrets-constant/draft-ietf-quic-http.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-http.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-invariants.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-invariants.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-qpack.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-qpack.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-recovery.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-recovery.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 67067f61. [ci skip]



From nobody Sun Jul 21 15:16:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 57BC11201D4 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 15:16:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nzFtganxnxrR for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 15:16:14 -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 8FFB8120173 for <quic-issues@ietf.org>; Sun, 21 Jul 2019 15:16:14 -0700 (PDT)
Date: Sun, 21 Jul 2019 15:16:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563747373; bh=jCmulIROmcB7JODU6kM3Mg88TAw+nQXl3FbhEqhlbRk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MXxirhSAD9yubbo9nrmOMoeisNlAui/Ple6LJmIdO0HvZTd0ZsSwuoKRTw4Yrd8oM zeBpAWLMKLJFQRz76WNlVb/HYss9EzSgUJ/zHO20TR3LFeNDUN1dmDtfOieYxTLCnC 0d1I/YoLXW/083n/XQNMt+jXhP/x73rQaOJ5TzMU=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3W4ZKRIV4YS4W2J653IILK3EVBNHHBYEBQTA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2920/513592099@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2920@github.com>
References: <quicwg/base-drafts/issues/2920@github.com>
Subject: Re: [quicwg/base-drafts] Should server TP encryption be a requirement for the cryptographic handshake? (#2920)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34e42dc7b1a_23153fc8c60cd9646635dc"; 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/4wk3QGNqWlwrGIP-xOPk0qWppXI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 22:16:21 -0000

----==_mimepart_5d34e42dc7b1a_23153fc8c60cd9646635dc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This makes sense to me. The TLS document ensures that the server's transport parameters are encrypted so an editorial PR changing the transport doc to require that should be sufficient.

-- 
You are receiving 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/2920#issuecomment-513592099
----==_mimepart_5d34e42dc7b1a_23153fc8c60cd9646635dc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This makes sense to me. The TLS document ensures that the server's transport parameters are encrypted so an editorial PR changing the transport doc to require that should be sufficient.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2920?email_source=notifications&amp;email_token=AFTOJKZLZLE7ZJPQ7SSYLSTQATN23A5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OMWIY#issuecomment-513592099">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ONO6WU4CHYGNO3FDQATN23ANCNFSM4IFTM7HA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3TBGXLE7IYKPZEGTQATN23A5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OMWIY.gif" height="1" width="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/2920?email_source=notifications\u0026email_token=AFTOJKZLZLE7ZJPQ7SSYLSTQATN23A5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OMWIY#issuecomment-513592099",
"url": "https://github.com/quicwg/base-drafts/issues/2920?email_source=notifications\u0026email_token=AFTOJKZLZLE7ZJPQ7SSYLSTQATN23A5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2OMWIY#issuecomment-513592099",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34e42dc7b1a_23153fc8c60cd9646635dc--


From nobody Sun Jul 21 15:17:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C33CC120048 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 15:17:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SLZqhKsC-Op3 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 15:17: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 5CAF112001E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 15:17:23 -0700 (PDT)
Date: Sun, 21 Jul 2019 15:17:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563747442; bh=5Qm62rfvB7MsaRHefnutD2rTTuJTYpSUP77XyHJlejE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jngAMlsKo2u00mKFtjTY3SMrr1HfHo7qXN2lyUT428YBKMe6TGGb7qFYerrM2jon0 twnriXHcL+0xE43wv9AE69/y2gSMzot9hfSEsoPKrJMV1dCIGJUgLx+2Liq5GjZQ3z yvnhTiuPSUySjBdlvcFAURIRbDj8a4i4F9MbhgBo=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYO3N4VSY3ZNKOWLTV3IILPFEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/264556871@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34e47279cd2_2eaa3fadaf4cd96061583a"; 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/gEIlEIMbuq7QmtEJllqMl7Nk_rw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 22:17:25 -0000

----==_mimepart_5d34e47279cd2_2eaa3fadaf4cd96061583a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -805,8 +805,8 @@ packets even where the TLS versions offered do not include TLS 1.3.
 
 The secrets used for protecting Initial packets do not change during the
 connection, even after receiving a Retry.  A server that sends a Retry
-therefore needs to either remember Initial protection keys or save them
-in the Retry token.
+therefore needs to either remember the original connection ID and Initial
+protection keys or save the original connection ID the Retry token.

typo: connection ID *in* the Retry token.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878#pullrequestreview-264556871
----==_mimepart_5d34e47279cd2_2eaa3fadaf4cd96061583a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2878#discussion_r305638519">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -805,8 +805,8 @@ packets even where the TLS versions offered do not include TLS 1.3.
 
 The secrets used for protecting Initial packets do not change during the
 connection, even after receiving a Retry.  A server that sends a Retry
-therefore needs to either remember Initial protection keys or save them
-in the Retry token.
+therefore needs to either remember the original connection ID and Initial
+protection keys or save the original connection ID the Retry token.
</pre>
<p>typo: connection ID <em>in</em> the Retry token.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications&amp;email_token=AFTOJK4BS26JGVSQUPMLOBTQATN7FA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CNCRY#pullrequestreview-264556871">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6RF2KR54ZIKJ3GZPDQATN7FANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZNNTCNWNPZGT2NPJLQATN7FA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CNCRY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK4BS26JGVSQUPMLOBTQATN7FA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CNCRY#pullrequestreview-264556871",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK4BS26JGVSQUPMLOBTQATN7FA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CNCRY#pullrequestreview-264556871",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d34e47279cd2_2eaa3fadaf4cd96061583a--


From nobody Sun Jul 21 15:22:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A20AA120045 for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 15:22:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id shyE1EIMD-cl for <quic-issues@ietfa.amsl.com>; Sun, 21 Jul 2019 15:22:43 -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 1264012001E for <quic-issues@ietf.org>; Sun, 21 Jul 2019 15:22:43 -0700 (PDT)
Date: Sun, 21 Jul 2019 15:22:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563747762; bh=7lKs9g9vMVAPFUu6UlflTNxe/NZ4/mI+dI48tOP7tQI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ALw7RprhFCdadWR/++eMAKS1M4+vIROaeoqBX35upmTgaWdQ5TiBp2Ho1AZG4IFdm CQV/gS7pFn6cGK3rbjjuwdO0mtXlkjDtxcAcSJ/gZxp7r9c4gNW1goTGSx18wti71a APHLpnZ1oGJeQioBjeWsvO8KxjHLB/nz+NmBL7Sc=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6QCAW63XM6UOANBD53IIMDFEVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264557064@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d34e5b2400e7_4fc03fda89ccd9601449951"; 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/vkdFYQQdw7m8w1TT6ZMpR_1WqVQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Jul 2019 22:22:45 -0000

----==_mimepart_5d34e5b2400e7_4fc03fda89ccd9601449951
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

erickinnear commented on this pull request.=0D
=0D
=0D
=0D
> @@ -410,11 +417,11 @@ endpoint:=0D
   min_rtt.  This limits the underestimation that a misreporting peer can=
 cause=0D
   to the smoothed_rtt.=0D
 =0D
-On the first RTT sample in a connection, the smoothed_rtt is set to the=0D=

-latest_rtt.=0D
+On the first RTT sample in a congestion control context, the smoothed_rt=
t is=0D
=0D
Elsewhere don=E2=80=99t we discuss resetting a congestion control context=
? It seems like that often lines up with a path, but they don=E2=80=99t h=
ave to be the same thing. It seems like you=E2=80=99re saying that RTT is=
n=E2=80=99t part of congestion control (which sounds totally valid but we=
 then need some better way to word that)?=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/2919#discussion_r305638679=

----==_mimepart_5d34e5b2400e7_4fc03fda89ccd9601449951
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@erickinnear</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2919#discussi=
on_r305638679">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -410,11 +417,11 @@ endpoint:=0D
   min_rtt.  This limits the underestimation that a misreporting peer can=
 cause=0D
   to the smoothed_rtt.=0D
 =0D
-On the first RTT sample in a connection, the smoothed_rtt is set to the=0D=

-latest_rtt.=0D
+On the first RTT sample in a congestion control context, the smoothed_rt=
t is=0D
</pre>=0D
<p>Elsewhere don=E2=80=99t we discuss resetting a congestion control cont=
ext? It seems like that often lines up with a path, but they don=E2=80=99=
t have to be the same thing. It seems like you=E2=80=99re saying that RTT=
 isn=E2=80=99t part of congestion control (which sounds totally valid but=
 we then need some better way to word that)?</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/2919?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK47I2PQSEMXTXDYFH3QATOTFA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7CNECA#discussion_r305638679">view=
 it on GitHub</a>, or <a href=3D"https://github.com/notifications/unsubsc=
ribe-auth/AFTOJKZRFFDSMRUHDKUXS5DQATOTFANCNFSM4IFTJCXQ">mute the thread</=
a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZLMQHM3WY6GE=
BVSPLQATOTFA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFS=
XPKTDN5WW2ZLOORPWSZGOB7CNECA.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/2919?email_source=3D=
notifications\u0026email_token=3DAFTOJK47I2PQSEMXTXDYFH3QATOTFA5CNFSM4IFT=
JCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7CNECA#discussion_r305638679",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK47I2PQSEMXTXDYFH3QATOTFA5CNFSM4IFTJC=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7C=
NECA#discussion_r305638679",=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_5d34e5b2400e7_4fc03fda89ccd9601449951--


From nobody Mon Jul 22 04:56:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B18D412013D for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 04:56:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 HJaFdDP98w6t for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 04:56: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 7DCF0120111 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 04:56:31 -0700 (PDT)
Date: Mon, 22 Jul 2019 04:56:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563796590; bh=glh8szZ+jZCjjJb8+wyYEieON92EUG9aU+/ezCXKk1g=; h=Date:From:To:Subject:From; b=JWvw2FzsCPtda9ULHa4M5nFztOQEGT+exLwapuPY36bhSlNM+Jp06T1/MPcb8FYna K3cKicfmoUFAorJRanSgGQ5L+g/Rek5T3BhlDbxe6wgbuSPtp+j5WfMvtJXHv/mJ+h EedJZM++ZHmOHmwQRPf3UgRLcSpYZbIBO/9J4DEY=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/67067f-8efdac@github.com>
Subject: [quicwg/base-drafts] 8efdac: in the Retry token
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mLDLZ0Dt8kGCnmANgIpc9sezOFA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 11:56:33 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8efdac85fb5e0181b4b1aa3bc825c461f659c049
      https://github.com/quicwg/base-drafts/commit/8efdac85fb5e0181b4b1aa3bc825c461f659c049
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  in the Retry token



From nobody Mon Jul 22 04:56:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 38FC4120111 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 04:56:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 IvXX3x2OsGKD for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 04:56: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 A68CB12006F for <quic-issues@ietf.org>; Mon, 22 Jul 2019 04:56:39 -0700 (PDT)
Date: Mon, 22 Jul 2019 04:56:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563796598; bh=Ax2u46Ps3dSVwQaF+Jr0EQ2VDfQbxhke1RIid99Aw1Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=J06J6w2sTg9dDAEsT4s2O8zG9giobuYn2mHVipsK5Ebu2+kOJ91cmIbkOF9YRm1G5 cnghjKCrkq+e2SYKDKU5n57ZyOrfyjiL9NAVO2Y3FPGZ/PoRqcCz5y0nQKPAPWlTk9 M2XHeOtJupEqe4orVqTjQ9EBLin/yDT7UsphXUnc=
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/2878/push/3841778980@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35a47694687_1c3b3fc83aacd964279286"; 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/gLaBHczL9jv3hs88LHdrnFlpya8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 11:56:41 -0000

----==_mimepart_5d35a47694687_1c3b3fc83aacd964279286
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

8efdac85fb5e0181b4b1aa3bc825c461f659c049  in the Retry token


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878/files/67067f61332c82fff8fdc26d35c8dc8cc76b5a75..8efdac85fb5e0181b4b1aa3bc825c461f659c049

----==_mimepart_5d35a47694687_1c3b3fc83aacd964279286
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/8efdac85fb5e0181b4b1aa3bc825c461f659c049">8efdac8</a>  in the Retry token</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/2878/files/67067f61332c82fff8fdc26d35c8dc8cc76b5a75..8efdac85fb5e0181b4b1aa3bc825c461f659c049?email_source=notifications&amp;email_token=AFTOJK4MBL2HG7IQIVAKHILQAWN7NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHA2DCNZXHA4TQMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5QXXYF3F6MYE2QBZDQAWN7NANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYCEHISHNHEZIVI3MDQAWN7NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHA2DCNZXHA4TQMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878/files/67067f61332c82fff8fdc26d35c8dc8cc76b5a75..8efdac85fb5e0181b4b1aa3bc825c461f659c049?email_source=notifications\u0026email_token=AFTOJK4MBL2HG7IQIVAKHILQAWN7NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHA2DCNZXHA4TQMA",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/67067f61332c82fff8fdc26d35c8dc8cc76b5a75..8efdac85fb5e0181b4b1aa3bc825c461f659c049?email_source=notifications\u0026email_token=AFTOJK4MBL2HG7IQIVAKHILQAWN7NA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZTHA2DCNZXHA4TQMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d35a47694687_1c3b3fc83aacd964279286--


From nobody Mon Jul 22 04:57:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7DFE6120250 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 04:57:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1357DSBstCSY for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 04:57:45 -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 167AB12006F for <quic-issues@ietf.org>; Mon, 22 Jul 2019 04:57:45 -0700 (PDT)
Date: Mon, 22 Jul 2019 04:57:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563796664; bh=zWzfeUu7oOVQuYVtLArcFBwU4LmuQjpK+itq83e/V5U=; h=Date:From:To:Subject:From; b=RdLRn0MUZRm+dlXMwxSsh/0Zvrg0N4Sr4l6rhUV8f8rxoweFZ94DL+L6s/V9jSRpX 76Dw4aAc+4xY/LPW7B+5gm8J/E4Dd+vSbL0NIIJkTnTQ9OP6NChL5CyW55ooVeLg3R m/CQeRvxkq6oBdCyGZ3xXhBqViSCdWBNB8TirrUY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d5be02-305043@github.com>
Subject: [quicwg/base-drafts] 305043: Script updating gh-pages from 8efdac85. [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/h3gYGoa85MGtXLg4HcuB6XMROUA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 11:57:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 305043f88f657ee1eacfac7d621d2abb53b66033
      https://github.com/quicwg/base-drafts/commit/305043f88f657ee1eacfac7d621d2abb53b66033
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M ianswett-initial-secrets-constant/draft-ietf-quic-http.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-http.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-invariants.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-invariants.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-qpack.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-qpack.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-recovery.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-recovery.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-tls.txt
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.html
    M ianswett-initial-secrets-constant/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8efdac85. [ci skip]



From nobody Mon Jul 22 05:00:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5AC9B120261 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:00:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DzAiBHMpVCHj for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:00: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 9C39B120256 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 04:59:54 -0700 (PDT)
Date: Mon, 22 Jul 2019 04:59:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563796793; bh=C03g6fu7yoYYT00tjc21jlciKD3bVUukLIksSKvMnhA=; h=Date:From:To:Subject:From; b=oYOBGaKULcxRK1PXPkEyxgz1l5zu+Sk3i/Tau9GICPTJ+P1lmaWa/1KGP2UwA0Htt aX453ktWdEjKUWazCItvY6zuNW9mtfsM9zjTT2kYDR0ZnsBq7dnCsUvjUgT1haVBI6 JpvbqzQKAlDM+t4rk2BjlVnKtOhZSPDkl3O6MLmk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/305043-ae06fe@github.com>
Subject: [quicwg/base-drafts] ae06fe: Script updating issues at 2019-07-22T11:59:47Z. [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/5xOK0eV74nWMstA23ZyO2KceWCc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 12:00:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ae06fe3e49db4a394a3588249023d8341ef2a5cf
      https://github.com/quicwg/base-drafts/commit/ae06fe3e49db4a394a3588249023d8341ef2a5cf
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-22T11:59:47Z. [ci skip]



From nobody Mon Jul 22 05:33:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7B86E120059 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:33:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 0mePkC7H2InI for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:33: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 0C20F12001A for <quic-issues@ietf.org>; Mon, 22 Jul 2019 05:32:59 -0700 (PDT)
Date: Mon, 22 Jul 2019 05:32:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563798778; bh=BrYhrVljyF10/eCi7BU9oRPzt06eCL3oB1ifcGO19K8=; h=Date:From:To:Subject:From; b=PNUjRlYi+VBIZpVPm5ANFv+4vzwiOqYrAPbU8+TJ9QJByfAbD57nsUuqRAw0qfOnr yiWtnww6LYxGySyTB7aCPEz4KYpEIHVPenvuo/UPjqakPOpY27dlknwpPI6PqQTy3J XPq7UPe0IWjkI0JzeDJV0oZoo2u5i3NQs/vtkCqE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/encrypt-tps/000000-0a7c28@github.com>
Subject: [quicwg/base-drafts] 0a7c28: Confidentiality for server transport parameters
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lYEWfnDuyWJCn-97rIhS7iwBW58>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 12:33:01 -0000

  Branch: refs/heads/encrypt-tps
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0a7c2875e2ecc6e08c097c5f8ced96265be51ec0
      https://github.com/quicwg/base-drafts/commit/0a7c2875e2ecc6e08c097c5f8ced96265be51ec0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Confidentiality for server transport parameters

Closes #2920.



From nobody Mon Jul 22 05:33:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EFEC6120043 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:33:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 e9m_KAEaagjU for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:33:31 -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 4725112001A for <quic-issues@ietf.org>; Mon, 22 Jul 2019 05:33:31 -0700 (PDT)
Date: Mon, 22 Jul 2019 05:33:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563798810; bh=RSe35MA/ho2uDbGYeAAXaza89Jhv/JWa4lwHry5U9HU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=XAr6U+lKs6iOR14B+4gnEVnaQCyTKropvNfIiNmICXSwtuuVzN06JEVCObsu01Txx cYV19+M7Frz6uIi7S/dMgJSUQv+tQM6tvHsvsUW46iwu6Cs+6l0U9PMAAjC8zU3M6Z 1EVwvqHCn82ssKlixuBzCogwYon1AIEhddBMftyw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMYESKUZOV62JEJ4V3ILPZVEVBNHHBYE7THE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2921@github.com>
Subject: [quicwg/base-drafts] Confidentiality for server transport parameters (#2921)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35ad1a36106_8f93ffa0d2cd96c2376e5"; 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/dy94314PaMnx5_rSIU4wMcYd-dg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 12:33:33 -0000

----==_mimepart_5d35ad1a36106_8f93ffa0d2cd96c2376e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closes #2920.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2921

-- Commit Summary --

  * Confidentiality for server transport parameters

-- File Changes --

    M draft-ietf-quic-transport.md (4)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2921.patch
https://github.com/quicwg/base-drafts/pull/2921.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/2921

----==_mimepart_5d35ad1a36106_8f93ffa0d2cd96c2376e5
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 #2920.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470823064" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2920" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2920/hovercard" href="https://github.com/quicwg/base-drafts/issues/2920">#2920</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/2921'>https://github.com/quicwg/base-drafts/pull/2921</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Confidentiality for server transport parameters</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2921/files#diff-0">draft-ietf-quic-transport.md</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2921.patch'>https://github.com/quicwg/base-drafts/pull/2921.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2921.diff'>https://github.com/quicwg/base-drafts/pull/2921.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/2921?email_source=notifications&amp;email_token=AFTOJK5DJSUHR4SXODJQMIDQAWSJVA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAT6M4Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SBB7OSQ4UYA4ORXLQAWSJVANCNFSM4IFYEEBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4OTYPVLAXUPVJNVH3QAWSJVA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAT6M4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJK5DJSUHR4SXODJQMIDQAWSJVA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAT6M4Q",
"url": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJK5DJSUHR4SXODJQMIDQAWSJVA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAT6M4Q",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d35ad1a36106_8f93ffa0d2cd96c2376e5--


From nobody Mon Jul 22 05:34:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7C6B120043 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:34:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K0Od_HtPdPtk for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:34: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 7CB3E12001A for <quic-issues@ietf.org>; Mon, 22 Jul 2019 05:34:04 -0700 (PDT)
Date: Mon, 22 Jul 2019 05:34:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563798843; bh=on9n+03vLcnf/Z1bY0kSv3l81yH1u5UjfGVkQMvToRY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=l5S12dkFljFX522wJvPOGkZR8lfrK9X0lffu4FZgVSU/BmJS+1/nX9ljOjLDQHndz q86eubIacnREAayBotZPb0rkTZYAEzxZvsflXETL6EVdhzm+R9w4qdkTcawx2kWEKx lT1zzfJLAKVunP/2wrONBs7r3ZRi+10j9gnM1x4Q=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33WMJN635V6ADL3XF3ILP3XEVBNHHBYEBQTA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2920/513772262@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2920@github.com>
References: <quicwg/base-drafts/issues/2920@github.com>
Subject: Re: [quicwg/base-drafts] Should server TP encryption be a requirement for the cryptographic handshake? (#2920)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35ad3b4b2e6_2c003fa9fb8cd9641950a4"; 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/-g5bmufXwfPkqWseg5mEY8t4rhA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 12:34:06 -0000

----==_mimepart_5d35ad3b4b2e6_2c003fa9fb8cd9641950a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Good catch.  Marking as design so that we can consensus call this, but it's arguably editorial.

-- 
You are receiving 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/2920#issuecomment-513772262
----==_mimepart_5d35ad3b4b2e6_2c003fa9fb8cd9641950a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Good catch.  Marking as design so that we can consensus call this, but it's arguably editorial.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2920?email_source=notifications&amp;email_token=AFTOJK6O5WF6O4RKCHY34CLQAWSLXA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2PYVZQ#issuecomment-513772262">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5M6PXANXM5QWIPV53QAWSLXANCNFSM4IFTM7HA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7X534T6SUUXHT2ID3QAWSLXA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2PYVZQ.gif" height="1" width="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/2920?email_source=notifications\u0026email_token=AFTOJK6O5WF6O4RKCHY34CLQAWSLXA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2PYVZQ#issuecomment-513772262",
"url": "https://github.com/quicwg/base-drafts/issues/2920?email_source=notifications\u0026email_token=AFTOJK6O5WF6O4RKCHY34CLQAWSLXA5CNFSM4IFTM7HKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2PYVZQ#issuecomment-513772262",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d35ad3b4b2e6_2c003fa9fb8cd9641950a4--


From nobody Mon Jul 22 05:34:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 17351120043 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:34:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5Lk187_0CrU5 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:34:23 -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 C716412001A for <quic-issues@ietf.org>; Mon, 22 Jul 2019 05:34:23 -0700 (PDT)
Date: Mon, 22 Jul 2019 05:34:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563798863; bh=ateWyHQ6gv3gAJWTl5i265gDG9i+KYdHaTgTbSfbGFU=; h=Date:From:To:Subject:From; b=qzt3dE/P8GDWDVpZBI025IsHxzfXRWHcBQMakgK4jOFY0TF6a4/EQQ9FD3t6PIXn2 XOgVF5bDzoRe3uWVt1rkHqS+J31DLGY6F24jJyN379KoAE97Q42P64MHihpvM+vfwS zt1hcZIZRXzj5VE4No/Bv/dqffVdsqxQguwqNISQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ae06fe-64e7ce@github.com>
Subject: [quicwg/base-drafts] 64e7ce: Script updating gh-pages from 0a7c2875. [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/J85vpk2e2143NCWuVdnclbAd3Mg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 12:34:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 64e7ce0bb71ac480b7d86c1e1ccaac16830a1c55
      https://github.com/quicwg/base-drafts/commit/64e7ce0bb71ac480b7d86c1e1ccaac16830a1c55
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    A encrypt-tps/draft-ietf-quic-http.html
    A encrypt-tps/draft-ietf-quic-http.txt
    A encrypt-tps/draft-ietf-quic-invariants.html
    A encrypt-tps/draft-ietf-quic-invariants.txt
    A encrypt-tps/draft-ietf-quic-qpack.html
    A encrypt-tps/draft-ietf-quic-qpack.txt
    A encrypt-tps/draft-ietf-quic-recovery.html
    A encrypt-tps/draft-ietf-quic-recovery.txt
    A encrypt-tps/draft-ietf-quic-tls.html
    A encrypt-tps/draft-ietf-quic-tls.txt
    A encrypt-tps/draft-ietf-quic-transport.html
    A encrypt-tps/draft-ietf-quic-transport.txt
    A encrypt-tps/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 0a7c2875. [ci skip]



From nobody Mon Jul 22 05:35:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1FD41120043 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:35:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iqmzUlooHuaf for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:35:53 -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 E683012001A for <quic-issues@ietf.org>; Mon, 22 Jul 2019 05:35:52 -0700 (PDT)
Date: Mon, 22 Jul 2019 05:35:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563798952; bh=Ngwiv+6JtRBgEGDvNtmatBU9DNKeFja9jC5GnSjqjVo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ty8RPn86z+9ATw7BF1v2rB/LCmWBxaDyvSERJES26iHo8Mom9+rvwnUzoLEUT2ify LhzCkjn5KZ4+etR/pHcx/LgJu2x4q/iFER45n8sKNh/Nkrd5zuV/BY6S7C/SxBjf8Q SwfIaLuX1EHocVDPNOxQTBcS9HIUwBL8uRWK2Bo0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2VJHR4XOKDJDUXP2F3ILQCREVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264783871@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35ada8260b6_44fc3fe9b66cd95c14684f"; 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/5RBKHN0zkp9Dqfb4P1qNTrCKST0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 12:35:54 -0000

----==_mimepart_5d35ada8260b6_44fc3fe9b66cd95c14684f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -371,16 +371,23 @@ retain sufficient history is an open research question.
 
 ## Estimating min_rtt {#min-rtt}
 
-min_rtt is the minimum RTT observed over the lifetime of the connection.
-min_rtt is set to the latest_rtt on the first sample in a connection, and to the
-lesser of min_rtt and latest_rtt on subsequent samples.
+min_rtt is the minimum RTT observed for a given congestion control context.

When you say "congestion control context", why not "path"?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919#discussion_r305820856
----==_mimepart_5d35ada8260b6_44fc3fe9b66cd95c14684f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2919#discussion_r305820856">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -371,16 +371,23 @@ retain sufficient history is an open research question.
 
 ## Estimating min_rtt {#min-rtt}
 
-min_rtt is the minimum RTT observed over the lifetime of the connection.
-min_rtt is set to the latest_rtt on the first sample in a connection, and to the
-lesser of min_rtt and latest_rtt on subsequent samples.
+min_rtt is the minimum RTT observed for a given congestion control context.
</pre>
<p>When you say "congestion control context", why not "path"?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications&amp;email_token=AFTOJK6POTOUDRNRK2KIEZ3QAWSSRA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EEP7Y#discussion_r305820856">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQPZNYLWNTO7JQ2I3QAWSSRANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XXORNUERCJFUXWVTQAWSSRA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EEP7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK6POTOUDRNRK2KIEZ3QAWSSRA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EEP7Y#discussion_r305820856",
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK6POTOUDRNRK2KIEZ3QAWSSRA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EEP7Y#discussion_r305820856",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d35ada8260b6_44fc3fe9b66cd95c14684f--


From nobody Mon Jul 22 05:38:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0509A1202A9 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:38:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nJ4OUw8nskBW for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 05:38: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 772DA120287 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 05:38:30 -0700 (PDT)
Date: Mon, 22 Jul 2019 05:38:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563799109; bh=+L/jUZm5yIIiyYb155qbgloQzViZCpEollss52qDSAM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p8NvmARaIr6J2eBXuyaTzsubjwDvSdkQyCAMzGx7vLi0FpvALgUsUPW16V5gVJpCy Zq8t9TXkdQf7v3YsAK/4XedF/c2V0es6QrEuRl5+CqW3jp5dE29GHolWKL+3jAV1NK VgQyaoYa+yElITU9yzzJ1SDkFRH7cPVALZxha/wQ=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BVUNCK7KBFCPMXVV3ILQMLEVBNHHBYE7THE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2921/review/264785228@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2921@github.com>
References: <quicwg/base-drafts/pull/2921@github.com>
Subject: Re: [quicwg/base-drafts] Confidentiality for server transport parameters (#2921)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35ae4573c19_21233fb815acd96c497971"; 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/dHyEkIdy5QeCxJyeOpq1ZMxpYBg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 12:38:36 -0000

----==_mimepart_5d35ae4573c19_21233fb815acd96c497971
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/2921#pullrequestreview-264785228
----==_mimepart_5d35ae4573c19_21233fb815acd96c497971
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2921?email_source=notifications&amp;email_token=AFTOJK35MMCGX3YVL2WAR7TQAWS4LA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EE2TA#pullrequestreview-264785228">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLHMFV2MXE6SSSYLLQAWS4LANCNFSM4IFYEEBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3QN5C4REKYXEPNMRLQAWS4LA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EE2TA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJK35MMCGX3YVL2WAR7TQAWS4LA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EE2TA#pullrequestreview-264785228",
"url": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJK35MMCGX3YVL2WAR7TQAWS4LA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EE2TA#pullrequestreview-264785228",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d35ae4573c19_21233fb815acd96c497971--


From nobody Mon Jul 22 07:03:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BA5EE12017E for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:03:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VMn0ekDFU-6D for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:03: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 010761200B5 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 07:03:33 -0700 (PDT)
Date: Mon, 22 Jul 2019 07:03:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563804213; bh=OrasjXAKDGitz807iflR+loHUn8rM9Sehg3xbHway6k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RGP1tQB/EM/bhnhjzAv3p8oqnhrBNWGHeocPnS1z5y+zMGkRiLvinrSdTMKJTt/MI AJSRBmCPXpesmLDG8Un9XJIj8FWfxRV9ZG08hfAwvXGL8psthMXnMjDv0NxJUWrIL4 nelBCW8p+WBPF9ekdFlPgsK27aZwKTS3OEO6QHA0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5OPVZS4OONPHRUPYF3IL2LJEVBNHHBYEA2AU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2919/review/264836512@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2919@github.com>
References: <quicwg/base-drafts/pull/2919@github.com>
Subject: Re: [quicwg/base-drafts] MinRTT for the congestion control context (#2919)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35c234ee2e5_40873f9bd4ccd96812463b2"; 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/ED-l42PCqi5ZwOSt74WvcJTMb4w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 14:03:36 -0000

----==_mimepart_5d35c234ee2e5_40873f9bd4ccd96812463b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -371,16 +371,23 @@ retain sufficient history is an open research question.
 
 ## Estimating min_rtt {#min-rtt}
 
-min_rtt is the minimum RTT observed over the lifetime of the connection.
-min_rtt is set to the latest_rtt on the first sample in a connection, and to the
-lesser of min_rtt and latest_rtt on subsequent samples.
+min_rtt is the minimum RTT observed for a given congestion control context.

Good question, I'll talk with Eric and Jana in person about this one and we can figure out some consistent terminology.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2919#discussion_r305861824
----==_mimepart_5d35c234ee2e5_40873f9bd4ccd96812463b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2919#discussion_r305861824">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -371,16 +371,23 @@ retain sufficient history is an open research question.
 
 ## Estimating min_rtt {#min-rtt}
 
-min_rtt is the minimum RTT observed over the lifetime of the connection.
-min_rtt is set to the latest_rtt on the first sample in a connection, and to the
-lesser of min_rtt and latest_rtt on subsequent samples.
+min_rtt is the minimum RTT observed for a given congestion control context.
</pre>
<p>Good question, I'll talk with Eric and Jana in person about this one and we can figure out some consistent terminology.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications&amp;email_token=AFTOJK2GBJPVZRXWMEDIQLLQAW43JA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ERLIA#discussion_r305861824">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ET5GYSAMKRCWUZ3TQAW43JANCNFSM4IFTJCXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5VJVICZMCV3E3IXHLQAW43JA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ERLIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK2GBJPVZRXWMEDIQLLQAW43JA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ERLIA#discussion_r305861824",
"url": "https://github.com/quicwg/base-drafts/pull/2919?email_source=notifications\u0026email_token=AFTOJK2GBJPVZRXWMEDIQLLQAW43JA5CNFSM4IFTJCX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ERLIA#discussion_r305861824",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d35c234ee2e5_40873f9bd4ccd96812463b2--


From nobody Mon Jul 22 07:09:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 303FA120121 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:09:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2U6P4SQRiq_o for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:09: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 4F5B91200B1 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 07:09:21 -0700 (PDT)
Date: Mon, 22 Jul 2019 07:09:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563804560; bh=ymKnlVzmRNwZPdoRIqEKgRrX8LO/UFkP1FJLbB0U/io=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=g/CtXFTDoOCwi0uUzvb5jCesXq3TgXIvOm+S5x8PQavHozld7FFBV4ypvk1ILukN8 jFxVxWr+kvl8m77XPoHQrR9UNe6NTqedPMMP8jpZtBw6wUGUVQQBJHNjvjpIrsZvrQ jBfeA8SeuWBGxAlPwDPAoDcyJsZPjlTKBh71ll5Y=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CFWI7U5ULPTGCHRV3IL3BBEVBNHHBYE7THE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2921/review/264840309@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2921@github.com>
References: <quicwg/base-drafts/pull/2921@github.com>
Subject: Re: [quicwg/base-drafts] Confidentiality for server transport parameters (#2921)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35c3904255f_30e83fde1b0cd968704224"; 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/4E6-zJ-9V_bG7c21am4X6IdWEmU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 14:09:23 -0000

----==_mimepart_5d35c3904255f_30e83fde1b0cd968704224
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/2921#pullrequestreview-264840309
----==_mimepart_5d35c3904255f_30e83fde1b0cd968704224
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2921?email_source=notifications&amp;email_token=AFTOJK3YUYLG2SHFD2Y7N33QAW5RBA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ESI5I#pullrequestreview-264840309">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7HSAYAC5S3LT3PY6LQAW5RBANCNFSM4IFYEEBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KW4MUER5QFDPWMA3QAW5RBA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ESI5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJK3YUYLG2SHFD2Y7N33QAW5RBA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ESI5I#pullrequestreview-264840309",
"url": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJK3YUYLG2SHFD2Y7N33QAW5RBA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ESI5I#pullrequestreview-264840309",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d35c3904255f_30e83fde1b0cd968704224--


From nobody Mon Jul 22 07:19:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 803C81202EB for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:19:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4Ag4af1eTthP for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:19:26 -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 057411202EC for <quic-issues@ietf.org>; Mon, 22 Jul 2019 07:19:26 -0700 (PDT)
Date: Mon, 22 Jul 2019 07:19:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563805164; bh=5m0jxvtfJdGSvPNSNNOZMs4tDfUHvTO/2+JokJWXtFg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KcPyhgqBx2uqMqAHeq9IY/WaThC09dCN5nZK5wtr7A+VJLpBP8fp7vrPZ9UKDvX2i sW2Lb+Voyb8I07XGubEuEPo2h8qbaA2ZkjjKM45LwuTHcN69z6uf9fL3s56xPjGta6 rJLKb/955iB62Q4AnxbBpRgHxorSVWNJIpTCppZo=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RMAV3KQ5IAELH3OF3IL4GZEVBNHHBXP6EBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/review/264847106@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2878@github.com>
References: <quicwg/base-drafts/pull/2878@github.com>
Subject: Re: [quicwg/base-drafts] Initial secrets do not change after Retry (#2878)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35c5ecc61e7_5d9a3fa997ccd9606230d1"; 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/v7P0bmZH0Ot9NOVK7uwQT4CnJeU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 14:19:32 -0000

----==_mimepart_5d35c5ecc61e7_5d9a3fa997ccd9606230d1
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/2878#pullrequestreview-264847106
----==_mimepart_5d35c5ecc61e7_5d9a3fa997ccd9606230d1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2878?email_source=notifications&amp;email_token=AFTOJK3A6I4CWYTH7NCLALLQAW6WZA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ET6AQ#pullrequestreview-264847106">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3IFKTXD567KXT36Y3QAW6WZANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJX2WPYBOM32DM2LDQAW6WZA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ET6AQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK3A6I4CWYTH7NCLALLQAW6WZA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ET6AQ#pullrequestreview-264847106",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK3A6I4CWYTH7NCLALLQAW6WZA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ET6AQ#pullrequestreview-264847106",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d35c5ecc61e7_5d9a3fa997ccd9606230d1--


From nobody Mon Jul 22 07:21:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CD98E1202DC for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:21:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oUAdCZJtKL18 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 07:21: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 7490D1202BF for <quic-issues@ietf.org>; Mon, 22 Jul 2019 07:21:23 -0700 (PDT)
Date: Mon, 22 Jul 2019 07:21:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563805282; bh=WjfjOjTFFUppr2V7uHalSOc6CJE8ZzrHMew1ToBTs7I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gPj3FYdVG1lsR6AbONPR5A0JAjkbdAU4Y/svcBxv/uiz1w43cX/JU/1ACxjVqVR6y KdR8TVikMuLodTaHxI7yQjvosujK1kLyN/QonXSj8cnVI5RQCGTsFpKrE4xJH71zLw AQQoh2fkAd1gOHoLJzNO+bSuib4Ysf2Xo+3ej2CU=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27PTZXQ7R3JETFAT53IL4OFEVBNHHBYE7THE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2921/review/264848530@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2921@github.com>
References: <quicwg/base-drafts/pull/2921@github.com>
Subject: Re: [quicwg/base-drafts] Confidentiality for server transport parameters (#2921)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d35c6625968f_3bda3f9116acd9607972c6"; 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/WxMIahZmxGMNaWVt8oaCcPamSMY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 14:21:30 -0000

----==_mimepart_5d35c6625968f_3bda3f9116acd9607972c6
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/2921#pullrequestreview-264848530
----==_mimepart_5d35c6625968f_3bda3f9116acd9607972c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2921?email_source=notifications&amp;email_token=AFTOJKZZK6JMUNDVUQA3GBTQAW66FA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EUJEQ#pullrequestreview-264848530">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4W2OQTHVSNAFUAHLTQAW66FANCNFSM4IFYEEBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6MFYUJV44HGA7P7Q3QAW66FA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EUJEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJKZZK6JMUNDVUQA3GBTQAW66FA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EUJEQ#pullrequestreview-264848530",
"url": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJKZZK6JMUNDVUQA3GBTQAW66FA5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7EUJEQ#pullrequestreview-264848530",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d35c6625968f_3bda3f9116acd9607972c6--


From nobody Mon Jul 22 10:34:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E469F12029D for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 10:34:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 WWG7H3sGiGyx for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 10: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 12778120286 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 10:34:46 -0700 (PDT)
Date: Mon, 22 Jul 2019 10:34:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563816885; bh=o6gM7uewiSXsdjEf92j5Bw4xANfons2S9zQGnz5GZLc=; h=Date:From:To:Subject:From; b=veGbPxi9DljNIG4AnzegP/kzNULTLyNcT6UX8dZp2uH/WdW1f5SPAix93BZgrb0Xo tKiKZfvY/vt9rE4on+vj19HZp13e3yCwMsnbwZTkqxiE9e+ARA+6V4Mx2DxGnnokcY G8/LIP9riR4AIfmVjYAErjdgZ0hNjwZMhFEOvx8g=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/priority-diediedie/000000-7c4a6f@github.com>
Subject: [quicwg/base-drafts] 7c4a6f: Remove PRIORITY
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Jn2YIC8n57aP4wjsHUBkJ34KK8Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 17:34:51 -0000

  Branch: refs/heads/priority-diediedie
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7c4a6f4e2a759c477c8a8aa26387167351c38fa4
      https://github.com/quicwg/base-drafts/commit/7c4a6f4e2a759c477c8a8aa26387167351c38fa4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Remove PRIORITY

In all the discussions we have had on this, what has become clear is
that the complexity of the scheme we built in HTTP/2 wasn't well
founded in theory or practice.

Rather than try to port that across, this recognizes that while
prioritization is important, signaling is a problem we haven't solved
yet.

Closes #many issues.



From nobody Mon Jul 22 10:36:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1252D1202DF for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 10:36:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_86lGTlzZy5 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 10:36: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 D165F12031C for <quic-issues@ietf.org>; Mon, 22 Jul 2019 10:36:17 -0700 (PDT)
Date: Mon, 22 Jul 2019 10:36:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563816977; bh=7Cx/XdlEe6YByL4xls9YIt8EsRz6Ky3hmvIteGMDfg8=; h=Date:From:To:Subject:From; b=I4FQT/9aZI3yIRQtO2yJSs0fVOECQ3NGpi0PiBmIh4ms7v4pK2TSqVlckbzHFti3s G7jNmgZdDYiMeA/SEwf/uXzHEZbdnT+EsniChW4L7gLX7hlM928sJ2mMk9+W3+tUlK hJxLzgphESwso0xj5ay4d1hqcSFuz8HA1OqJSxaI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/64e7ce-f6285c@github.com>
Subject: [quicwg/base-drafts] f6285c: Script updating gh-pages from 7c4a6f4e. [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/ocAFH4euGmRXV5vjjUJZ38CliRw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 17:36:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f6285c0d26e8e6be46f9c3c1524daec9d71484e8
      https://github.com/quicwg/base-drafts/commit/f6285c0d26e8e6be46f9c3c1524daec9d71484e8
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M index.html
    A priority-diediedie/draft-ietf-quic-http.html
    A priority-diediedie/draft-ietf-quic-http.txt
    A priority-diediedie/draft-ietf-quic-invariants.html
    A priority-diediedie/draft-ietf-quic-invariants.txt
    A priority-diediedie/draft-ietf-quic-qpack.html
    A priority-diediedie/draft-ietf-quic-qpack.txt
    A priority-diediedie/draft-ietf-quic-recovery.html
    A priority-diediedie/draft-ietf-quic-recovery.txt
    A priority-diediedie/draft-ietf-quic-tls.html
    A priority-diediedie/draft-ietf-quic-tls.txt
    A priority-diediedie/draft-ietf-quic-transport.html
    A priority-diediedie/draft-ietf-quic-transport.txt
    A priority-diediedie/index.html

  Log Message:
  -----------
  Script updating gh-pages from 7c4a6f4e. [ci skip]



From nobody Mon Jul 22 11:40:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B87F71202C5 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 11:40:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, 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 pJ6e8i1nli1z for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 11:40:08 -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 5D8D41202EB for <quic-issues@ietf.org>; Mon, 22 Jul 2019 11:40:08 -0700 (PDT)
Date: Mon, 22 Jul 2019 11:40:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563820807; bh=cCQxXP7rYkHF1hNp0VKrAomQAiOV9Gf4qCJ7t/WavF4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ZJcP9sJLMd1DQALFs+oSHZhsH7HHG6o48xNgLj1istXwp+Z37ZOSaxxEVhG48I2AP myov+FIbiB4q/CbgdXhj5I595X4jOykI8Ig09oX+8xQlebnR6PkD6DWz9hCzjah0kT wXs16VEOv2vYxqb7SdyunHxarCTgeGQAb+baXNDw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64IJXWVKFMV5GZRMV3IM2YPEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922@github.com>
Subject: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3603073afe2_46ba3f91f8ecd96061829d"; 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/8qC-dohvwQ6bjQZTxcQl8JAO1-g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 18:40:19 -0000

----==_mimepart_5d3603073afe2_46ba3f91f8ecd96061829d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In all the discussions we have had on this, what has become clear is
that the complexity of the scheme we built in HTTP/2 wasn't well
founded in theory or practice.

Rather than try to port that across, this recognizes that while
prioritization is important, signaling is a problem we haven't solved
yet.

Closes #many issues.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2922

-- Commit Summary --

  * Remove PRIORITY

-- File Changes --

    M draft-ietf-quic-http.md (278)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2922.patch
https://github.com/quicwg/base-drafts/pull/2922.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/2922

----==_mimepart_5d3603073afe2_46ba3f91f8ecd96061829d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In all the discussions we have had on this, what has become clear is<br>
that the complexity of the scheme we built in HTTP/2 wasn't well<br>
founded in theory or practice.</p>
<p>Rather than try to port that across, this recognizes that while<br>
prioritization is important, signaling is a problem we haven't solved<br>
yet.</p>
<p>Closes #many issues.</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/2922'>https://github.com/quicwg/base-drafts/pull/2922</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove PRIORITY</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2922/files#diff-0">draft-ietf-quic-http.md</a>
    (278)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2922.patch'>https://github.com/quicwg/base-drafts/pull/2922.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2922.diff'>https://github.com/quicwg/base-drafts/pull/2922.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/2922?email_source=notifications&amp;email_token=AFTOJK7UVXDONRIZWAPUTODQAX5IPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAWXP5A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6RMFJYPMUNLJWRP2DQAX5IPANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BG4KCFMYQEJZLLY3QAX5IPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAWXP5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK7UVXDONRIZWAPUTODQAX5IPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAWXP5A",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK7UVXDONRIZWAPUTODQAX5IPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAWXP5A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3603073afe2_46ba3f91f8ecd96061829d--


From nobody Mon Jul 22 11:47:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 859D612012A for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 11:47:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rcyJdELBFgcw for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 11:47:31 -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 39BA7120122 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 11:47:31 -0700 (PDT)
Date: Mon, 22 Jul 2019 11:47:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563821250; bh=kPBxDbUClPq8zq2QU5Y1E1LXDIMAuMndqFU9zzBIjWE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ouGX6S2IKHOhKH8P2cxwZvmbSfgelWSdq2L63Fg1xuZLVRo3PBAVrKnAIwGWtuuT3 8G/RCWb9B8rEjRhh2NolTcjFUMP/tBOJdRWi0wuFI2txr5tVME6MQn0CvYUerBKdYw X4vEoaWTtNq9suP/JEJvcsiwV3gxN5pIOMr1K4EY=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7R7NW76UYBYGPOOCV3IM3UFEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513907015@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3604c253059_4dc53ffdc86cd96879662f"; 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/fX4OE4EJ-TMZ4GVeFZaNOcqrnDE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 18:47:32 -0000

----==_mimepart_5d3604c253059_4dc53ffdc86cd96879662f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Does this mean it goes away in v1, or restarting from scratch?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2922#issuecomment-513907015
----==_mimepart_5d3604c253059_4dc53ffdc86cd96879662f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Does this mean it goes away in v1, or restarting from scratch?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications&amp;email_token=AFTOJK32LNIID7VZ4HPHH2LQAX6EFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2QZSRY#issuecomment-513907015">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3XNVNIDFIYXOANHMLQAX6EFANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63OQBFDJUDE4U34ATQAX6EFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2QZSRY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK32LNIID7VZ4HPHH2LQAX6EFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2QZSRY#issuecomment-513907015",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK32LNIID7VZ4HPHH2LQAX6EFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2QZSRY#issuecomment-513907015",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3604c253059_4dc53ffdc86cd96879662f--


From nobody Mon Jul 22 12:22:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5B7A012008F for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 12:22:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 XWZJXj8va-ab for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 12:22: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 6836B12008C for <quic-issues@ietf.org>; Mon, 22 Jul 2019 12:22:23 -0700 (PDT)
Date: Mon, 22 Jul 2019 12:22:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563823342; bh=CDrJ7ybuHu++s+LWDHlPUWl9LdxU1dfHp26XY4xPQgc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Is+WR+ipRDqPXnimMuK9n7vJKocv+ZMRNgtNjqgu98t+guB2NWzm7EnrsM0ZkFoHO z27PUyp/YhjfMLdkCziFBhU5pTQTk84BMUhCIg0HKwF8ZZ+q2iH3oB9EG2ausqVwXZ OZ5Nlq3QHiy1Vrz+1YWf4WjDkzJbBXnb1P84yCSk=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IFV3O7DPIBUM3XI53IM7W5EVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/513919018@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d360cee4c4e0_7f143fdeb9ecd95c8836e1"; 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/RZ_GQlhg6GIJLb5dUZoeMDVZfyc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 19:22:25 -0000

----==_mimepart_5d360cee4c4e0_7f143fdeb9ecd95c8836e1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

In general, if CPU is a problem, there's a simple fix. Ignore ack delay=0D=

entirely. Your RTT values will be higher, causing recovery to take longer=
,=0D
but that is the tradeoff. At any rate, this recovery time won't be worse=0D=

than TCP, since TCP includes receiver delays in its RTT estimates.=0D
=0D
On Wed, Jul 10, 2019 at 7:40 AM Martin Thomson <notifications@github.com>=
=0D
wrote:=0D
=0D
> I'm fairly confident that these operations will be done on relatively=0D=

> small values, and so optimization to that degree will be possible. I pl=
an=0D
> to use Rust u128 values and to ignore the cost, but I realize that not=0D=

> every implementation can afford to spend upwards of 4 CPU cycles on an=0D=

> operation that you perform once every other packet.=0D
>=0D
> =E2=80=94=0D
> You are receiving this because you commented.=0D
> Reply to this email directly, view it on GitHub=0D
> <https://github.com/quicwg/base-drafts/issues/2670?email_source=3Dnotif=
ications&email_token=3DACUOBVFXENMDISDM33ZM5PDP6XDDDA5CNFSM4HLJKNXKYY3PNV=
WWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZTGBGY#issuecommen=
t-510025883>,=0D
> or mute the thread=0D
> <https://github.com/notifications/unsubscribe-auth/ACUOBVBJWPWETAPZOLXD=
USDP6XDDDANCNFSM4HLJKNXA>=0D
> .=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/2670#issuecomment-513919018=

----==_mimepart_5d360cee4c4e0_7f143fdeb9ecd95c8836e1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

In general, if CPU is a problem, there&#39;s a simple fix. Ignore ack del=
ay<br>=0D
entirely. Your RTT values will be higher, causing recovery to take longer=
,<br>=0D
but that is the tradeoff. At any rate, this recovery time won&#39;t be wo=
rse<br>=0D
than TCP, since TCP includes receiver delays in its RTT estimates.<br>=0D=

<br>=0D
On Wed, Jul 10, 2019 at 7:40 AM Martin Thomson &lt;notifications@github.c=
om&gt;<br>=0D
wrote:<br>=0D
<br>=0D
&gt; I&#39;m fairly confident that these operations will be done on relat=
ively<br>=0D
&gt; small values, and so optimization to that degree will be possible. I=
 plan<br>=0D
&gt; to use Rust u128 values and to ignore the cost, but I realize that n=
ot<br>=0D
&gt; every implementation can afford to spend upwards of 4 CPU cycles on =
an<br>=0D
&gt; operation that you perform once every other packet.<br>=0D
&gt;<br>=0D
&gt; =E2=80=94<br>=0D
&gt; You are receiving this because you commented.<br>=0D
&gt; Reply to this email directly, view it on GitHub<br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/issues/2670?email_source=3D=
notifications&amp;email_token=3DACUOBVFXENMDISDM33ZM5PDP6XDDDA5CNFSM4HLJK=
NXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZTGBGY#is=
suecomment-510025883&gt;,<br>=0D
&gt; or mute the thread<br>=0D
&gt; &lt;https://github.com/notifications/unsubscribe-auth/ACUOBVBJWPWETA=
PZOLXDUSDP6XDDDANCNFSM4HLJKNXA&gt;<br>=0D
&gt; .<br>=0D
&gt;<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/2670?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK4E7CQ4KPLERYRHTYDQAYCG5A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Q4QKQ#issuecomment-513919018">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK4XE2E33WT5EOHOV2LQAYCG5ANCNFSM4HLJKNXA">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJKYTHH7TMA3FNV5BUODQ=
AYCG5A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2Q4QKQ.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/issues/2670?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK4E7CQ4KPLERYRHTYDQAYCG5A5CNFSM4=
HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Q4QK=
Q#issuecomment-513919018",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=3D=
notifications\u0026email_token=3DAFTOJK4E7CQ4KPLERYRHTYDQAYCG5A5CNFSM4HLJ=
KNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Q4QKQ#i=
ssuecomment-513919018",=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_5d360cee4c4e0_7f143fdeb9ecd95c8836e1--


From nobody Mon Jul 22 12:57:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E988C12008C for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 12:57:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eGl-esszi0l5 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 12:57:02 -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 E78D612008F for <quic-issues@ietf.org>; Mon, 22 Jul 2019 12:57:01 -0700 (PDT)
Date: Mon, 22 Jul 2019 12:57:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563825421; bh=PTsyXQiN59R2g66v+/KlQL4yXqC1P0shdCEqBtH8jKU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xeJ4Cci3XiwsM4zVp3SvKQ7z7MsF6J720vT7PHQMQXmYq/4IAw3pfQc/+cqs5m1TQ /P6bA79pjbIjKY45aSXx5iZFzbrlUSs/snRPa7jCSS6TS6zW7y52eMV5Wscu24jPKX ENctviBAUB4c+2P01pMAt2XSF7ejqnN6BbdPfzj4=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK23RSOXG5HAQ2TU2XF3INDYZEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513930838@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36150ceda3f_5f4c3fc75a2cd95c2570ec"; 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/A7OkQPVDy-R7BycQ1W1zuDJKol8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 19:57:04 -0000

----==_mimepart_5d36150ceda3f_5f4c3fc75a2cd95c2570ec
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think that this is the correct thing to do.

At the very least, I'd assume that server-driven prioritization using content-type would work well to some extent. Since the early days of H2, we've doing that for browsers that does not use dependency, and it is my understanding that it has been working OK. Though it would be preferable to have the capability of servers and clients providing "hints", especially to distinguish between a render-blocking JavaScript file and a asynchronously-loaded one.

> Does this mean it goes away in v1, or restarting from scratch?

I'd assume that once the QUIC and HTTP working group agree to drop priorities from H3, it would become the task of the HTTP WG to determine what to 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/pull/2922#issuecomment-513930838
----==_mimepart_5d36150ceda3f_5f4c3fc75a2cd95c2570ec
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think that this is the correct thing to do.</p>
<p>At the very least, I'd assume that server-driven prioritization using content-type would work well to some extent. Since the early days of H2, we've doing that for browsers that does not use dependency, and it is my understanding that it has been working OK. Though it would be preferable to have the capability of servers and clients providing "hints", especially to distinguish between a render-blocking JavaScript file and a asynchronously-loaded one.</p>
<blockquote>
<p>Does this mean it goes away in v1, or restarting from scratch?</p>
</blockquote>
<p>I'd assume that once the QUIC and HTTP working group agree to drop priorities from H3, it would become the task of the HTTP WG to determine what to 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/pull/2922?email_source=notifications&amp;email_token=AFTOJK6NHPLPFDBFS4UA6FTQAYGIZA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Q7MVQ#issuecomment-513930838">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5L35UTCTCMKH25T2TQAYGIZANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUXX3HEHSE3B2YD3LQAYGIZA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Q7MVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK6NHPLPFDBFS4UA6FTQAYGIZA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Q7MVQ#issuecomment-513930838",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK6NHPLPFDBFS4UA6FTQAYGIZA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Q7MVQ#issuecomment-513930838",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36150ceda3f_5f4c3fc75a2cd95c2570ec--


From nobody Mon Jul 22 12:58:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 485D812011B for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 12:58:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZcY5rs3by26t for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 12: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 E9D2B12008F for <quic-issues@ietf.org>; Mon, 22 Jul 2019 12:58:44 -0700 (PDT)
Date: Mon, 22 Jul 2019 12:58:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563825524; bh=PBM4Jvab0RDptotldFLcHGmDfZlqeOwv4dJrWE47Mds=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cqowJ62XNn+P0dwjKFO+oNIQIA8soudKm1rYcaofvtm5MXL7gawWbGHk1pkn4Vz2i Mdb/LDFBDcMknMCNIEVu8O6k9ARRmmeWBYYX2ZsLO82JW4SHItD7VUxBXTY2rjLan6 fyKeAkIinfVMnACPHzgszEqqH1uaZbjAZBYjyVNo=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7GKBFNQVXYLVBNKDF3IND7JEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/review/265022570@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36157430c4_8c63fb1a1ecd96016777d"; 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/f9m36aEaEscNblXd8xtSHyuJ2Gk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 19:58:48 -0000

----==_mimepart_5d36157430c4_8c63fb1a1ecd96016777d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett approved this pull request.

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/2922#pullrequestreview-265022570
----==_mimepart_5d36157430c4_8c63fb1a1ecd96016777d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> approved this pull request.</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/2922?email_source=notifications&amp;email_token=AFTOJK27DOSZBLO7QTTKDB3QAYGPJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7F6Y2Q#pullrequestreview-265022570">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK22SSDB27UQFMK72Q3QAYGPJANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4TP5JGVOFZMWIMFCDQAYGPJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7F6Y2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK27DOSZBLO7QTTKDB3QAYGPJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7F6Y2Q#pullrequestreview-265022570",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK27DOSZBLO7QTTKDB3QAYGPJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7F6Y2Q#pullrequestreview-265022570",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36157430c4_8c63fb1a1ecd96016777d--


From nobody Mon Jul 22 13:08:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4EF6712011B for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:08:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ke7DixnUXunx for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:08:29 -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 E1C2F120125 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:08:28 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:08:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563826108; bh=83U/ihZ//EAxI7BkGGDKCYSCa9ErAiDJe0P8CwGR2IQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BJYSrAbA6XH9lifr4Kvk6zPPF/AaIIKK/bAz/+o/ozUaGkuuUQc+p7M7nNWicjkMs uB9sVsQxuCen8BU8o5p6VH+UD09EU1jd3naeYL/dQ/AvE8bwSRsP7zw6vaN2YrQxeO AGtSzE4XfhebE13QoCOzHq7nw6ML7L7PdC80KM3s=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5SJCCQHT5ISQNY66N3INFDZEVBNHHBSPL7HI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2534/513934749@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2534@github.com>
References: <quicwg/base-drafts/issues/2534@github.com>
Subject: Re: [quicwg/base-drafts] ECN text disables ECN too aggressively (#2534)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3617bc10760_23973f93078cd960230448"; 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/gay1aDVFjhBOuH7JFQ8QYCaYiFE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:08:30 -0000

----==_mimepart_5d3617bc10760_23973f93078cd960230448
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot: Not yet, the PR needs some 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/2534#issuecomment-513934749
----==_mimepart_5d3617bc10760_23973f93078cd960230448
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=74384" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mnot">@mnot</a>: Not yet, the PR needs some 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/2534?email_source=notifications&amp;email_token=AFTOJKZUNW4PZFWQ4Y4DEM3QAYHTZA5CNFSM4HAA3RY2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RALHI#issuecomment-513934749">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2GZJCFDGG3CKMGP6LQAYHTZANCNFSM4HAA3RYQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZLZWDQFRDAA3KWPFTQAYHTZA5CNFSM4HAA3RY2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RALHI.gif" height="1" width="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/2534?email_source=notifications\u0026email_token=AFTOJKZUNW4PZFWQ4Y4DEM3QAYHTZA5CNFSM4HAA3RY2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RALHI#issuecomment-513934749",
"url": "https://github.com/quicwg/base-drafts/issues/2534?email_source=notifications\u0026email_token=AFTOJKZUNW4PZFWQ4Y4DEM3QAYHTZA5CNFSM4HAA3RY2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RALHI#issuecomment-513934749",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3617bc10760_23973f93078cd960230448--


From nobody Mon Jul 22 13:38:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DF8151200FD for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:38:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.353
X-Spam-Level: 
X-Spam-Status: No, score=-6.353 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id v4vqn-v76Z7v for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:38:38 -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 63FAC1200DE for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:38:38 -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 B2A2F8C1DF1 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:38:37 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:38:37 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2VC3T6Y34VFF25HV3INIU3EVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/review/265042977@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d361ecda31fe_53bb3fed8aecd96831346d"; 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/-eyKAGdf060i1_Nts5SShU4Hyqg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:38:40 -0000

----==_mimepart_5d361ecda31fe_53bb3fed8aecd96831346d
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/2922#pullrequestreview-265042977
----==_mimepart_5d361ecda31fe_53bb3fed8aecd96831346d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2922?email_source=notifications&amp;email_token=AFTOJKYAZFXL636NIZFBTELQAYLE3A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GDYII#pullrequestreview-265042977">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4BEKFWXCU3VDCQICLQAYLE3ANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMJAGQLBESECAPMODQAYLE3A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GDYII.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYAZFXL636NIZFBTELQAYLE3A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GDYII#pullrequestreview-265042977",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYAZFXL636NIZFBTELQAYLE3A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GDYII#pullrequestreview-265042977",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d361ecda31fe_53bb3fed8aecd96831346d--


From nobody Mon Jul 22 13:40:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 37F891200DE for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:40:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HRusdmhhfaFq for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:40: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 4834C1200A3 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:40:48 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:40:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563828047; bh=ZzgzGfqCOnkvln8ncrkB9ZGIIZkOHzsurbl33a2Qb9g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NR6BpozUtNdWsE+od3gkuK+6wLe6l3k2ZEf661PztW/TFMFhVuxwv3Pxdl36iSUcI vRReydLQihsMGWFwAAfJ6AMyxppzar3T2sBLmsKREERDGHL4gDQ+kgnqfZ5WG+TMmT Jl/wGGc/W7iNK2hd+tv9WNt3VTYfU/fuTKGr8O5Y=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZLECTFCCV5M6DRMH53INI47EVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/review/265037706@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d361f4f48c66_3ef43fe2b16cd968597756"; 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/mc4pyReHnRu5K7ItAxPT-dQ96ak>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:40:50 -0000

----==_mimepart_5d361f4f48c66_3ef43fe2b16cd968597756
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

LPardue commented on this pull request.

I think this is in general a positive move. It closes some things out. However, I do wonder if it might make us revisit other things that were previously put to bed. For example, we might want to follow up the discussion about separate unidirectional streams [1], because the space is now smaller. 

[1] https://github.com/quicwg/base-drafts/issues/2678

> @@ -139,8 +139,8 @@ Alternative Services; this process is described in greater detail in
 Within each stream, the basic unit of HTTP/3 communication is a frame
 ({{frames}}).  Each frame type serves a different purpose.  For example, HEADERS
 and DATA frames form the basis of HTTP requests and responses
-({{request-response}}).  Other frame types like SETTINGS, PRIORITY, and GOAWAY
-are used to manage the overall connection and relationships between streams.
+({{request-response}}).  Other frame types like SETTINGS and GOAWAY are used to
+manage the overall connection and relationships between streams.

A minor contention: IMO SETTINGS or GOAWAY don't exemplify "relationships between streams". In fact, removing tree depencies helps makes request streams way more independent.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2922#pullrequestreview-265037706
----==_mimepart_5d361f4f48c66_3ef43fe2b16cd968597756
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@LPardue</b> commented on this pull request.</p>

<p>I think this is in general a positive move. It closes some things out. However, I do wonder if it might make us revisit other things that were previously put to bed. For example, we might want to follow up the discussion about separate unidirectional streams [1], because the space is now smaller.</p>
<p>[1] <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="441816604" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2678" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2678/hovercard" href="https://github.com/quicwg/base-drafts/issues/2678">#2678</a></p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2922#discussion_r306017731">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -139,8 +139,8 @@ Alternative Services; this process is described in greater detail in
 Within each stream, the basic unit of HTTP/3 communication is a frame
 ({{frames}}).  Each frame type serves a different purpose.  For example, HEADERS
 and DATA frames form the basis of HTTP requests and responses
-({{request-response}}).  Other frame types like SETTINGS, PRIORITY, and GOAWAY
-are used to manage the overall connection and relationships between streams.
+({{request-response}}).  Other frame types like SETTINGS and GOAWAY are used to
+manage the overall connection and relationships between streams.
</pre>
<p>A minor contention: IMO SETTINGS or GOAWAY don't exemplify "relationships between streams". In fact, removing tree depencies helps makes request streams way more independent.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications&amp;email_token=AFTOJK2ZK7HU3AQCEHDM5OTQAYLM7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GCPCQ#pullrequestreview-265037706">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJ5BBAXYWJAYI34Q3QAYLM7ANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5PZ3RXS5HFZ7YTZN3QAYLM7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GCPCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK2ZK7HU3AQCEHDM5OTQAYLM7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GCPCQ#pullrequestreview-265037706",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK2ZK7HU3AQCEHDM5OTQAYLM7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GCPCQ#pullrequestreview-265037706",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d361f4f48c66_3ef43fe2b16cd968597756--


From nobody Mon Jul 22 13:42:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 70E9A12011B for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:42:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id y3frVAJ92B6k for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:42: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 8DE861200DE for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:42:32 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:42:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563828151; bh=KfxqsHMD/y97prqoF0/8MbWPEJIjyVi2OVcfugUQjs0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cPqAjX75KXi9AfTr4eU10IYzuZS0tBTAFLOIdrkCH9jeK1YTG9zmSR8SQ7kv1C/Rf s9+bz7ryWXLwT367/1rj55cHrU7pGUzZEwOOe+m9qHhG5g2x08LQjjTgfFF26yfzTM ipJDUab9JUV2K0bUoyAjS78jfe984US+j5uyFg8U=
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/2893/push/3843639877@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d361fb7a951e_18743f80226cd96457245d"; 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/vSngM72KrKKK3KjsGVO3AwwNBqc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:42:35 -0000

----==_mimepart_5d361fb7a951e_18743f80226cd96457245d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 1 commit.

e7d22976811f810ac5e0cb5d8927d659e5a3ad09  Reword per Ian's suggestion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2893/files/5a7293da9be6061ded0a277fe019a48235dff2d8..e7d22976811f810ac5e0cb5d8927d659e5a3ad09

----==_mimepart_5d361fb7a951e_18743f80226cd96457245d
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/e7d22976811f810ac5e0cb5d8927d659e5a3ad09">e7d2297</a>  Reword per Ian&#39;s suggestion</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/2893/files/5a7293da9be6061ded0a277fe019a48235dff2d8..e7d22976811f810ac5e0cb5d8927d659e5a3ad09?email_source=notifications&amp;email_token=AFTOJK4WLIJULSN3VRYPNF3QAYLTPA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHA2DGNRTHE4DONY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4DDKEX7HOBDPDXOPLQAYLTPANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYJOLS4LA2SE653GDQAYLTPA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHA2DGNRTHE4DONY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893/files/5a7293da9be6061ded0a277fe019a48235dff2d8..e7d22976811f810ac5e0cb5d8927d659e5a3ad09?email_source=notifications\u0026email_token=AFTOJK4WLIJULSN3VRYPNF3QAYLTPA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHA2DGNRTHE4DONY",
"url": "https://github.com/quicwg/base-drafts/pull/2893/files/5a7293da9be6061ded0a277fe019a48235dff2d8..e7d22976811f810ac5e0cb5d8927d659e5a3ad09?email_source=notifications\u0026email_token=AFTOJK4WLIJULSN3VRYPNF3QAYLTPA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TOMRUGUZDQOKQOVZWQIZTHA2DGNRTHE4DONY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d361fb7a951e_18743f80226cd96457245d--


From nobody Mon Jul 22 13:42:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 746CC1200A3 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:42:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_lj-tIgIrjF for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:42: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 573031200DE for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:42:45 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:42:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563828164; bh=za2gq3r8qiBvy35mOSv+sWWjaGw6wVc8F0ntLuBXCEI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ItTAzBpqv5sXTIU9hIakKYblXGQ4UVQ91qkt/sXOxls0HmNtshJAicCokwEiLd22x EKfoFqXhxmLshNh5vbRtwP/PuASfwnLvrUgnkOAMJe9IgxXdelOmdf6YWe8HW/3zDm Ba4j1SJEYWq7Wp2GjxIl+ILkdUSg9zzF85txPjEk=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7USAYLOBXA5EW3WBF3INJEJEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/review/265045124@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d361fc46fa1a_5ea23fc75a2cd95c716256"; 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/mZvQ5VcpS4Iy_CefmHyWQ7v7vYA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:42:48 -0000

----==_mimepart_5d361fc46fa1a_5ea23fc75a2cd95c716256
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

erickinnear commented on this pull request.



> -INVALID_MIGRATION.  Similarly, an endpoint MUST NOT initiate migration if its
-peer supplies a zero-length connection ID as packets without a Destination
-Connection ID cannot be attributed to a connection based on address tuple.
-
-Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer's address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close

Changed in e7d2297, 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/2893#discussion_r306023502
----==_mimepart_5d361fc46fa1a_5ea23fc75a2cd95c716256
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2893#discussion_r306023502">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -INVALID_MIGRATION.  Similarly, an endpoint MUST NOT initiate migration if its
-peer supplies a zero-length connection ID as packets without a Destination
-Connection ID cannot be attributed to a connection based on address tuple.
-
-Not all changes of peer address are intentional migrations. The peer could
-experience NAT rebinding: a change of address due to a middlebox, usually a NAT,
-allocating a new outgoing port or even a new outgoing IP address for a flow.  An
-endpoint MUST perform path validation ({{migrate-validate}}) if it detects any
-change to a peer&#39;s address, unless it has previously validated that address.
+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.
+This helps to prevent third parties in the network causing connections to close
</pre>
<p>Changed in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/e7d22976811f810ac5e0cb5d8927d659e5a3ad09/hovercard" href="https://github.com/quicwg/base-drafts/commit/e7d22976811f810ac5e0cb5d8927d659e5a3ad09"><tt>e7d2297</tt></a>, 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/2893?email_source=notifications&amp;email_token=AFTOJK4GDCD3LEGLFZTNPFTQAYLUJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GEJBA#discussion_r306023502">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYYCBHNSOYO3ROXC7DQAYLUJANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5WWX6VKOW4JNSKB4TQAYLUJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GEJBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK4GDCD3LEGLFZTNPFTQAYLUJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GEJBA#discussion_r306023502",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK4GDCD3LEGLFZTNPFTQAYLUJA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GEJBA#discussion_r306023502",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d361fc46fa1a_5ea23fc75a2cd95c716256--


From nobody Mon Jul 22 13:45:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C28A2120123 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:45:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KYTxUZ-h7tkU for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:45: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 70AE01200A3 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:45:41 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:45:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563828340; bh=YnwZ4Tje6W85lLveaWBW0lpOS0Yx5l2Niv3Ap1dcDDo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xqhphPOWuxnz54nCJ2r5unBVGfFmZVyYoSrjUYbJhYMRAr+6HBCCAGOkGyi3Gn+EH MN33HkqQSFFtsoz6Ead7V1EH2DYN+K/urKjfSVQsqbDyW1K1PbDtNMkMmpJmdb5zF7 YubaJnahiMfGTrdiMfC5B5PMBgAmaRsztmNE8Ha4=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5P6WFLHYFTKSSDCVN3INJPJEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513947113@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d362074abbf6_5da03faf4a0cd9685859ed"; 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/cIE003WRdOWJ3LFPqsCQ4jqGRUQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:45:44 -0000

----==_mimepart_5d362074abbf6_5da03faf4a0cd9685859ed
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Please create an umbrella issue for discussion. I would like to go in this direction, but this requires discussion in the wg and in HTTP as well, and I would rather not have that on this 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/2922#issuecomment-513947113
----==_mimepart_5d362074abbf6_5da03faf4a0cd9685859ed
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Please create an umbrella issue for discussion. I would like to go in this direction, but this requires discussion in the wg and in HTTP as well, and I would rather not have that on this 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/2922?email_source=notifications&amp;email_token=AFTOJKYBFW6YYT523L6CX7DQAYL7JA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RDL2I#issuecomment-513947113">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYAOKXKAT25PBE65GDQAYL7JANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTZS65ORUQPZKX54LQAYL7JA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RDL2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYBFW6YYT523L6CX7DQAYL7JA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RDL2I#issuecomment-513947113",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYBFW6YYT523L6CX7DQAYL7JA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RDL2I#issuecomment-513947113",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d362074abbf6_5da03faf4a0cd9685859ed--


From nobody Mon Jul 22 13:53:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7DC812008C for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:53:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id L37bMv2ZoEnt for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:53: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 00EE2120120 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:53:37 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:53:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563828816; bh=yqczICSulA6VJsQQXwG+wyAYZSxuGzFqQf3lJtAg5JM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OxDKpH7s2CEB5t55TVjxW73kWHYFYdJQ4KdCEwp30Hw7so/eeYTjh5y6TaB8uwuBW sLraDbzkvUSRg2tsnvktU9yk8XiLc9w7y5l+J4XqV7u8qp12ugTM4FMt/eEU/rmx5Y GWuFuwcRSL2pSQpeEArzek5bgYQMiHPn6XD+xdT8=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24FCXR356ILHBEF4F3INKNBEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513950016@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d362250d4495_7fd33fcdf86cd968526499"; 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/PPlDbFJ70oePk-TN90NUjVuX9s4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:53:41 -0000

----==_mimepart_5d362250d4495_7fd33fcdf86cd968526499
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm also a little nervy that the removal of text makes it appear that the first user of streams (HTTP/3) quietly ignores the transport's recommendation in section 2.3 

> A QUIC implementation SHOULD provide ways in which an application can
   indicate the relative priority of streams.  When deciding which
   streams to dedicate resources to, the implementation SHOULD use the
   information provided 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/2922#issuecomment-513950016
----==_mimepart_5d362250d4495_7fd33fcdf86cd968526499
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm also a little nervy that the removal of text makes it appear that the first user of streams (HTTP/3) quietly ignores the transport's recommendation in section 2.3</p>
<blockquote>
<p>A QUIC implementation SHOULD provide ways in which an application can<br>
indicate the relative priority of streams.  When deciding which<br>
streams to dedicate resources to, the implementation SHOULD use the<br>
information provided by the application.</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/2922?email_source=notifications&amp;email_token=AFTOJKZCCDZWDV3ZVI3LWFDQAYM5BA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RECQA#issuecomment-513950016">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5SKZYBXCDCQW6B73QAYM5BANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZII32RFDM5HZSBOA3QAYM5BA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RECQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKZCCDZWDV3ZVI3LWFDQAYM5BA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RECQA#issuecomment-513950016",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKZCCDZWDV3ZVI3LWFDQAYM5BA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RECQA#issuecomment-513950016",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d362250d4495_7fd33fcdf86cd968526499--


From nobody Mon Jul 22 13:56:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B5CE1200A3 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:56:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BA_EFrPQjWeG for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 13:56: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 5307112008C for <quic-issues@ietf.org>; Mon, 22 Jul 2019 13:56:42 -0700 (PDT)
Date: Mon, 22 Jul 2019 13:56:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563829001; bh=RizLXNj0Ug7Jmmk6YlymbNgKS+dKAOdnNmbeFKwFs78=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=1vGSygRKKTGbCye/kVvsEHwy+HRIxIgg6gNkzFkN9gM29Vk+ky5g80yL70rQU02QF qUTBkKCF85Pz+dMWHJQURCufQfMN8Pv0p5dp1/gdhvEJ9+HQFp1lDezlo3GlDqeK7S YpJFW76/FeN7fiHImmrQm+TPKzrn/YE8plbswcnw=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZJCKKJEHRWJZ3SIN3INKYTEVBNHHBYF7KWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2923@github.com>
Subject: [quicwg/base-drafts] MIn_RTT management (#2923)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36230985bd6_1b5a3feee22cd95c6036be"; 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/0edbf7HGUUExyECLyn4sygy4cx0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 20:56:44 -0000

----==_mimepart_5d36230985bd6_1b5a3feee22cd95c6036be
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So, I understand that min_RTT is maintained per path as the minimum RTT. 
 
I foresee paths that persist for long periods and where the set of network devices forming the can path change, and hence the min_RTT can be "ridiculously" small concerned to the actual value had it been measured recently. I don't much like that min_RTT is never raised.

The solution could be simple. Re-initialise min_RTT from the RTT sample periodically. How often to reset is not critical, but needs to be reasonably often - I suggest every 600 secs.  (I'd be OK with other numbers, this is the default path state timeout in RFC1981).

-- 
You are receiving 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/2923
----==_mimepart_5d36230985bd6_1b5a3feee22cd95c6036be
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So, I understand that min_RTT is maintained per path as the minimum RTT.</p>
<p>I foresee paths that persist for long periods and where the set of network devices forming the can path change, and hence the min_RTT can be "ridiculously" small concerned to the actual value had it been measured recently. I don't much like that min_RTT is never raised.</p>
<p>The solution could be simple. Re-initialise min_RTT from the RTT sample periodically. How often to reset is not critical, but needs to be reasonably often - I suggest every 600 secs.  (I'd be OK with other numbers, this is the default path state timeout in RFC1981).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2923?email_source=notifications&amp;email_token=AFTOJK6T3HBXWWRGSFR6CU3QAYNITA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAX5KZA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6GMNXDQ6BGBWPSNITQAYNITANCNFSM4IF43J7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6T7UKQQZ7UWQHQZJDQAYNITA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAX5KZA.gif" height="1" width="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/2923?email_source=notifications\u0026email_token=AFTOJK6T3HBXWWRGSFR6CU3QAYNITA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAX5KZA",
"url": "https://github.com/quicwg/base-drafts/issues/2923?email_source=notifications\u0026email_token=AFTOJK6T3HBXWWRGSFR6CU3QAYNITA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAX5KZA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36230985bd6_1b5a3feee22cd95c6036be--


From nobody Mon Jul 22 14:12:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0D1471200B9 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:12:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mKZ8OaH9BcXB for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:12: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 A1A1D12008C for <quic-issues@ietf.org>; Mon, 22 Jul 2019 14:12:38 -0700 (PDT)
Date: Mon, 22 Jul 2019 14:12:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563829957; bh=myhdECax3UX0eTLS9VQikVFVAGFxL0H+yYhi3WBRwes=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=poKK/nC2oZjjfTTDXX1Ar+bOEWuCkC1cQta1nCbsa9JJuqSkUo65lsM+xtY91Fk3b 2emPSv3axcsen+vFkI3swrgzP+UWbnG/G+UuBctxu7OLwM8cNUhiAJlZl+PK9BIlXX P3g6LEip45wpNsYTGGyAKeKw4uzqizR9Zw586Pes=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZHLVFUXNVYX333UOV3INMULEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/review/265059880@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3626c577cb3_30583f8cfe4cd964677252"; 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/CGzQbuwcGmQb1jWfP-xt8lstakk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 21:12:40 -0000

----==_mimepart_5d3626c577cb3_30583f8cfe4cd964677252
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -139,8 +139,8 @@ Alternative Services; this process is described in greater detail in
 Within each stream, the basic unit of HTTP/3 communication is a frame
 ({{frames}}).  Each frame type serves a different purpose.  For example, HEADERS
 and DATA frames form the basis of HTTP requests and responses
-({{request-response}}).  Other frame types like SETTINGS, PRIORITY, and GOAWAY
-are used to manage the overall connection and relationships between streams.
+({{request-response}}).  Other frame types like SETTINGS and GOAWAY are used to
+manage the overall connection and relationships between streams.

Do you think that I should just strike that 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/2922#discussion_r306035077
----==_mimepart_5d3626c577cb3_30583f8cfe4cd964677252
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2922#discussion_r306035077">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -139,8 +139,8 @@ Alternative Services; this process is described in greater detail in
 Within each stream, the basic unit of HTTP/3 communication is a frame
 ({{frames}}).  Each frame type serves a different purpose.  For example, HEADERS
 and DATA frames form the basis of HTTP requests and responses
-({{request-response}}).  Other frame types like SETTINGS, PRIORITY, and GOAWAY
-are used to manage the overall connection and relationships between streams.
+({{request-response}}).  Other frame types like SETTINGS and GOAWAY are used to
+manage the overall connection and relationships between streams.
</pre>
<p>Do you think that I should just strike that sentence?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications&amp;email_token=AFTOJKYA4XILM4SY6VOEWRTQAYPELA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GH4KA#discussion_r306035077">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6PGQZLYDR7RP4LM3TQAYPELANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK66HZXCCDRHC7ZDFSDQAYPELA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GH4KA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYA4XILM4SY6VOEWRTQAYPELA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GH4KA#discussion_r306035077",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYA4XILM4SY6VOEWRTQAYPELA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GH4KA#discussion_r306035077",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3626c577cb3_30583f8cfe4cd964677252--


From nobody Mon Jul 22 14:22:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5546B12008C for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:22:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YDsVxYTmO2k5 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:22: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 7DE7B12001B for <quic-issues@ietf.org>; Mon, 22 Jul 2019 14:22:13 -0700 (PDT)
Date: Mon, 22 Jul 2019 14:22:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563830532; bh=0tt+j+3r0rYQoZPfJzopfs3LFE+75n0wQtK5W0hCDBM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JaoFv8t2pVWtGPnjEmcv2ppiv6LhLU/+iItgFX9oy0gffQIXpG1JvydsENK+4xk6G MQXxRCPwulXahLkc4RUPPV05Xoq3WDFA4Xz8lbAVsudcUgdTIjb0RFa0+UAo4SPHEj s2ydsHgMfOD8AtxxsttXkwKsyTevGVzo48v224SM=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZE6XUICMMHFWXWQIF3INNYJEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513959957@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36290496319_1b523feee22cd95c9186a0"; 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/_7gDmHRqYlbkgj2FsmU-Z5JWDZU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 21:22:15 -0000

----==_mimepart_5d36290496319_1b523feee22cd95c9186a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I'm also a little nervy that the removal of text makes it appear that the first user of streams (HTTP/3) quietly ignores the transport's recommendation in section 2.3

That is an endpoint to API thing - it just says an H/3 impl. should be able to prioritize streams server side, e.g. from some configuration. It doesn't say two endpoints should negotiate 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/2922#issuecomment-513959957
----==_mimepart_5d36290496319_1b523feee22cd95c9186a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I'm also a little nervy that the removal of text makes it appear that the first user of streams (HTTP/3) quietly ignores the transport's recommendation in section 2.3</p>
</blockquote>
<p>That is an endpoint to API thing - it just says an H/3 impl. should be able to prioritize streams server side, e.g. from some configuration. It doesn't say two endpoints should negotiate 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/2922?email_source=notifications&amp;email_token=AFTOJK2OLGIFJGTWZGUAAQLQAYQIJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RGQFI#issuecomment-513959957">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JD7GA6KVECHVT7HLQAYQIJANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6S765CJSGLJLP77ODQAYQIJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RGQFI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK2OLGIFJGTWZGUAAQLQAYQIJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RGQFI#issuecomment-513959957",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK2OLGIFJGTWZGUAAQLQAYQIJA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RGQFI#issuecomment-513959957",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36290496319_1b523feee22cd95c9186a0--


From nobody Mon Jul 22 14:33:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 65D0E1202D0 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:33:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k8X773rAwcPU for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:33:39 -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 7710912016C for <quic-issues@ietf.org>; Mon, 22 Jul 2019 14:33:39 -0700 (PDT)
Date: Mon, 22 Jul 2019 14:33:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563831218; bh=ISzxCrZv+u35y7ic/ZfFlU0skoXtKfnuX69ji8A2JUQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MutWG1xu7rWszyUiEaWw/IyQlIThH4QjE67Kp64P6Syz1ARTXDv+ezIDNjxiL+sYf duvf8lnCLt1waYIB++MrnMZbU8plzrMHp7Ql6B12QiA+pwovrN5d49GKbaUnuXDxSk ypfGwC4yEL+1ZbVWs9izNn3BzCuZuJTk8H+LcP8g=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4BEJCJTSEGRVGONON3INPDFEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513963516@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d362bb28bb41_17783f83a24cd960100607c"; 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/nYpVV6KOByJeM_u1fBsRTjzwZwk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 21:33:47 -0000

----==_mimepart_5d362bb28bb41_17783f83a24cd960100607c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fair point. I think the transport text is actually pretty weak in articulating what it is asking for in terms of stream prioritization. For example, it mentions exchanging information  and then jumps to local-API concerns

> QUIC does not provide a mechanism for exchanging prioritization
   information.  Instead, it relies on receiving priority information
   from the application that uses 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/pull/2922#issuecomment-513963516
----==_mimepart_5d362bb28bb41_17783f83a24cd960100607c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Fair point. I think the transport text is actually pretty weak in articulating what it is asking for in terms of stream prioritization. For example, it mentions exchanging information  and then jumps to local-API concerns</p>
<blockquote>
<p>QUIC does not provide a mechanism for exchanging prioritization<br>
information.  Instead, it relies on receiving priority information<br>
from the application that uses QUIC.</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/2922?email_source=notifications&amp;email_token=AFTOJK5WBHUFZL4BVGW4ZULQAYRTFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RHL7A#issuecomment-513963516">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJLMUTG2MUVAORW63QAYRTFANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYD3CGMCSMYMRDYKP3QAYRTFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RHL7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK5WBHUFZL4BVGW4ZULQAYRTFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RHL7A#issuecomment-513963516",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK5WBHUFZL4BVGW4ZULQAYRTFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RHL7A#issuecomment-513963516",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d362bb28bb41_17783f83a24cd960100607c--


From nobody Mon Jul 22 14:39:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BC8541200B6 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:38:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.353
X-Spam-Level: 
X-Spam-Status: No, score=-6.353 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TaJZYTU3rupt for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 14:38: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 5521112001B for <quic-issues@ietf.org>; Mon, 22 Jul 2019 14:38: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 596D02C1470 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 14:38:57 -0700 (PDT)
Date: Mon, 22 Jul 2019 14:38:57 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HMIOF64B57ASYAIN3INPXDEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924@github.com>
Subject: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d362cf14b4ef_53e43fed8aecd9681204089"; 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/1BBxvQGeNksMTrX4TPXJyJXQ_28>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 21:39:00 -0000

----==_mimepart_5d362cf14b4ef_53e43fed8aecd9681204089
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

For discussion, see #2922.

-- 
You are receiving 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/2924
----==_mimepart_5d362cf14b4ef_53e43fed8aecd9681204089
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>For discussion, see <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="471251962" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2922" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2922/hovercard" href="https://github.com/quicwg/base-drafts/pull/2922">#2922</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/2924?email_source=notifications&amp;email_token=AFTOJK6EI5IDQ43TTJJJXJTQAYSHDA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAYHB5Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4YBORXAXLYNCN6BLDQAYSHDANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5M7VAI6B2I64M7GJDQAYSHDA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAYHB5Q.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK6EI5IDQ43TTJJJXJTQAYSHDA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAYHB5Q",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK6EI5IDQ43TTJJJXJTQAYSHDA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HAYHB5Q",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d362cf14b4ef_53e43fed8aecd9681204089--


From nobody Mon Jul 22 15:08:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 20EA61200B9 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:08:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pIKyZu11tphJ for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:08: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 28A561200B8 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 15:08:24 -0700 (PDT)
Date: Mon, 22 Jul 2019 15:08:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563833303; bh=M5zjKCA7ezsrjuvZsCGu7qBrDL0sU/MZgJCu2yyuHEU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cP0sS8NHN3D6/D2KuBDLhOvlfE9VuB9NBJd2NLPredPxzQyRzamWn4gE3sDx3pp+9 WQeonQUvgMPqYCIepMqEHgijipL5UJROD+R9PJBxUOTPnk1P7+StKkZbWP3Am7xOVc N8MlB94Byr4jempaodc7PxbNTR93GIbJqljw+/q4=
From: Robin Marx <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EBO24BB2G75CGLGN3INTFPEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513973587@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3633d7a072_76153fdd09ccd9601239160"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: rmarx
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lWJg3qOiNLap5LRGef5OBK1RFQA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 22:08:26 -0000

----==_mimepart_5d3633d7a072_76153fdd09ccd9601239160
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I understand the appeal of this proposal, but I don't agree that simply cutting priorities without replacing them with something else is the right way forward. 

I don't see how this PR actually solves anything... it will allow us to ship HTTP/3 sure, but it will be (even more) difficult to use correctly in practice. This puts the burden of figuring out prioritization fully on the servers, and [we've seen how well that will go in practice with H2](https://github.com/andydavies/http2-prioritization-issues). 

I would also like to see some more detailed explanation on the statement in the httpbis session just now (which was a bit more strongly worded than the original post in this thread):

> prioritization is important but we don't need signaling for prioritization

I'm not sure I follow this... Are we suddenly claiming that the server does not need client-side information anymore, which is the opposite of the reasoning behind H2's setup? Do you feel you can do good server-side prioritization without client-side signaling? What would that look like? Combining content-type with user-agent? 

---

In essence, I feel that if we remove tree-based priorities, we **must endorse another solution** (e.g., patrick meenan's setup, kazuho's http-header based solution) and standardize that alongside H3. I fear not doing this will lead to a mess that will be difficult to recover from (i.e., if we standardize the signaling part later on, it will be difficult to find enough uptake, which was one of the main goals on Ian's slides).  




-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2922#issuecomment-513973587
----==_mimepart_5d3633d7a072_76153fdd09ccd9601239160
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I understand the appeal of this proposal, but I don't agree that simply cutting priorities without replacing them with something else is the right way forward.</p>
<p>I don't see how this PR actually solves anything... it will allow us to ship HTTP/3 sure, but it will be (even more) difficult to use correctly in practice. This puts the burden of figuring out prioritization fully on the servers, and <a href="https://github.com/andydavies/http2-prioritization-issues">we've seen how well that will go in practice with H2</a>.</p>
<p>I would also like to see some more detailed explanation on the statement in the httpbis session just now (which was a bit more strongly worded than the original post in this thread):</p>
<blockquote>
<p>prioritization is important but we don't need signaling for prioritization</p>
</blockquote>
<p>I'm not sure I follow this... Are we suddenly claiming that the server does not need client-side information anymore, which is the opposite of the reasoning behind H2's setup? Do you feel you can do good server-side prioritization without client-side signaling? What would that look like? Combining content-type with user-agent?</p>
<hr>
<p>In essence, I feel that if we remove tree-based priorities, we <strong>must endorse another solution</strong> (e.g., patrick meenan's setup, kazuho's http-header based solution) and standardize that alongside H3. I fear not doing this will lead to a mess that will be difficult to recover from (i.e., if we standardize the signaling part later on, it will be difficult to find enough uptake, which was one of the main goals on Ian's slides).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications&amp;email_token=AFTOJK33PLRNOVWJ4OTQ47LQAYVVPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RJ2UY#issuecomment-513973587">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK27DCQ7SHNYQWF6RL3QAYVVPANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVI4ID6I664BILR5LQAYVVPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RJ2UY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK33PLRNOVWJ4OTQ47LQAYVVPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RJ2UY#issuecomment-513973587",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK33PLRNOVWJ4OTQ47LQAYVVPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RJ2UY#issuecomment-513973587",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3633d7a072_76153fdd09ccd9601239160--


From nobody Mon Jul 22 15:45:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 38B821200BA for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:45:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0nfYDlkaFHGy for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:45: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 565AA1200B9 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 15:45:44 -0700 (PDT)
Date: Mon, 22 Jul 2019 15:45:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563835543; bh=gdIGqL1oCkLyVf9KuAu7cmD3ALgJiIDlmpUKwiTIC9o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GRSMRnVxqVkUDUBr8+sl+lVxMUuZnudPp2xhJ85NStGwd7qqZsu/OrQB1XzsgjuHP AtvOE2k3Mlsc+04Vg6NYbJWp0/CJ5NA2L5kqUs3YY1CpMrV4Hiptk8F4V7kMNodwQM FrH7CvDHKo/HovCtP7e8ewz2QUZqlZddaR//ruJQ=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2Y65DL4UTTFD25DS53INXRPEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/review/265094669@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d363c9772df0_442f3f89d2ecd95c10486c9"; 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/z3WMpWbbYgI4MsCUWO3oiYBHy2o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 22:45:47 -0000

----==_mimepart_5d363c9772df0_442f3f89d2ecd95c10486c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

LPardue commented on this pull request.



> @@ -139,8 +139,8 @@ Alternative Services; this process is described in greater detail in
 Within each stream, the basic unit of HTTP/3 communication is a frame
 ({{frames}}).  Each frame type serves a different purpose.  For example, HEADERS
 and DATA frames form the basis of HTTP requests and responses
-({{request-response}}).  Other frame types like SETTINGS, PRIORITY, and GOAWAY
-are used to manage the overall connection and relationships between streams.
+({{request-response}}).  Other frame types like SETTINGS and GOAWAY are used to
+manage the overall connection and relationships between streams.

```suggestion
manage the overall connection.
```

yes, or do 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/2922#discussion_r306064042
----==_mimepart_5d363c9772df0_442f3f89d2ecd95c10486c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<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/2922#discussi=
on_r306064042">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -139,8 +139,8 @@ Alternative Services; =
this process is described in greater detail in=0D
 Within each stream, the basic unit of HTTP/3 communication is a frame=0D=

 ({{frames}}).  Each frame type serves a different purpose.  For example,=
 HEADERS=0D
 and DATA frames form the basis of HTTP requests and responses=0D
-({{request-response}}).  Other frame types like SETTINGS, PRIORITY, and =
GOAWAY=0D
-are used to manage the overall connection and relationships between stre=
ams.=0D
+({{request-response}}).  Other frame types like SETTINGS and GOAWAY are =
used to=0D
+manage the overall connection and relationships between streams.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-manage the overall connection and relationshi=
ps between streams.=0D
+manage the overall connection.=0D
</pre>=0D
=0D
<p>yes, or do this.</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/2922?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK7HIXECY23VIBAOSZ3QAY2BPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7GQMDI#discussion_r306064042">view=
 it on GitHub</a>, or <a href=3D"https://github.com/notifications/unsubsc=
ribe-auth/AFTOJK4N4CB6XY6I3WYOGEDQAY2BPANCNFSM4IF3PEFA">mute the thread</=
a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK7T7NGPXR35AJ=
SJ23TQAY2BPA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFS=
XPKTDN5WW2ZLOORPWSZGOB7GQMDI.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/2922?email_source=3D=
notifications\u0026email_token=3DAFTOJK7HIXECY23VIBAOSZ3QAY2BPA5CNFSM4IF3=
PEFKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7GQMDI#discussion_r306064042",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK7HIXECY23VIBAOSZ3QAY2BPA5CNFSM4IF3PE=
FKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7G=
QMDI#discussion_r306064042",=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_5d363c9772df0_442f3f89d2ecd95c10486c9--


From nobody Mon Jul 22 15:48:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7D79E120094 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:48:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pqvs-KL8L5Hn for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:48:19 -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 AE90C12006B for <quic-issues@ietf.org>; Mon, 22 Jul 2019 15:48:19 -0700 (PDT)
Date: Mon, 22 Jul 2019 15:48:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563835698; bh=enADt3dRv99btN2mt05ORBlPQZD9VrlzXaKqzJTK7Sg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WtXvVaSQybTHVLyZBGk3rudlKus1J6IQpiqwWjVYG/DE5PRmikAt5JFUJJenoiu9I ycRDL7hl6CT7lbWyxh1ZQ+WKfWFyFIjbaJwKVNWk0eep2+OiPYM6Cg8ucutjtGBK02 inWOUTa0D9Bm+ZIV+B5+DkxEh/e2fFq7FkI6Q/Jg=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6H3TZ52YDOBGPABZN3INX3FEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513983658@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d363d32c6b63_12f83f89d2ecd95c994937"; 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/mNSX2AsoVv_zzRoNvtJaMoWS4YY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 22:48:22 -0000

----==_mimepart_5d363d32c6b63_12f83f89d2ecd95c994937
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Do you feel you can do good server-side prioritization without client-side signaling? What would that look like? Combining content-type with user-agent?

Our experience shows that this is effective. It event improves performance for certain User Agents that use a poor prioritization scheme.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2922#issuecomment-513983658
----==_mimepart_5d363d32c6b63_12f83f89d2ecd95c994937
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Do you feel you can do good server-side prioritization without client-side signaling? What would that look like? Combining content-type with user-agent?</p>
</blockquote>
<p>Our experience shows that this is effective. It event improves performance for certain User Agents that use a poor prioritization scheme.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications&amp;email_token=AFTOJK63CC6EZRJE3JSJHWDQAY2LFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RMJKQ#issuecomment-513983658">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OKIAYEFXJ65OF4TDQAY2LFANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4QKYZCQUJD7SGOU3TQAY2LFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RMJKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK63CC6EZRJE3JSJHWDQAY2LFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RMJKQ#issuecomment-513983658",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK63CC6EZRJE3JSJHWDQAY2LFA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RMJKQ#issuecomment-513983658",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d363d32c6b63_12f83f89d2ecd95c994937--


From nobody Mon Jul 22 15:56:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D65441200DE for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:56:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 19LuNw1yDey6 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:56: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 65B2C1200BA for <quic-issues@ietf.org>; Mon, 22 Jul 2019 15:56:08 -0700 (PDT)
Date: Mon, 22 Jul 2019 15:56:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563836167; bh=6LPpjcoUwmPe0/b1IQYozDQsfoSSXAt/W89omy4AgmM=; h=Date:From:To:Subject:From; b=KuFcUUVbe5hA5i/aPnMxLibGCyrvYP1jq9BbyrePCF2d7EGx0oFNaLdEQmTotaKD5 Qa1mxQP32+D76rO3y5wCH1scICl7/Y7awzl7mobAdO47LPXfr16+9tpviDBxEuBTPa lXdD08Vmb1iXaEc1ss3gmswZR28H+MylT0JqDJb0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/priority-diediedie/7c4a6f-5c18a9@github.com>
Subject: [quicwg/base-drafts] 5c18a9: Remove sentence about stream relationships
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cmeZNQntDsIY55ywIdRsYlqMDVQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 22:56:10 -0000

  Branch: refs/heads/priority-diediedie
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5c18a9ea6bc09753ece048f021501edbac7fc572
      https://github.com/quicwg/base-drafts/commit/5c18a9ea6bc09753ece048f021501edbac7fc572
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Remove sentence about stream relationships

Closes #2924.



From nobody Mon Jul 22 15:56:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 874371200DE for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:56:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k7NWdzjSaUXB for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:56: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 CED931200BA for <quic-issues@ietf.org>; Mon, 22 Jul 2019 15:56:16 -0700 (PDT)
Date: Mon, 22 Jul 2019 15:56:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563836176; bh=kJrFJQjw/cvV8MgxNnQ2PUGJIZ7Y6auKUwscixvpHYs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rKAoumIzCXBe0PasJ8+66MS+ve2+o6TUBY+lpHV+nbQc1yqIZj5Z3c7n9UKcHkKPq Bbdx7bZU1YYXswor3fBte/0441JmIY1SrStcMSJWP1az6OBC8AYIm6ZD4UJQ2jOQVo zXReH58aCCCrS9S2F2kC2oh4tADXTIJwO7hXlA9Q=
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/2922/push/3844017505@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d363f101b2c3_1ee23f8478acd9601266364"; 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/yqzHHmjXPCyrA78wWTT1wUcz288>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 22:56:18 -0000

----==_mimepart_5d363f101b2c3_1ee23f8478acd9601266364
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

5c18a9ea6bc09753ece048f021501edbac7fc572  Remove sentence about stream relationships


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2922/files/7c4a6f4e2a759c477c8a8aa26387167351c38fa4..5c18a9ea6bc09753ece048f021501edbac7fc572

----==_mimepart_5d363f101b2c3_1ee23f8478acd9601266364
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/5c18a9ea6bc09753ece048f021501edbac7fc572">5c18a9e</a>  Remove sentence about stream relationships</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/2922/files/7c4a6f4e2a759c477c8a8aa26387167351c38fa4..5c18a9ea6bc09753ece048f021501edbac7fc572?email_source=notifications&amp;email_token=AFTOJK5MNX4OBFRRPM2EXI3QAY3JBA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSOJZGA2DON2QOVZWQIZTHA2DIMBRG42TANI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7V75BAC6W4ZKBRLILQAY3JBANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFVODV5CLB6VKE3KDQAY3JBA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSOJZGA2DON2QOVZWQIZTHA2DIMBRG42TANI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922/files/7c4a6f4e2a759c477c8a8aa26387167351c38fa4..5c18a9ea6bc09753ece048f021501edbac7fc572?email_source=notifications\u0026email_token=AFTOJK5MNX4OBFRRPM2EXI3QAY3JBA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSOJZGA2DON2QOVZWQIZTHA2DIMBRG42TANI",
"url": "https://github.com/quicwg/base-drafts/pull/2922/files/7c4a6f4e2a759c477c8a8aa26387167351c38fa4..5c18a9ea6bc09753ece048f021501edbac7fc572?email_source=notifications\u0026email_token=AFTOJK5MNX4OBFRRPM2EXI3QAY3JBA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSOJZGA2DON2QOVZWQIZTHA2DIMBRG42TANI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d363f101b2c3_1ee23f8478acd9601266364--


From nobody Mon Jul 22 15:57:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E1EC41200DE for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:57:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gEnBvrYNrDFB for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:57: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 5E1461200BA for <quic-issues@ietf.org>; Mon, 22 Jul 2019 15:57:25 -0700 (PDT)
Date: Mon, 22 Jul 2019 15:57:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563836244; bh=ybdmbhsHyESUODPEn9P+r7z424ulNhMxXKtqg2JWDH0=; h=Date:From:To:Subject:From; b=cYd/W6IyLG4TaHg05t76YqDhjmhOgWDhZXuIbROsmPeoIT7cjhyKISGIjGNewsifz 9H0oDnVc8Q5j29kTLEfpKDgzq0h0RdZpAq9bkgwJKhROXtLcKqqV0rxUPPSjcCSpc/ 9V2G3Iu9RUZghNOhCWo521Q+dE0PteMifpsZwsDs=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f6285c-f20579@github.com>
Subject: [quicwg/base-drafts] f20579: Script updating gh-pages from 5c18a9ea. [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/jPn4CO0r1zdgHK8HloTMnMA_H7o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 22:57:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f205796cd05267cecfb1fa71c7ce87f199b936c0
      https://github.com/quicwg/base-drafts/commit/f205796cd05267cecfb1fa71c7ce87f199b936c0
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M index.html
    M priority-diediedie/draft-ietf-quic-http.html
    M priority-diediedie/draft-ietf-quic-http.txt

  Log Message:
  -----------
  Script updating gh-pages from 5c18a9ea. [ci skip]



From nobody Mon Jul 22 15:59:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5408D12010E for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:59:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Df7z9nwp5ZnU for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 15:59:26 -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 E14CD1200F1 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 15:59:26 -0700 (PDT)
Date: Mon, 22 Jul 2019 15:59:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563836366; bh=Y6Le/8fh2WxjPYTc7EFQzss/rA5I1zwLQhSU/UbBXqw=; h=Date:From:To:Subject:From; b=CWcx7ZaJhft6vMXoZEC7dbOEnfblE52cakpNOqOwEC57vQa7goS+XgMC5u9vw6Wrf fHdvGiwfA9EE5nn8BPLXvFUTsw1Y3bGj7YQIJy2fyrtzZoRNaw1MataUrgFnYTiOCu 8RlJMX70jdrY34UVybyvfCmT36Zku/XdArtaBWvs=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f20579-50d0f0@github.com>
Subject: [quicwg/base-drafts] 50d0f0: Script updating issues at 2019-07-22T22:59:19Z. [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/TzzmXIxpsX9tKIMT025bmj-Iuko>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 22:59:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 50d0f0a3950ac50894e0db952658c8fd5f2a0664
      https://github.com/quicwg/base-drafts/commit/50d0f0a3950ac50894e0db952658c8fd5f2a0664
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-22 (Mon, 22 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-22T22:59:19Z. [ci skip]



From nobody Mon Jul 22 16:06:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C814E120045 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 16:06:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3U2Pqu_u5tcP for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 16:06:40 -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 20172120048 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 16:06:40 -0700 (PDT)
Date: Mon, 22 Jul 2019 16:06:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563836798; bh=vExK0SM5oS7VumYfxrNJWL4Byb4vmzKG3H4AVJS+dho=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y3I3xanBshI/Lgtk3iIRRoDdihIgtev0zHFueq73twMIrMlSI/Dwl4iohjlHTGJuo FU3eBKZCJ8BwElOQkpLUoSmbTLqQCuN3wdDx8tb6EDoWm7Pbdp1dSRavXwO3qKHraK 9/LwYiiPI7kCMbo7J0yyC9kHhtCKvc29DOkYSzss=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VR3UG2YMEOGMPLYF3INZ75EVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513987999@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36417edc63b_33403fb0efccd960110561c"; 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/eXRDiVXx_XsiT2DFaWVoC-pylu8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 23:06:42 -0000

----==_mimepart_5d36417edc63b_33403fb0efccd960110561c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@rmarx 
> In essence, I feel that if we remove tree-based priorities, we **must endorse another solution** (e.g., patrick meenan's setup, kazuho's http-header based solution) and **standardize that alongside H3**.

I also think we should have a prioritization scheme before or when we deploy H3 in the wild, but process-wise, I think we should separate the discussion so as to minimize the chance of QUIC standardization process getting delayed, and because server-driven prioritization can work as a backup strategy.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2922#issuecomment-513987999
----==_mimepart_5d36417edc63b_33403fb0efccd960110561c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=2240689" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rmarx">@rmarx</a></p>
<blockquote>
<p>In essence, I feel that if we remove tree-based priorities, we <strong>must endorse another solution</strong> (e.g., patrick meenan's setup, kazuho's http-header based solution) and <strong>standardize that alongside H3</strong>.</p>
</blockquote>
<p>I also think we should have a prioritization scheme before or when we deploy H3 in the wild, but process-wise, I think we should separate the discussion so as to minimize the chance of QUIC standardization process getting delayed, and because server-driven prioritization can work as a backup strategy.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications&amp;email_token=AFTOJK4YROJSCCC7VLW6YHLQAY4P5A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNLHY#issuecomment-513987999">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7FZOO4BOY72NJ7MULQAY4P5ANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ7Y7G4VNUHV75FIV3QAY4P5A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNLHY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK4YROJSCCC7VLW6YHLQAY4P5A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNLHY#issuecomment-513987999",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJK4YROJSCCC7VLW6YHLQAY4P5A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNLHY#issuecomment-513987999",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36417edc63b_33403fb0efccd960110561c--


From nobody Mon Jul 22 16:15:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 46479120048 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 16:15:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id x4AeTXmll_vQ for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 16:15:12 -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 E2119120045 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 16:15:11 -0700 (PDT)
Date: Mon, 22 Jul 2019 16:15:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563837311; bh=nAeH/3RttyOsYidUMMnrT1JpE3KxHuAgC7Efzt0dLPw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=x92q22/dT9uKsdk6VkB73AlDpbPWq4wTzmeHqeBP2l0Yrdpu4FDFDGPeOUf56WlCq 29HR97Jlsu+OetrrS/I0UWUqT9jNlu0vR03slTRhEIZW37jMTiyFOe2BZ2ELH4qBnw gSdj3mTms4cikcR7BAlcGZSFc9vtv0K5cP2ShW9c=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75QZDN5CMLONHWNC53IN277EVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c513989715@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36437f45842_76953fd89fccd96014357e8"; 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/r6nWWrlq8MtDiHFN3eHMTaOSv88>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 22 Jul 2019 23:15:14 -0000

----==_mimepart_5d36437f45842_76953fd89fccd96014357e8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

devli's advocate H3's inherent prioritization scheme can use request generation order (stream ID), a server uses this to either FIFO or round-robin. This is NOT optimal but is it disastrous enough that we absolutely should not be shipped that way?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2922#issuecomment-513989715
----==_mimepart_5d36437f45842_76953fd89fccd96014357e8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>devli's advocate H3's inherent prioritization scheme can use request generation order (stream ID), a server uses this to either FIFO or round-robin. This is NOT optimal but is it disastrous enough that we absolutely should not be shipped that way?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications&amp;email_token=AFTOJKY33EDLVS7ZSCZEHR3QAY5P7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNYUY#issuecomment-513989715">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQWQX3I25NO7J2MGTQAY5P7ANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4SFOLX7ZQK2GNXYVDQAY5P7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNYUY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKY33EDLVS7ZSCZEHR3QAY5P7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNYUY#issuecomment-513989715",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKY33EDLVS7ZSCZEHR3QAY5P7A5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RNYUY#issuecomment-513989715",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36437f45842_76953fd89fccd96014357e8--


From nobody Mon Jul 22 19:37:53 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0D21212007A for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 19:37:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bwGjgQSB5dEX for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 19:37: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 12AC9120047 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 19:37:50 -0700 (PDT)
Date: Mon, 22 Jul 2019 19:37:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563849468; bh=S36IxXG+RWWMWLs62F0OlKgNJUo6HhzCcLY9IxU9ZlA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sXuETBBbk2a6ZqhBTPS64uftKVpJt2TcMqbYQaB1EgRydRqShgQMV6oU9ihl5Rruo oZcuUDTqdDLtxs+SVoYfX1RV8Sg66uDgy3eiGzZta77oguFWRNBktj+IvJ0O+piIpy Uv6KqufYEgATDI6rsCUIYrCE1X5OOZ2tFqQVhB/I=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK55YXCMVQUES6DHYSN3IOSXZEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514029964@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3672fc80652_2cbe3ffcc00cd96888865"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GpYUiCur_j8o-6tU_mbMPQHVQxY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 02:37:52 -0000

----==_mimepart_5d3672fc80652_2cbe3ffcc00cd96888865
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

What do people think about allowing the server to use a zero-length connection ID only if the client chose to use a zero-length connection ID?

By selecting a zero-length connection ID, the client is indicating it will not reuse the port. So the server can rely on just the source ip and port to identify the 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/2844#issuecomment-514029964
----==_mimepart_5d3672fc80652_2cbe3ffcc00cd96888865
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>What do people think about allowing the server to use a zero-length connection ID only if the client chose to use a zero-length connection ID?</p>
<p>By selecting a zero-length connection ID, the client is indicating it will not reuse the port. So the server can rely on just the source ip and port to identify the 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/2844?email_source=notifications&amp;email_token=AFTOJKZLURCOXO3C3MBFBP3QAZVHZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RXTDA#issuecomment-514029964">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7M3IHG2RQYLQIUASLQAZVHZANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK23VCBHO7KGFERYVOTQAZVHZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RXTDA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJKZLURCOXO3C3MBFBP3QAZVHZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RXTDA#issuecomment-514029964",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJKZLURCOXO3C3MBFBP3QAZVHZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RXTDA#issuecomment-514029964",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3672fc80652_2cbe3ffcc00cd96888865--


From nobody Mon Jul 22 19:46:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5F2CC120091 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 19:46:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.353
X-Spam-Level: 
X-Spam-Status: No, score=-6.353 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IE1h1tjgiICX for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 19:45:58 -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 8315012007A for <quic-issues@ietf.org>; Mon, 22 Jul 2019 19:45: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 E8D1C8C0C32 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 19:45:56 -0700 (PDT)
Date: Mon, 22 Jul 2019 19:45:56 -0700
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TCNT3AZZOSUSUUC53IOTWJEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514031468@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3674e4d8a81_327d3fc9b16cd968235976"; 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/-7kSdH0y4AuCYNsdDlaejGOLZYI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 02:46:00 -0000

----==_mimepart_5d3674e4d8a81_327d3fc9b16cd968235976
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That seems better than forbidding it outright, at least.

-- 
You are receiving 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/2844#issuecomment-514031468
----==_mimepart_5d3674e4d8a81_327d3fc9b16cd968235976
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That seems better than forbidding it outright, at least.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK74ZH7J7773R3ZMQDLQAZWGJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RX63A#issuecomment-514031468">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4S4NE37Q75GMILPLQAZWGJANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3Q7VZ43N6M35NDHX3QAZWGJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RX63A.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK74ZH7J7773R3ZMQDLQAZWGJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RX63A#issuecomment-514031468",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK74ZH7J7773R3ZMQDLQAZWGJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RX63A#issuecomment-514031468",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3674e4d8a81_327d3fc9b16cd968235976--


From nobody Mon Jul 22 19:54:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7EE67120091 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 19:54:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Jf9BFCt1tHwp for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 19:54:14 -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 67B66120047 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 19:54:14 -0700 (PDT)
Date: Mon, 22 Jul 2019 19:54:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563850453; bh=q53zH1stPiPWlOVzskk+xBLJVv4d76yXAUhYSVEewK0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ezn3jRL422f1ZWpauRRBy4LKw7g2Xr/x0hxMyBId3rJmH3lk2wf+wqcpGhdJ7bOPH tPeN5gLOCoVyR+D223zNwbpxGSpe51aSBolJvO7qD8E3UYuDs5+JsiOVU6rSFldHY3 bBJrJM6eK3uR2Em7FpUlRtQSCGqTYAbrLkp4DFN8=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3VGMY5WC44NRVXX5N3IOUVJEVBNHHBWZGHNE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2834/514033039@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2834@github.com>
References: <quicwg/base-drafts/issues/2834@github.com>
Subject: Re: [quicwg/base-drafts] Long Header Packets and Routing Connection IDs (#2834)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3676d4f17ba_4603fd2418cd9641368a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Fy57n0lGa9LIacl6JMOuSxw8dI4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 02:54:16 -0000

----==_mimepart_5d3676d4f17ba_4603fd2418cd9641368a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That's a long thread, but I believe I was pointing out this issue for at least a year now. Actually, we had "long headers have client's CID" for a while and then it changed.

I can see two real options ("identify that a CID is server's just by looking at it" I do not consider an option):

1. Make it explicit whose CID it is, for example by mandating that long header packets have client CID.  Then have LB keep "ClientCID -> backend" mapping for the duration of the handshake.

2. Keep it confusing whose CID is in a long header packet. Then have LB keep "4-tuple -> backend" mapping for the duration of the handshake. The implication is that no two concurrent handshakes are allowed on a single 4-tuple -- the statement that WG agreed to in NY in response to exactly this 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/2834#issuecomment-514033039
----==_mimepart_5d3676d4f17ba_4603fd2418cd9641368a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That's a long thread, but I believe I was pointing out this issue for at least a year now. Actually, we had "long headers have client's CID" for a while and then it changed.</p>
<p>I can see two real options ("identify that a CID is server's just by looking at it" I do not consider an option):</p>
<ol>
<li>
<p>Make it explicit whose CID it is, for example by mandating that long header packets have client CID.  Then have LB keep "ClientCID -&gt; backend" mapping for the duration of the handshake.</p>
</li>
<li>
<p>Keep it confusing whose CID is in a long header packet. Then have LB keep "4-tuple -&gt; backend" mapping for the duration of the handshake. The implication is that no two concurrent handshakes are allowed on a single 4-tuple -- the statement that WG agreed to in NY in response to exactly this issue.</p>
</li>
</ol>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2834?email_source=notifications&amp;email_token=AFTOJK4TEMUAHCHFT4XRNDTQAZXFJA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RYLDY#issuecomment-514033039">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VCJA3V3E6QIPA7Q3QAZXFJANCNFSM4H2ZGBSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7J4X4DVUC3FGAR2TDQAZXFJA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RYLDY.gif" height="1" width="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/2834?email_source=notifications\u0026email_token=AFTOJK4TEMUAHCHFT4XRNDTQAZXFJA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RYLDY#issuecomment-514033039",
"url": "https://github.com/quicwg/base-drafts/issues/2834?email_source=notifications\u0026email_token=AFTOJK4TEMUAHCHFT4XRNDTQAZXFJA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RYLDY#issuecomment-514033039",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3676d4f17ba_4603fd2418cd9641368a8--


From nobody Mon Jul 22 20:18:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4B746120091 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 20:18:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id megMDC5P-3Tx for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 20:18: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 D724512003E for <quic-issues@ietf.org>; Mon, 22 Jul 2019 20:18:02 -0700 (PDT)
Date: Mon, 22 Jul 2019 20:18:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563851881; bh=BB3OGsvKej3bvxMjnM3gFKXeKIhdJ5FAhyPMsHNBHTk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OY1bZ1JL+fO04+15+pOFaoeVMAK72aTbSukMMDqwSOUF3+ZO+qR61fj4yKBfDylbd qIukQUeGhScjmO8EHXlikQDOfynJOPHRLa7apxbn2JPanLcqBG6qD8f08RrAe/iBq3 DCPG/QFLzFA9Iey2nm2oZWnJp5NmbdeoPzdG/jBg=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4QPFC5KC4WBKBGCDN3IOXOTEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/c514037478@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d367c69e24bd_6cbe3f988eccd95c1623a7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FEicTVNWoXwVBsdmkDu_bERYOSE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 03:18:04 -0000

----==_mimepart_5d367c69e24bd_6cbe3f988eccd95c1623a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think PR is fine, right I would had added an explicit explanation of when a server may consider sending thing TP (other paths are likely to either not work or be very inefficient) and what a client that needs to migrate to a new path should do (recheck DNS from the new path and reconnect).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2893#issuecomment-514037478
----==_mimepart_5d367c69e24bd_6cbe3f988eccd95c1623a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think PR is fine, right I would had added an explicit explanation of when a server may consider sending thing TP (other paths are likely to either not work or be very inefficient) and what a client that needs to migrate to a new path should do (recheck DNS from the new path and reconnect).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications&amp;email_token=AFTOJK3GT7YEFSONTEMKJKLQAZZ6TA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RZNZQ#issuecomment-514037478">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYDCUNBQYMAAIEUZJDQAZZ6TANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7S7A3JFJJE3CF4PLDQAZZ6TA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RZNZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK3GT7YEFSONTEMKJKLQAZZ6TA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RZNZQ#issuecomment-514037478",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK3GT7YEFSONTEMKJKLQAZZ6TA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2RZNZQ#issuecomment-514037478",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d367c69e24bd_6cbe3f988eccd95c1623a7--


From nobody Mon Jul 22 21:03:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BEB1112003F for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 21:03:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZUSUngMxwmP8 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 21:03: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 45788120018 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 21:03:03 -0700 (PDT)
Date: Mon, 22 Jul 2019 21:03:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563854582; bh=3/IrNX5Y3PDnx1oljkJBj/NdRLvZ+eN6M1JWC2EBP0I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TLYnTfbUxdV4LVI+jbLtf7cngAr66X/YM/10GozE58frrCvygPaZ744v8R7YPWB10 UJpbrggCjUKrLg8VRGUWnr4cx+S1QnSu27R/vMu9UzaQUJ4vWuK7+V1jC87LWALh6V hPE8s/PLl6Kj+blcTxpKh3x3xTd+DU2dyXRh5iDE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5F5RNA4AQY4OSLPIN3IO4XNEVBNHHBYFV37I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2922/c514045281@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2922@github.com>
References: <quicwg/base-drafts/pull/2922@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2922)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3686f660d47_70b03fdb7bccd968139377"; 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/rz2uF-Wi_y08aYjUtoK-N84GLJk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 04:03:05 -0000

----==_mimepart_5d3686f660d47_70b03fdb7bccd968139377
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Can we please have this discussion on the issue #2924, and not on this 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/2922#issuecomment-514045281
----==_mimepart_5d3686f660d47_70b03fdb7bccd968139377
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Can we please have this discussion on the issue <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="471349371" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2924" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2924/hovercard" href="https://github.com/quicwg/base-drafts/issues/2924">#2924</a>, and not on this 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/2922?email_source=notifications&amp;email_token=AFTOJKYADG62FFSZTJY2NO3QAZ7HNA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R3KYI#issuecomment-514045281">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZTXVDCP42FHNCCHLQAZ7HNANCNFSM4IF3PEFA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6B7F5EA5DXAM42E5TQAZ7HNA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R3KYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYADG62FFSZTJY2NO3QAZ7HNA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R3KYI#issuecomment-514045281",
"url": "https://github.com/quicwg/base-drafts/pull/2922?email_source=notifications\u0026email_token=AFTOJKYADG62FFSZTJY2NO3QAZ7HNA5CNFSM4IF3PEFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R3KYI#issuecomment-514045281",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3686f660d47_70b03fdb7bccd968139377--


From nobody Mon Jul 22 22:00:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D1C7212007C for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:00:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lyyBSPK4iLzT for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:00: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 E9B53120033 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 22:00:08 -0700 (PDT)
Date: Mon, 22 Jul 2019 22:00:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563858008; bh=M7w6OGX64V4hNqZK8fuCYTtJ0gGtZFlndASENHVj4sI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=j3wfLpqtvz8nN0WKX7fl55GZItJXGFhpFGS3lR0vuyJtRIyZhu5i+CMM1R8+pdN+g e5jl7/f0a8I4ay9EGV7bwvtx+6cGkMpScLiWfubT4pfWEgvGg37iO3+K8Fhfs3tLlr IOocog0aV8eXEaW25wUrI4KT3KkFid3+aC6ekXIA=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56XEYSZYHGFS7SYBN3IPDNREVBNHHBYGSUE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925@github.com>
Subject: [quicwg/base-drafts] Add initial threat model appendix (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36945896c4_1f5b3fa4bd2cd96c55075"; 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/FvtLNdFQ1nxI7LOocZmPuJL26uk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 05:00:11 -0000

----==_mimepart_5d36945896c4_1f5b3fa4bd2cd96c55075
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This adds an appendix for a QUIC threat model, filling in only the migration section (for #2143, some of the rest of the threat model will come in #2387).

Some wordsmithing can be applied here, and we may want additional issues to fill out detailed descriptions of some of the worst attacks and outline heuristics that might help, but for now I'm focusing this purely on documenting what's possible/not possible for an attacker to do today.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2925

-- Commit Summary --

  * Initial threat model appendix

-- File Changes --

    M draft-ietf-quic-transport.md (171)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2925.patch
https://github.com/quicwg/base-drafts/pull/2925.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/2925

----==_mimepart_5d36945896c4_1f5b3fa4bd2cd96c55075
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This adds an appendix for a QUIC threat model, filling in only the migration section (for <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="390683625" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2143" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2143/hovercard" href="https://github.com/quicwg/base-drafts/issues/2143">#2143</a>, some of the rest of the threat model will come in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="404587719" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2387" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2387/hovercard" href="https://github.com/quicwg/base-drafts/issues/2387">#2387</a>).</p>
<p>Some wordsmithing can be applied here, and we may want additional issues to fill out detailed descriptions of some of the worst attacks and outline heuristics that might help, but for now I'm focusing this purely on documenting what's possible/not possible for an attacker to do today.</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/2925'>https://github.com/quicwg/base-drafts/pull/2925</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Initial threat model appendix</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2925/files#diff-0">draft-ietf-quic-transport.md</a>
    (171)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2925.patch'>https://github.com/quicwg/base-drafts/pull/2925.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2925.diff'>https://github.com/quicwg/base-drafts/pull/2925.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/2925?email_source=notifications&amp;email_token=AFTOJKYZTS5PZ3CYADHEUSLQA2F5RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA2KQTQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4JMYXX2OS3W55ZSHLQA2F5RANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ACTUNURAZT3OWRCLQA2F5RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA2KQTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJKYZTS5PZ3CYADHEUSLQA2F5RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA2KQTQ",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJKYZTS5PZ3CYADHEUSLQA2F5RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA2KQTQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d36945896c4_1f5b3fa4bd2cd96c55075--


From nobody Mon Jul 22 22:06:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4AB5012004F for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:06:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YdfaJuhzyc6i for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:06:25 -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 BBABA120041 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 22:06:25 -0700 (PDT)
Date: Mon, 22 Jul 2019 22:06:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563858384; bh=k974lxRRfvZI++ERNX2yBjq4eYzxcsoJ/ceQhpIx8sM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iYFAOHCXWn1XSHmen61dQzEm4W2vTTFGtDbRxfngs9taOMrMctiEFbIaX5wN1tyhn 0aUQ8vEPyc4zd9QSEdfqMa+REe9x0HpRrL9BZMzAsoUkh79NobJ7Fa0dqBeTgYnVsW uss9wnMCChCmJnbU+UI8xukV3fKDPA3JKrkZL4qk=
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/2925/push/3844734846@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2925@github.com>
References: <quicwg/base-drafts/pull/2925@github.com>
Subject: Re: [quicwg/base-drafts] Add initial threat model appendix (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3695d0c0a42_4e383faecd6cd96c845c5"; 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/-OxAlWa71oNNABWMxtNerrQJIEA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 05:06:27 -0000

----==_mimepart_5d3695d0c0a42_4e383faecd6cd96c845c5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 1 commit.

c22e24fb18b952d4ce2ceb7447d5d8c355c2508a  Fix typo


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2925/files/d3f4e35f14a617f7e142dbbdbbfb72e7f267b48a..c22e24fb18b952d4ce2ceb7447d5d8c355c2508a

----==_mimepart_5d3695d0c0a42_4e383faecd6cd96c845c5
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/c22e24fb18b952d4ce2ceb7447d5d8c355c2508a">c22e24f</a>  Fix typo</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/2925/files/d3f4e35f14a617f7e142dbbdbbfb72e7f267b48a..c22e24fb18b952d4ce2ceb7447d5d8c355c2508a?email_source=notifications&amp;email_token=AFTOJK5P2GHZ3SH3KXWCMI3QA2GVBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHA2DINZTGQ4DINQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2P4VY2NVPR5FWZHWDQA2GVBANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVDKMMN4VOAYWGORLQA2GVBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHA2DINZTGQ4DINQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2925/files/d3f4e35f14a617f7e142dbbdbbfb72e7f267b48a..c22e24fb18b952d4ce2ceb7447d5d8c355c2508a?email_source=notifications\u0026email_token=AFTOJK5P2GHZ3SH3KXWCMI3QA2GVBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHA2DINZTGQ4DINQ",
"url": "https://github.com/quicwg/base-drafts/pull/2925/files/d3f4e35f14a617f7e142dbbdbbfb72e7f267b48a..c22e24fb18b952d4ce2ceb7447d5d8c355c2508a?email_source=notifications\u0026email_token=AFTOJK5P2GHZ3SH3KXWCMI3QA2GVBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHA2DINZTGQ4DINQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3695d0c0a42_4e383faecd6cd96c845c5--


From nobody Mon Jul 22 22:08:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4FDE1120041 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:08:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BiMwzhKRljhC for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:08: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 2453C120033 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 22:08:29 -0700 (PDT)
Date: Mon, 22 Jul 2019 22:08:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563858508; bh=ozU4GH2eE6NigN8BXQ4CKYuIIxN6tUdb2MH9QB9K2zg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Hfxe/K/Eebb+eaD8/8ix6vnGhnwwd6S/njTlPVIXxsUX6m/eRmlGNzxh/PvlsBolH vfYzJKifQfXzYbo4QV8urVCl9hkUbkWm8//lF3fvqkZIiWpIZoVIxeyANJkdLQl3JD vQfO2g3Rm/vd0M5/1rDCgh4sM2kIEyhbsf4AwVv8=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFHSR7RZHJPIURJB53IPEMZEVBNHHBOSK35E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2143/514055926@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2143@github.com>
References: <quicwg/base-drafts/issues/2143@github.com>
Subject: Re: [quicwg/base-drafts] Be more conservative about migration? (#2143)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36964c1820b_4def3fdbf06cd96c65535"; 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/m12K6pWXcmOTpNS6z_LRg9-8Nzw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 05:08:31 -0000

----==_mimepart_5d36964c1820b_4def3fdbf06cd96c65535
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

The PR (so far) establishes the following definitions and guarantees:=0D
=0D
### On-Path Attacker=0D
An on-path attacker can:=0D
- Inspect packets=0D
- Modify unencrypted packet headers=0D
- Inject new packets=0D
- Delay packets=0D
- Drop packets=0D
=0D
An on-path attacker cannot:=0D
- Modify encrypted packet payloads=0D
=0D
### Off-Path Attacker=0D
An off-path attacker can:=0D
- Inspect packets=0D
- Inject new packets=0D
=0D
An off-path attacker cannot:=0D
- Modify any part of a packet=0D
- Delay packets=0D
- Drop packets=0D
=0D
### Limited Off-Path Attacker=0D
A limited on-path attacker can:=0D
- Inspect packets=0D
- Inject new packets=0D
- Modify unencrypted packet headers=0D
=0D
A limited on-path attacker cannot:=0D
- Delay packets beyond the original packet duration=0D
- Drop packets=0D
- Modify encrypted packet payloads=0D
=0D
## Guarantees=0D
### On-Path Attacker=0D
1. An on-path attacker can interrupt a QUIC connection, causing it to fai=
l if it cannot migrate to a new path that does not contain the attacker. =
This can be achieved by dropping all packets, modifying them so that they=
 fail to decrypt, or other methods.=0D
2. An on-path attacker can prevent migration to a new path for which the =
attacker is also on-path by causing path validation to fail on the new pa=
th.=0D
3. An on-path attacker cannot prevent a client from migrating to a path f=
or which the attacker is not on-path.=0D
4. An on-path attacker can reduce the throughput of a connection by delay=
ing packets or dropping them.=0D
=0D
### Off-Path Attacker=0D
1. An off-path attacker can race packets and attempt to become a =E2=80=9C=
limited=E2=80=9D on-path attacker.=0D
2. An off-path attacker can cause path validation to succeed for forwarde=
d packets with the source address listed as the off-path attacker as long=
 as it can provide improved connectivity between the client and the serve=
r.=0D
3. An off-path attacker cannot cause a connection to close.=0D
4. An off-path attacker cannot cause migration to a new path to fail if i=
t cannot observe the new path.=0D
5. An off-path attacker can become a limited on-path attacker during migr=
ation to a new path for which it is also an off-path attacker.=0D
6. An off-path attacker can become a limited on-path attacker by affectin=
g shared NAT state such that it sends packets to the server from the same=
 IP address and port that the client originally used.=0D
=0D
### Limited Off-Path Attacker=0D
1. A limited on-path attacker cannot cause an active connection to close.=
=0D
2. A limited on-path attacker cannot cause an idle connection to close if=
 the client is first to resume activity.=0D
3. A limited on-path attacker can cause an idle connection to be deemed l=
ost if the server is the first to resume activity.=0D
=0D
There's more descriptive text in the PR, as well, covering in a bit more =
detail our expectations about capabilities of the attackers, pathological=
ly worst-case behaviors they may engage in, etc.=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/2143#issuecomment-514055926=

----==_mimepart_5d36964c1820b_4def3fdbf06cd96c65535
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>The PR (so far) establishes the following definitions and guarantees:<=
/p>=0D
<h3>On-Path Attacker</h3>=0D
<p>An on-path attacker can:</p>=0D
<ul>=0D
<li>Inspect packets</li>=0D
<li>Modify unencrypted packet headers</li>=0D
<li>Inject new packets</li>=0D
<li>Delay packets</li>=0D
<li>Drop packets</li>=0D
</ul>=0D
<p>An on-path attacker cannot:</p>=0D
<ul>=0D
<li>Modify encrypted packet payloads</li>=0D
</ul>=0D
<h3>Off-Path Attacker</h3>=0D
<p>An off-path attacker can:</p>=0D
<ul>=0D
<li>Inspect packets</li>=0D
<li>Inject new packets</li>=0D
</ul>=0D
<p>An off-path attacker cannot:</p>=0D
<ul>=0D
<li>Modify any part of a packet</li>=0D
<li>Delay packets</li>=0D
<li>Drop packets</li>=0D
</ul>=0D
<h3>Limited Off-Path Attacker</h3>=0D
<p>A limited on-path attacker can:</p>=0D
<ul>=0D
<li>Inspect packets</li>=0D
<li>Inject new packets</li>=0D
<li>Modify unencrypted packet headers</li>=0D
</ul>=0D
<p>A limited on-path attacker cannot:</p>=0D
<ul>=0D
<li>Delay packets beyond the original packet duration</li>=0D
<li>Drop packets</li>=0D
<li>Modify encrypted packet payloads</li>=0D
</ul>=0D
<h2>Guarantees</h2>=0D
<h3>On-Path Attacker</h3>=0D
<ol>=0D
<li>An on-path attacker can interrupt a QUIC connection, causing it to fa=
il if it cannot migrate to a new path that does not contain the attacker.=
 This can be achieved by dropping all packets, modifying them so that the=
y fail to decrypt, or other methods.</li>=0D
<li>An on-path attacker can prevent migration to a new path for which the=
 attacker is also on-path by causing path validation to fail on the new p=
ath.</li>=0D
<li>An on-path attacker cannot prevent a client from migrating to a path =
for which the attacker is not on-path.</li>=0D
<li>An on-path attacker can reduce the throughput of a connection by dela=
ying packets or dropping them.</li>=0D
</ol>=0D
<h3>Off-Path Attacker</h3>=0D
<ol>=0D
<li>An off-path attacker can race packets and attempt to become a =E2=80=9C=
limited=E2=80=9D on-path attacker.</li>=0D
<li>An off-path attacker can cause path validation to succeed for forward=
ed packets with the source address listed as the off-path attacker as lon=
g as it can provide improved connectivity between the client and the serv=
er.</li>=0D
<li>An off-path attacker cannot cause a connection to close.</li>=0D
<li>An off-path attacker cannot cause migration to a new path to fail if =
it cannot observe the new path.</li>=0D
<li>An off-path attacker can become a limited on-path attacker during mig=
ration to a new path for which it is also an off-path attacker.</li>=0D
<li>An off-path attacker can become a limited on-path attacker by affecti=
ng shared NAT state such that it sends packets to the server from the sam=
e IP address and port that the client originally used.</li>=0D
</ol>=0D
<h3>Limited Off-Path Attacker</h3>=0D
<ol>=0D
<li>A limited on-path attacker cannot cause an active connection to close=
.</li>=0D
<li>A limited on-path attacker cannot cause an idle connection to close i=
f the client is first to resume activity.</li>=0D
<li>A limited on-path attacker can cause an idle connection to be deemed =
lost if the server is the first to resume activity.</li>=0D
</ol>=0D
<p>There's more descriptive text in the PR, as well, covering in a bit mo=
re detail our expectations about capabilities of the attackers, pathologi=
cally worst-case behaviors they may engage in, etc.</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/2143?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK4JU3SHL2RNDGCLX43QA2G4ZA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R555Q#issuecomment-514055926">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK3FZL4S6QBVFNVH6HDQA2G4ZANCNFSM4GKGTPSA">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJKYAVWXND6BS2JOFFATQ=
A2G4ZA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2R555Q.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/issues/2143?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK4JU3SHL2RNDGCLX43QA2G4ZA5CNFSM4=
GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R555=
Q#issuecomment-514055926",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2143?email_source=3D=
notifications\u0026email_token=3DAFTOJK4JU3SHL2RNDGCLX43QA2G4ZA5CNFSM4GKG=
TPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R555Q#i=
ssuecomment-514055926",=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_5d36964c1820b_4def3fdbf06cd96c65535--


From nobody Mon Jul 22 22:46:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 54EC2120096 for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:45:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FPSKHrp6RoNl for <quic-issues@ietfa.amsl.com>; Mon, 22 Jul 2019 22:45: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 42955120041 for <quic-issues@ietf.org>; Mon, 22 Jul 2019 22:45:56 -0700 (PDT)
Date: Mon, 22 Jul 2019 22:45:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563860755; bh=NawJJPyC8IjSmHlH0jWZ1ywcVRLoX2tbWPTnkICndyI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xH8VGnFHFWOaTde1AtUASAL9oFQaNEWWvD6N56zTAFeXl2UyPcUPnvNvTtm9mXd6a YPo09+o/yarmo3Sm/rGUp1TcvIQm7s8RoG3/NXcBgPdAn90Tovyo2o8aHNUMLgx8Hz lApKnF8X2gpmW1SVbeoKeLxm0138bw+VJ9tyICP8=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2Y22UILEY6X4USU553IPIZHEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514062888@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d369f133f170_45783fe3910cd960382232"; 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/0xeXuAx8PaJBSGeelpbPE4Yk3xQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 05:45:59 -0000

----==_mimepart_5d369f133f170_45783fe3910cd960382232
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

An attempt to summarise some of my points stated on the PR:

Prioritisation of contending data egressing from a QUIC endpoint is an important property. In HTTP/3, the most applicable use case is concurrent response data. 

Considering how well this property is achieved, H2's prioritisation scheme - frame-based tree building requiring chatty exchanges of signals - in practice offers little demonstrable advantage over its anithesis - static absolute priorities. Worse still the challenges of realizing the flexibility of the dependency tree has led to static priority structures that are built the same way every time. One could argue that the success criteria for H2's prioritisation is abysmal because it has been shown that doing nothing is better than doing something*.

Research has shown that prioritisation is maximally effective when adapted to the needs of the application instance (aka specific web page). However, experience has shown that using frame-based tree building to do this is unachievable across a meaningful population of HTTP implementations within the lifetime of a protocol generation. Therefore, it is undesirable to port the same system to the next generation unless it is expected that the present issues can be fixed or corrected. No evidence of that has been presented.

Removing frame-based tree building does not remove all prioritisation signals. It reduces the amplitude of the signal but the waveform is still there is the form of request generation order and resource type. Enhancing this signal with deployment experience is the next step, which may or may not need to happen immediately and may or may not result in a single answer.

* admittadly in some, not all, 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/issues/2924#issuecomment-514062888
----==_mimepart_5d369f133f170_45783fe3910cd960382232
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>An attempt to summarise some of my points stated on the PR:</p>
<p>Prioritisation of contending data egressing from a QUIC endpoint is an important property. In HTTP/3, the most applicable use case is concurrent response data.</p>
<p>Considering how well this property is achieved, H2's prioritisation scheme - frame-based tree building requiring chatty exchanges of signals - in practice offers little demonstrable advantage over its anithesis - static absolute priorities. Worse still the challenges of realizing the flexibility of the dependency tree has led to static priority structures that are built the same way every time. One could argue that the success criteria for H2's prioritisation is abysmal because it has been shown that doing nothing is better than doing something*.</p>
<p>Research has shown that prioritisation is maximally effective when adapted to the needs of the application instance (aka specific web page). However, experience has shown that using frame-based tree building to do this is unachievable across a meaningful population of HTTP implementations within the lifetime of a protocol generation. Therefore, it is undesirable to port the same system to the next generation unless it is expected that the present issues can be fixed or corrected. No evidence of that has been presented.</p>
<p>Removing frame-based tree building does not remove all prioritisation signals. It reduces the amplitude of the signal but the waveform is still there is the form of request generation order and resource type. Enhancing this signal with deployment experience is the next step, which may or may not need to happen immediately and may or may not result in a single answer.</p>
<ul>
<li>admittadly in some, not all, cases.</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/2924?email_source=notifications&amp;email_token=AFTOJK7N2TOWI2YONPVT7QLQA2LJHA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R7UKA#issuecomment-514062888">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK53V2YV5F7BG22SM3TQA2LJHANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TNU27KMUFU3GGKNTQA2LJHA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R7UKA.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK7N2TOWI2YONPVT7QLQA2LJHA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R7UKA#issuecomment-514062888",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK7N2TOWI2YONPVT7QLQA2LJHA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2R7UKA#issuecomment-514062888",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d369f133f170_45783fe3910cd960382232--


From nobody Tue Jul 23 03:06:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 603C7120147 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 03:06:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zr3IE9eGGIJT for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 03:05:58 -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 AA42512010C for <quic-issues@ietf.org>; Tue, 23 Jul 2019 03:05:58 -0700 (PDT)
Date: Tue, 23 Jul 2019 03:05:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563876357; bh=NKxDpjxew0YkJyDTbcqo6D86E5ugV9ljymP2hz6Y7hQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dQrjoC5Sqf3Cf+GOR8L2yEpZzH+MTPMRGuCo+RjiPFxuBT/CoYwFSLJXrHGuK9HKa eFDiakNu40te3XpDqF00qMBbpqNuhL0Hr0Ypq6bXpVhjIETXJF739g1Huy3F82wU9F grB5Vr9I1UrtmdCJgA94w91yMcGWrUVsQnePHoT4=
From: Robin Marx <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NB5KXJ5GI3LPCSRF3IQHILEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514144677@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36dc059df66_64bd3fb1e4ecd968149597"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: rmarx
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Dz86HDnOJT2Zr56c_13ZDNj2HIA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 10:06:01 -0000

----==_mimepart_5d36dc059df66_64bd3fb1e4ecd968149597
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

I really like your signal/waveform analogy Lucas, so I'll try to use it t=
o make my point as well.

You view the removal of client-side signaling as just lowering the amplit=
ude of the waveform. I view it more as taking too few samples to still sa=
tisfy the Nyquist theorem. In other words: we are indeed still able to re=
construct _something_ from the signals server-side, but the result doesn'=
t (necessarily) look like the original anymore. This loss of information =
might be acceptable in some/most cases (important: acceptable, not optima=
l), but can be detrimental in an (important) subset of setups. =


I am mainly worried about the impact on more advanced recent and proposed=
 features, such as preload/prefetch, async/defer and priority hints. Thes=
e features were explicitly added to improve (load) performance and they a=
re difficult to adhere to without client-side scheduling. I predict that =
removing prioritization from H3 without a fallback will lead to performan=
ce-minded people having to provide 2 different versions of their sites, 1=
 for H2 and 1 for H3. For example, the H2 version can have async/defer/pr=
eloads mentioned in the <head> of the HTML, the H3 version without priori=
ties probably shouldn't. =


To also address your last "devil's advocate" from the other thread (https=
://github.com/quicwg/base-drafts/pull/2922#issuecomment-513989715): yes, =
FIFO willl work and won't be super-detrimental in most cases. However, it=
's been stated several times before that for H3 (and QUIC) to be successf=
ul and find adopters, it needs to have demonstrably better performance th=
an H2/TCP. You will not get that from a simple FIFO and also not from mor=
e complex server-side-only heuristics based on user-agent + content-type =
(your "low amplitude" signal). If you want H3 to outperform (best-in-clas=
s) H2, I feel we need **more** signals, not less. And yes, much of H3's p=
erf benefits will come from QUIC and 0-RTT etc. but even the Google paper=
 quotes just 8% (at best) and those benefits are not limited to QUIC (e.g=
., TCP fast open, TLS 1.3 early data). The current discourse seems to be =
you agree that the performance would be worse than for H2, but that that'=
s not an issue. I have a hard time understanding that point of view. =


In summary, I do not feel that server-side-**only** prioritization is a w=
orkable fallback solution (https://github.com/quicwg/base-drafts/pull/292=
2#issuecomment-513987999) (except maybe for implementations that were bro=
ken to start with... https://github.com/quicwg/base-drafts/pull/2922#issu=
ecomment-513983658) and while sticking our heads in the sand on this migh=
t allow us to "ship" QUIC and H3 "on schedule", I doubt the value of that=
 in the long run. I'm fine with removing H2's priority system, but shippi=
ng H3 without a decent replacement is [madness](https://resize.rbl.ms/sim=
age/https%3A%2F%2Fassets.rbl.ms%2F17438671%2F980x.gif/980%2C880/ILf9gZME9=
keiTx7T/img.gif). =


-- =

You are receiving 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/2924#issuecomment-514144677=

----==_mimepart_5d36dc059df66_64bd3fb1e4ecd968149597
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I really like your signal/waveform analogy Lucas, so I'll try to use i=
t to make my point as well.</p>
<p>You view the removal of client-side signaling as just lowering the amp=
litude of the waveform. I view it more as taking too few samples to still=
 satisfy the Nyquist theorem. In other words: we are indeed still able to=
 reconstruct <em>something</em> from the signals server-side, but the res=
ult doesn't (necessarily) look like the original anymore. This loss of in=
formation might be acceptable in some/most cases (important: acceptable, =
not optimal), but can be detrimental in an (important) subset of setups.<=
/p>
<p>I am mainly worried about the impact on more advanced recent and propo=
sed features, such as preload/prefetch, async/defer and priority hints. T=
hese features were explicitly added to improve (load) performance and the=
y are difficult to adhere to without client-side scheduling. I predict th=
at removing prioritization from H3 without a fallback will lead to perfor=
mance-minded people having to provide 2 different versions of their sites=
, 1 for H2 and 1 for H3. For example, the H2 version can have async/defer=
/preloads mentioned in the  of the HTML, the H3 version without prioritie=
s probably shouldn't.</p>
<p>To also address your last "devil's advocate" from the other thread (<a=
 class=3D"issue-link js-issue-link" data-error-text=3D"Failed to load iss=
ue title" data-id=3D"471251962" data-permission-text=3D"Issue title is pr=
ivate" data-url=3D"https://github.com/quicwg/base-drafts/issues/2922" dat=
a-hovercard-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base-draf=
ts/pull/2922/hovercard?comment_id=3D513989715&amp;comment_type=3Dissue_co=
mment" href=3D"https://github.com/quicwg/base-drafts/pull/2922#issuecomme=
nt-513989715">#2922 (comment)</a>): yes, FIFO willl work and won't be sup=
er-detrimental in most cases. However, it's been stated several times bef=
ore that for H3 (and QUIC) to be successful and find adopters, it needs t=
o have demonstrably better performance than H2/TCP. You will not get that=
 from a simple FIFO and also not from more complex server-side-only heuri=
stics based on user-agent + content-type (your "low amplitude" signal). I=
f you want H3 to outperform (best-in-class) H2, I feel we need <strong>mo=
re</strong> signals, not less. And yes, much of H3's perf benefits will c=
ome from QUIC and 0-RTT etc. but even the Google paper quotes just 8% (at=
 best) and those benefits are not limited to QUIC (e.g., TCP fast open, T=
LS 1.3 early data). The current discourse seems to be you agree that the =
performance would be worse than for H2, but that that's not an issue. I h=
ave a hard time understanding that point of view.</p>
<p>In summary, I do not feel that server-side-<strong>only</strong> prior=
itization is a workable fallback solution (<a class=3D"issue-link js-issu=
e-link" data-error-text=3D"Failed to load issue title" data-id=3D"4712519=
62" data-permission-text=3D"Issue title is private" data-url=3D"https://g=
ithub.com/quicwg/base-drafts/issues/2922" data-hovercard-type=3D"pull_req=
uest" data-hovercard-url=3D"/quicwg/base-drafts/pull/2922/hovercard?comme=
nt_id=3D513987999&amp;comment_type=3Dissue_comment" href=3D"https://githu=
b.com/quicwg/base-drafts/pull/2922#issuecomment-513987999">#2922 (comment=
)</a>) (except maybe for implementations that were broken to start with..=
. <a class=3D"issue-link js-issue-link" data-error-text=3D"Failed to load=
 issue title" data-id=3D"471251962" data-permission-text=3D"Issue title i=
s private" data-url=3D"https://github.com/quicwg/base-drafts/issues/2922"=
 data-hovercard-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base-=
drafts/pull/2922/hovercard?comment_id=3D513983658&amp;comment_type=3Dissu=
e_comment" href=3D"https://github.com/quicwg/base-drafts/pull/2922#issuec=
omment-513983658">#2922 (comment)</a>) and while sticking our heads in th=
e sand on this might allow us to "ship" QUIC and H3 "on schedule", I doub=
t the value of that in the long run. I'm fine with removing H2's priority=
 system, but shipping H3 without a decent replacement is <a href=3D"https=
://resize.rbl.ms/simage/https%3A%2F%2Fassets.rbl.ms%2F17438671%2F980x.gif=
/980%2C880/ILf9gZME9keiTx7T/img.gif" rel=3D"nofollow">madness</a>.</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/2924?email_source=3Dnotifications&amp;email_token=3D=
AFTOJKZHTTNPHYC6I3XNVDLQA3JYLA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2STTJI#issuecomment-514144677">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK7MV7ADLCJAPRN2QJ3QA3JYLANCNFSM4IF5GTWQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK7HSYXHCB5XKJFSLTLQ=
A3JYLA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2STTJI.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/issues/2924?email_source=
=3Dnotifications\u0026email_token=3DAFTOJKZHTTNPHYC6I3XNVDLQA3JYLA5CNFSM4=
IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2STTJ=
I#issuecomment-514144677",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=3D=
notifications\u0026email_token=3DAFTOJKZHTTNPHYC6I3XNVDLQA3JYLA5CNFSM4IF5=
GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2STTJI#i=
ssuecomment-514144677",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d36dc059df66_64bd3fb1e4ecd968149597--


From nobody Tue Jul 23 03:40:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 296081201DD for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 03:40:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4WqNZubIDvlI for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 03:40: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 20A061201D9 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 03:40:32 -0700 (PDT)
Date: Tue, 23 Jul 2019 03:40:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563878431; bh=Rp6ttgbPYQd7fuUY590MB9XNde6wOMe3rMxOAMNP5O4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Jz3GyhyVxXj/Q2xAIgSQl433gItRDzLgJceklzH2pqRTI6gd0AlBCrGXQrzafGxJo m9Du0V8KEZueAREEg97eEhpUv+YVaEjK5BJIEtmUhzdcHY1Vtyvf6dfZ45arxYuyGi e5ZfDBUUzwa87cEfMosBAvzsvRzvTm5pSITVUBEc=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WFCIUHZDVDDEIMEF3IQLJ5EVBNHHBYHCX2U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2926@github.com>
Subject: [quicwg/base-drafts] ICID or OCID? (#2926)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36e41ee35ff_2bf93ff04c0cd95c4330a9"; 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/JLU2fRgI_P3ncr0vTE15pFc7t5E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 10:40:34 -0000

----==_mimepart_5d36e41ee35ff_2bf93ff04c0cd95c4330a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

End of section 18, transport

> A client MUST NOT include an original connection ID, a stateless reset token, or a preferred address. A server MUST treat receipt of any of these transport parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.

It seems the term is "initial connection ID" not "original connection ID", at least I can't find it defined anywhere in 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/2926
----==_mimepart_5d36e41ee35ff_2bf93ff04c0cd95c4330a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>End of section 18, transport</p>
<blockquote>
<p>A client MUST NOT include an original connection ID, a stateless reset token, or a preferred address. A server MUST treat receipt of any of these transport parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.</p>
</blockquote>
<p>It seems the term is "initial connection ID" not "original connection ID", at least I can't find it defined anywhere in 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/2926?email_source=notifications&amp;email_token=AFTOJK6U5DDGUOEO3L2QXJLQA3NZ5A5CNFSM4IGCZG5KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA4K7KQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VGKWYONHIZZIWIODQA3NZ5ANCNFSM4IGCZG5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5JONUHZUHIJW4IU53QA3NZ5A5CNFSM4IGCZG5KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA4K7KQ.gif" height="1" width="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/2926?email_source=notifications\u0026email_token=AFTOJK6U5DDGUOEO3L2QXJLQA3NZ5A5CNFSM4IGCZG5KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA4K7KQ",
"url": "https://github.com/quicwg/base-drafts/issues/2926?email_source=notifications\u0026email_token=AFTOJK6U5DDGUOEO3L2QXJLQA3NZ5A5CNFSM4IGCZG5KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA4K7KQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36e41ee35ff_2bf93ff04c0cd95c4330a9--


From nobody Tue Jul 23 03:47:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D3A54120072 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 03:47:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5drH_pUOLfLm for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 03:47: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 01C5D12018D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 03:47:46 -0700 (PDT)
Date: Tue, 23 Jul 2019 03:47:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563878866; bh=q0JsXAcBWWhTkdw9Er8qbFPTNcECMR9P+ZM03sB4oDs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DkMS5yquDOHEWf7TBSDiT/zKDFSuvNgtXVfRwnvQPwEe+qAFZJ1Mo+apznFVOLRKD jNum+3+AfIamWPJXGOoS7rEnU8fkDZQ9GqEtgfdv31/IOxJo3LfvTLg3bXzDj+QA/y wkXyYCqy1YEdUIpLHz/CES9G1dRtU/KidzvOfLP0=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CRRK2LARI2HIS6XN3IQMFFEVBNHHBOSK35E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2143/514158030@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2143@github.com>
References: <quicwg/base-drafts/issues/2143@github.com>
Subject: Re: [quicwg/base-drafts] Be more conservative about migration? (#2143)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36e5d21047a_53813f9464ccd96c5252c5"; 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/9MAyS8ByR7fIhPRUN8XTOjBePcA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 10:47:49 -0000

----==_mimepart_5d36e5d21047a_53813f9464ccd96c5252c5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think there needs to be a distinction between observing off-path attackers and blind off-path attackers. A blind attacker can inject packets and for example try to force close a connection even if the traffic flow is not visible. Such an attacker is probably the most common.

-- 
You are receiving 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/2143#issuecomment-514158030
----==_mimepart_5d36e5d21047a_53813f9464ccd96c5252c5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think there needs to be a distinction between observing off-path attackers and blind off-path attackers. A blind attacker can inject packets and for example try to force close a connection even if the traffic flow is not visible. Such an attacker is probably the most common.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2143?email_source=notifications&amp;email_token=AFTOJKZ45U6SW2PVTVXWDKLQA3OVFA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2SW3TQ#issuecomment-514158030">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKOVVDYGIVNB7OQCLQA3OVFANCNFSM4GKGTPSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3YQWYTRR7UJQIAWXDQA3OVFA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2SW3TQ.gif" height="1" width="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/2143?email_source=notifications\u0026email_token=AFTOJKZ45U6SW2PVTVXWDKLQA3OVFA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2SW3TQ#issuecomment-514158030",
"url": "https://github.com/quicwg/base-drafts/issues/2143?email_source=notifications\u0026email_token=AFTOJKZ45U6SW2PVTVXWDKLQA3OVFA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2SW3TQ#issuecomment-514158030",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36e5d21047a_53813f9464ccd96c5252c5--


From nobody Tue Jul 23 05:38:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 65B14120318 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:38:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.898
X-Spam-Level: 
X-Spam-Status: No, score=-7.898 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 93nvgv6UFVeZ for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:38:11 -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 5E5F812031D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 05:38:11 -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 7C413A1E69 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 05:38:10 -0700 (PDT)
Date: Tue, 23 Jul 2019 05:38:10 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK35OWRGMII7RMB4DQ53IQZDFEVBNHHBYGSUE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925/review/265370124@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2925@github.com>
References: <quicwg/base-drafts/pull/2925@github.com>
Subject: Re: [quicwg/base-drafts] Add initial threat model appendix (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d36ffb26df41_fdb3fd423ccd968193929"; 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/u6puuwBe_B4bSKib3Vp_lea7vgs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 12:38:20 -0000

----==_mimepart_5d36ffb26df41_fdb3fd423ccd968193929
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

nibanks commented on this pull request.



> +properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
+
+## Handshake {#handshake-properties}
+
+TBD.
+
+## Short Headers {#short-headers-properties}
+
+TBD.
+
+## Connection Migration {#migration-properties}
+
+Connection Migration ({{migration}}) provides endpoints with the ability to

I don't think this intro paragraph is really necessary.

> @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
+
+## Handshake {#handshake-properties}

Maybe a 0-RTT section 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/pull/2925#pullrequestreview-265370124
----==_mimepart_5d36ffb26df41_fdb3fd423ccd968193929
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@nibanks</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r306288953">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
+
+## Handshake {#handshake-properties}
+
+TBD.
+
+## Short Headers {#short-headers-properties}
+
+TBD.
+
+## Connection Migration {#migration-properties}
+
+Connection Migration ({{migration}}) provides endpoints with the ability to
</pre>
<p>I don't think this intro paragraph is really necessary.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r306293386">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
+
+## Handshake {#handshake-properties}
</pre>
<p>Maybe a 0-RTT section 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/pull/2925?email_source=notifications&amp;email_token=AFTOJK4624DG6FK5WTJNK2DQA33TFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ITUDA#pullrequestreview-265370124">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7A7OIDICBG4L4DGXDQA33TFANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6QK75NSZJ4CVSJEUTQA33TFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ITUDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK4624DG6FK5WTJNK2DQA33TFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ITUDA#pullrequestreview-265370124",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK4624DG6FK5WTJNK2DQA33TFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7ITUDA#pullrequestreview-265370124",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d36ffb26df41_fdb3fd423ccd968193929--


From nobody Tue Jul 23 05:56:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C6253120119 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:56:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cDcpnnMrqvTG for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:56: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 53D8B1200DB for <quic-issues@ietf.org>; Tue, 23 Jul 2019 05:56:52 -0700 (PDT)
Date: Tue, 23 Jul 2019 05:56:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563886611; bh=+s6rGCYWFZnJss9PqamKilZMabuwHmmP9qEEQA0QT0Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kRVzd/g/aPwy2wxV/rDcymDjJFXYKnITBo1I9xT6GGZ8VPKZ87G/ueMFDxsOMqe/N xHnMCyFsZPDBXxO4eLagroVXu8lGaGD2bY5dKBBRWT2f3EQlLc14tAUOh2lyAbUxNu SzOmXGy6qcHvCOIeAjbZAMCxzrYQA9+5aKWoAKGo=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFQX7WPWPBPFAX2CN3IQ3JHEVBNHHBYGSUE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925/review/265386681@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2925@github.com>
References: <quicwg/base-drafts/pull/2925@github.com>
Subject: Re: [quicwg/base-drafts] Add initial threat model appendix (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3704132acce_58563f9a54acd964104294"; 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/dog4xFl_D3i9j0riiisqvRUkI00>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 12:56:55 -0000

----==_mimepart_5d3704132acce_58563f9a54acd964104294
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

erickinnear commented on this pull request.



> @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
+
+## Handshake {#handshake-properties}

Makes sense, good thinking! 
Probably others that might be interesting, too, not sure if it's worth adding a bunch of TBD sections, but definitely should have an issue covering writing up the 0-RTT 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/2925#discussion_r306301897
----==_mimepart_5d3704132acce_58563f9a54acd964104294
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r306301897">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
+
+## Handshake {#handshake-properties}
</pre>
<p>Makes sense, good thinking!<br>
Probably others that might be interesting, too, not sure if it's worth adding a bunch of TBD sections, but definitely should have an issue covering writing up the 0-RTT 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/2925?email_source=notifications&amp;email_token=AFTOJK3GWVL7RA5RL7TLDFLQA35ZHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7IXVOI#discussion_r306301897">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZDAWCA3Q7O4TEPC3QA35ZHANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6WDRWWFSCLYQNYKEDQA35ZHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7IXVOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK3GWVL7RA5RL7TLDFLQA35ZHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7IXVOI#discussion_r306301897",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK3GWVL7RA5RL7TLDFLQA35ZHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7IXVOI#discussion_r306301897",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3704132acce_58563f9a54acd964104294--


From nobody Tue Jul 23 05:57:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8A07A120119 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:57:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UgRw_KA_eZub for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:57:19 -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 C2D961200DB for <quic-issues@ietf.org>; Tue, 23 Jul 2019 05:57:19 -0700 (PDT)
Date: Tue, 23 Jul 2019 05:57:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563886639; bh=XlO63zjcMNBdn5bFsSOh855JKqXAxuwNfkfhPt4Df1I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k2TJhpg9qFDDryLc2pWofXdGyy12NXkj1/FWoTo8QUW0babRgQtJLffbLm1qlGQju abyzrga8pXIMRIhs53UprKg1dlXPxFowkQlzZmL5d3HlBXDwkl6G713XqsP3IhtSxt jHJPPU0InaYN9hdQzUwbLdei2Z2Z2XrXtbLiHKyQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ON6OJ7VXKO6XDCFN3IQ3K7EVBNHHBMFVXHI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/1860/514198065@github.com>
In-Reply-To: <quicwg/base-drafts/issues/1860@github.com>
References: <quicwg/base-drafts/issues/1860@github.com>
Subject: Re: [quicwg/base-drafts] ACK-only feedback loop in recovery instead of transport (#1860)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37042f1794d_3ab93ff2174cd9681225cd"; 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/Rhv0S-LbqsrIGVRQ_B7bw8NbGh4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 12:57:22 -0000

----==_mimepart_5d37042f1794d_3ab93ff2174cd9681225cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I created a PR that moves the text and removes text that is incorrect or misleading.  It still needs some editorial work, but I believe @martinthomson prefers a simple move first and then we can polish it up in a different PR?

Most importantly, is there anything that I removed that should stay in Recovery?  Nothing stuck out 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/issues/1860#issuecomment-514198065
----==_mimepart_5d37042f1794d_3ab93ff2174cd9681225cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I created a PR that moves the text and removes text that is incorrect or misleading.  It still needs some editorial work, but I believe <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> prefers a simple move first and then we can polish it up in a different PR?</p>
<p>Most importantly, is there anything that I removed that should stay in Recovery?  Nothing stuck out 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/issues/1860?email_source=notifications&amp;email_token=AFTOJK6EH7MIZAQVFJWABITQA3527A5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAUMI#issuecomment-514198065">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZDL2TZSN7H4O7JM3QA3527ANCNFSM4F3Y7JTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6A2HWELQDNFRM3JJ3QA3527A5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAUMI.gif" height="1" width="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/1860?email_source=notifications\u0026email_token=AFTOJK6EH7MIZAQVFJWABITQA3527A5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAUMI#issuecomment-514198065",
"url": "https://github.com/quicwg/base-drafts/issues/1860?email_source=notifications\u0026email_token=AFTOJK6EH7MIZAQVFJWABITQA3527A5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAUMI#issuecomment-514198065",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37042f1794d_3ab93ff2174cd9681225cd--


From nobody Tue Jul 23 05:58:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B3B9D120119 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:58:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HW_R7xcey0jw for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 05:58: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 293261200DB for <quic-issues@ietf.org>; Tue, 23 Jul 2019 05:58:00 -0700 (PDT)
Date: Tue, 23 Jul 2019 05:57:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563886679; bh=E9mbK8dsi1tTdYXzpbEzMgwdxcqn403CrNy48lYbK4U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DoRo2MOYJmuA5QRVAz4GrwfNpeiPli8+erbqyYYoIlY2bYZPT9rc0M6d1osjZj4Jz aM+i3qD/kKzxV7rdzy2LvegRBOrRHfoxWyUXwLZzfs0LLhiC6lEcUl996/YR46i2bN w+1XxJIxafdCiNbp1GfFOH8MjuhC70sV2uU9zKsY=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IX3VIYOYO4267DAN3IQ3NPEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514198308@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3704571efc8_13f83fc7018cd96416118a"; 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/R6A1TwIYK0S0Q4PK_TGrEe-6c3I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 12:58:02 -0000

----==_mimepart_5d3704571efc8_13f83fc7018cd96416118a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igorlord That doesn't work. As I client we use zero-length connection IDs and migration. The server cannot use our address and port as that would break connection migration and NAT rebinding.

-- 
You are receiving 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/2844#issuecomment-514198308
----==_mimepart_5d3704571efc8_13f83fc7018cd96416118a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=25256216" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/igorlord">@igorlord</a> That doesn't work. As I client we use zero-length connection IDs and migration. The server cannot use our address and port as that would break connection migration and NAT rebinding.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK6U7VDVIVLUV55HMYDQA355PA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAWJA#issuecomment-514198308">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5W3VFBIGS5IHX5XJLQA355PANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TBMYXR3KVSMF7F33QA355PA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAWJA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK6U7VDVIVLUV55HMYDQA355PA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAWJA#issuecomment-514198308",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK6U7VDVIVLUV55HMYDQA355PA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TAWJA#issuecomment-514198308",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3704571efc8_13f83fc7018cd96416118a--


From nobody Tue Jul 23 06:31:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 456F01202E9 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:30:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 pDJdQPb92aWl for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:30: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 C92421202BE for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:30:47 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:30:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563888646; bh=INUF1OTk5Kvgh5UYwxVgae12N6HNxMkN+Gjdhz8NBJQ=; h=Date:From:To:Subject:From; b=klM0xfA1Vfg66fErN1mj058rDm7/PToE8z7LGjU4gPgAoYtqMrJEshg3eeTfeDdeM CKl83sZ1K8E7h3+DRsWBI/ghxpc7BREkPH3cHVMwC0q1Er0NfotasQqPVqrtJe8HYf epQCzqOu5nRbxJ5wlYFFswbYvULwjy5FCDputuPA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-smaller-stateless-resets/000000-a5c33c@github.com>
Subject: [quicwg/base-drafts] a5c33c: 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/OrEbY3QGzjZePrT3wpmVv2AgRSo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:30:59 -0000

  Branch: refs/heads/ianswett-smaller-stateless-resets
  Home:   https://github.com/quicwg/base-drafts
  Commit: a5c33c8c4578101aa56ce8a57b8fb4c52ea01512
      https://github.com/quicwg/base-drafts/commit/a5c33c8c4578101aa56ce8a57b8fb4c52ea01512
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md



From nobody Tue Jul 23 06:32:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E0273120111 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:32:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cdXCnhx4HGsi for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:32: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 4BF47120033 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:32:15 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:32:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563888734; bh=9ftE5m6TvUHhcgOr4ngLh3I1mBNtQZLa20/joEZiLoI=; h=Date:From:To:Subject:From; b=YcpVRluHFeXBO8y2qTC5n0WLMdPjiOQo96qrxfLMrysV13ygb6NIxsW9fmfpcTzPV fpbQIQZbLPj3N407VWnLsVlCcUwVlvXFvmz7HsRKBYrCoCNdgQuEYSxiEVzaCoizNr XdYtix9LANw4WPwClYl0a78fjYhT+dZ996AASoEE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/50d0f0-730335@github.com>
Subject: [quicwg/base-drafts] 730335: Script updating gh-pages from a5c33c8c. [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/HGtI9SCggdpoAJ7XxxDdun_4j3U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:32:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 730335582c162ae3ef88a17cd2f7f801f588c872
      https://github.com/quicwg/base-drafts/commit/730335582c162ae3ef88a17cd2f7f801f588c872
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    A ianswett-smaller-stateless-resets/draft-ietf-quic-http.html
    A ianswett-smaller-stateless-resets/draft-ietf-quic-http.txt
    A ianswett-smaller-stateless-resets/draft-ietf-quic-invariants.html
    A ianswett-smaller-stateless-resets/draft-ietf-quic-invariants.txt
    A ianswett-smaller-stateless-resets/draft-ietf-quic-qpack.html
    A ianswett-smaller-stateless-resets/draft-ietf-quic-qpack.txt
    A ianswett-smaller-stateless-resets/draft-ietf-quic-recovery.html
    A ianswett-smaller-stateless-resets/draft-ietf-quic-recovery.txt
    A ianswett-smaller-stateless-resets/draft-ietf-quic-tls.html
    A ianswett-smaller-stateless-resets/draft-ietf-quic-tls.txt
    A ianswett-smaller-stateless-resets/draft-ietf-quic-transport.html
    A ianswett-smaller-stateless-resets/draft-ietf-quic-transport.txt
    A ianswett-smaller-stateless-resets/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a5c33c8c. [ci skip]



From nobody Tue Jul 23 06:32:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7A71912025D for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:32:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 4T20cSHeuMAM for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:32: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 919E0120250 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:32:30 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:32:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563888749; bh=JfDQswWNvdtW/GJkvE0i3MKsZd82Cqudq7UEYBHJgKk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=LuDr/UwCYmbAcQrLOl0j3ds/GpVtHSsZ3ogrjkufXjGfCLAXPMox2k4bdH16jY7sj 36PeB0pZ7FVSsANlm3B/shNtTSb8KjK/ZnohQZPAaAKNPowGRWo06ZxsPiP6mRasOG 9TFp5wV39fydEnlBX93+jPikc3TUGe/Da90dFci0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZHE73LUAF3HXHXRW53IQ7O3EVBNHHBYHMRI4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2927@github.com>
Subject: [quicwg/base-drafts] Update draft-ietf-quic-transport.md (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d370c6da3435_15e63fdb10ecd9684470f"; 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/GB_yLHshxftbHQmxBSQWpDSvskc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:32:51 -0000

----==_mimepart_5d370c6da3435_15e63fdb10ecd9684470f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Allows smaller stateless resets to be sent(as small as 21 bytes) and advises endpoints that want to ensure a stateless reset is not detectable send a larger packet if their chosen CIDs are more than 2 bytes.

Fixes #2869 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2927

-- Commit Summary --

  * Update draft-ietf-quic-transport.md

-- File Changes --

    M draft-ietf-quic-transport.md (21)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2927.patch
https://github.com/quicwg/base-drafts/pull/2927.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/2927

----==_mimepart_5d370c6da3435_15e63fdb10ecd9684470f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Allows smaller stateless resets to be sent(as small as 21 bytes) and advises endpoints that want to ensure a stateless reset is not detectable send a larger packet if their chosen CIDs are more than 2 bytes.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2869.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="463407714" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2869" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2869/hovercard" href="https://github.com/quicwg/base-drafts/issues/2869">#2869</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/2927'>https://github.com/quicwg/base-drafts/pull/2927</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/2927/files#diff-0">draft-ietf-quic-transport.md</a>
    (21)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2927.patch'>https://github.com/quicwg/base-drafts/pull/2927.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2927.diff'>https://github.com/quicwg/base-drafts/pull/2927.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/2927?email_source=notifications&amp;email_token=AFTOJK76BHVGFOWHSAC7QR3QA4B63A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA5SFDQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYF3PTOQUP5VAN2YG3QA4B63ANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZNENIFGMDOILESJZTQA4B63A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA5SFDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK76BHVGFOWHSAC7QR3QA4B63A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA5SFDQ",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK76BHVGFOWHSAC7QR3QA4B63A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA5SFDQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d370c6da3435_15e63fdb10ecd9684470f--


From nobody Tue Jul 23 06:34:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CA0D91202BA for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:34:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2U2m9lpWc-sf for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:34: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 67438120250 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:34:39 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:34:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563888878; bh=mZrVjxON8hqlCkzFErzJlgeA3SyVXrf0roNDBoALNUE=; h=Date:From:To:Subject:From; b=lmtPcTDwnWiB/918r0iXsCbh8b+SCEKyQ+G7nl+XD0R5BKe5GdACb92MCClnc8pAI TZtftt6Ruz563A9KAsGzcJSbtDo7nLuQnndSzP7t5dep0Fhu9Pv57nYYUhIobrVtjq wSs44Lvb68jvy9JFDMF7pHd9M7AjvJTkhRQonvIY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/730335-030747@github.com>
Subject: [quicwg/base-drafts] 030747: Script updating issues at 2019-07-23T13:34:32Z. [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/2JWH_O_e9Ym-mwU9AQty715szc8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:34:52 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0307477f6868bedb9cc870b25005eabef6601906
      https://github.com/quicwg/base-drafts/commit/0307477f6868bedb9cc870b25005eabef6601906
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-23T13:34:32Z. [ci skip]



From nobody Tue Jul 23 06:36:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DED87120043 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:36:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8qCS7v6cLGfD for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:36: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 E2B38120033 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:36:20 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:36:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563888979; bh=V7DwapvONE+6qf5muZT4fq1JERy9I/826BvizeGf29w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ewnFRRZ2SkJzfZM6vXXaYT/8uC4R7j6Xw3wANRfIdPRsqAgBdPXGu2KB/KTqc9kZ6 D0yDWkgfivoG8HC/Rk1HRxMytwtwGDF9rljWT2tuzXW5AE4OnRXfvKkjQsKiB4yIxt /ttKgUP5kXJUagdedaJfCmN3grbK7JieUX1WQjrw=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4E7WNF5EBRUSH4TSV3IQ75HEVBNHHBYHMRI4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2927/review/265411582@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d370d53cb8ff_628e3fee79ecd96435015"; 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/7TSiMbAm28ntzSNgyzHBkvdZ_qE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:36:23 -0000

----==_mimepart_5d370d53cb8ff_628e3fee79ecd96435015
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

nibanks commented on this pull request.



>  packet protection AEAD.  More unpredictable bytes might be necessary if the
 endpoint could have negotiated a packet protection scheme with a larger minimum
 AEAD expansion.
 
 An endpoint SHOULD NOT send a stateless reset that is significantly larger than
 the packet it receives.  Endpoints MUST discard packets that are too small to be
 valid QUIC packets.  With the set of AEAD functions defined in {{QUIC-TLS}},
-packets that are smaller than 21 bytes are never valid.
+packets that are smaller than 21 bytes are never valid.  When a packet is b

```suggestion
packets that are smaller than 21 bytes are never valid.
```
This looks like it was unintentional?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2927#pullrequestreview-265411582
----==_mimepart_5d370d53cb8ff_628e3fee79ecd96435015
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@nibanks</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2927#discussi=
on_r306321313">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  packet protection AEAD.  More unpredictab=
le bytes might be necessary if the=0D
 endpoint could have negotiated a packet protection scheme with a larger =
minimum=0D
 AEAD expansion.=0D
 =0D
 An endpoint SHOULD NOT send a stateless reset that is significantly larg=
er than=0D
 the packet it receives.  Endpoints MUST discard packets that are too sma=
ll to be=0D
 valid QUIC packets.  With the set of AEAD functions defined in {{QUIC-TL=
S}},=0D
-packets that are smaller than 21 bytes are never valid.=0D
+packets that are smaller than 21 bytes are never valid.  When a packet i=
s b=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-packets that are smaller than 21 bytes are ne=
ver valid.  When a packet is b=0D
+packets that are smaller than 21 bytes are never valid.=0D
</pre>=0D
=0D
<p>This looks like it was unintentional?</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/2927?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK32TXSVR2JJJ5FSOG3QA4CNHA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I5X7Q#pullrequestreview-265411582=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK63AE7ZM7POT6GOH2DQA4CNHANCNFSM4IGENO4A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK6RBJSM=
EWZFSD5SZOLQA4CNHA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I5X7Q.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/2927?email_source=3D=
notifications\u0026email_token=3DAFTOJK32TXSVR2JJJ5FSOG3QA4CNHA5CNFSM4IGE=
NO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7I5X7Q#pullrequestreview-265411582",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK32TXSVR2JJJ5FSOG3QA4CNHA5CNFSM4IGENO=
4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I=
5X7Q#pullrequestreview-265411582",=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_5d370d53cb8ff_628e3fee79ecd96435015--


From nobody Tue Jul 23 06:38:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 42993120073 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:38:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.899
X-Spam-Level: 
X-Spam-Status: No, score=-7.899 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id m09PIjSibPs4 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:38: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 15F92120111 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:38: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 341C2A050F for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:38:45 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:38:45 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RNLYCTTSTWKYIFIV3IRAGLEVBNHHBYHMRI4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2927/review/265410787@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d370de524c5b_9403fddf34cd96426275"; 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/28mYM95IA55H_8URcC-axskS0A0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:38:48 -0000

----==_mimepart_5d370de524c5b_9403fddf34cd96426275
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -2389,19 +2389,26 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 46 bits of data (or 6 bytes, less the
+two fixed bits), because packets that are smaller than 21 bytes are never
+valid.  To ensure the stateless reset packet is not smaller than other
+packets received on the connection, the an endpoint SHOULD also ensure the

typo: the an

> @@ -2389,19 +2389,26 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 46 bits of data (or 6 bytes, less the
+two fixed bits), because packets that are smaller than 21 bytes are never
+valid.  To ensure the stateless reset packet is not smaller than other
+packets received on the connection, the an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 19 bytes.
+19 bytes allows for 1 type byte, 1 data byte, the 16 byte authentication

The invariant we have is `payload_length + packet_number_length >= 4` to which you add type byte (1) and auth tag (16) to get 1 + 4 + 16 = 21. I think we want 22 + chosen CID length

>  packet protection AEAD.  More unpredictable bytes might be necessary if the
 endpoint could have negotiated a packet protection scheme with a larger minimum
 AEAD expansion.
 
 An endpoint SHOULD NOT send a stateless reset that is significantly larger than
 the packet it receives.  Endpoints MUST discard packets that are too small to be
 valid QUIC packets.  With the set of AEAD functions defined in {{QUIC-TLS}},
-packets that are smaller than 21 bytes are never valid.
+packets that are smaller than 21 bytes are never valid.  When a packet is b

was this intentional?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2927#pullrequestreview-265410787
----==_mimepart_5d370de524c5b_9403fddf34cd96426275
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2927#discussion_r306320687">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2389,19 +2389,26 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 46 bits of data (or 6 bytes, less the
+two fixed bits), because packets that are smaller than 21 bytes are never
+valid.  To ensure the stateless reset packet is not smaller than other
+packets received on the connection, the an endpoint SHOULD also ensure the
</pre>
<p>typo: the an</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2927#discussion_r306322294">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2389,19 +2389,26 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 46 bits of data (or 6 bytes, less the
+two fixed bits), because packets that are smaller than 21 bytes are never
+valid.  To ensure the stateless reset packet is not smaller than other
+packets received on the connection, the an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 19 bytes.
+19 bytes allows for 1 type byte, 1 data byte, the 16 byte authentication
</pre>
<p>The invariant we have is <code>payload_length + packet_number_length &gt;= 4</code> to which you add type byte (1) and auth tag (16) to get 1 + 4 + 16 = 21. I think we want 22 + chosen CID length</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2927#discussion_r306322531">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  packet protection AEAD.  More unpredictable bytes might be necessary if the
 endpoint could have negotiated a packet protection scheme with a larger minimum
 AEAD expansion.
 
 An endpoint SHOULD NOT send a stateless reset that is significantly larger than
 the packet it receives.  Endpoints MUST discard packets that are too small to be
 valid QUIC packets.  With the set of AEAD functions defined in {{QUIC-TLS}},
-packets that are smaller than 21 bytes are never valid.
+packets that are smaller than 21 bytes are never valid.  When a packet is b
</pre>
<p>was this intentional?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications&amp;email_token=AFTOJK4K5SMDMA4WBLNN3HDQA4CWLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I5RYY#pullrequestreview-265410787">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYIFRYF7P4BMTEPIBDQA4CWLANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DLDCXZHK73ESMNDLQA4CWLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I5RYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK4K5SMDMA4WBLNN3HDQA4CWLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I5RYY#pullrequestreview-265410787",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK4K5SMDMA4WBLNN3HDQA4CWLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I5RYY#pullrequestreview-265410787",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d370de524c5b_9403fddf34cd96426275--


From nobody Tue Jul 23 06:40:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E55A3120119 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:40:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 YbflA8OLVU7N for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:40: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 3E589120111 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:40:33 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:40:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889232; bh=TJ/C5rPYZh5BeY+v4PwYKNLS5K76GMnDE6ZqSwjFsPM=; h=Date:From:To:Subject:From; b=MYBiyPcpoNpQvPUVS+32IfUsTBWOnHknFHKVgS0PnIPDOm7ztieKkWNm9K+DxqAIs EK0eBn3qUO/sW+ss777CQ5SHlcWTL6gsf0YXpujdxz+Lv9B0G4o+hTf14pa+7Xeoq6 QgUtEZuJl83GqHZqF2bgpLtdXVBpuDU7xBFQKONg=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-smaller-stateless-resets/a5c33c-8988d5@github.com>
Subject: [quicwg/base-drafts] 8988d5: 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/UfcOX75cie3jgKVQ4MnURN8tIrw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:40:36 -0000

  Branch: refs/heads/ianswett-smaller-stateless-resets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8988d53d105b1289de644a6b02feadbc0270b90c
      https://github.com/quicwg/base-drafts/commit/8988d53d105b1289de644a6b02feadbc0270b90c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md



From nobody Tue Jul 23 06:40:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7629012011C for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:40:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 kNhnn-C8Sw6Z for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:40: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 C92C6120119 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:40:41 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:40:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889240; bh=kBCHm2DLnrJPM637IqzJpZeqJoBzKpyTcdLvhidLc50=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MLScuvPArTHS+WHj+BGsRPVO27VzALudKCnnBY2DPtc0fLjEXdiRYOvWIXyTiRQ+k X9VSZXxola/hYf9DQPBfW74+mS7SsxrW3spvl40+hHVBrojDojc55AmlNOd0WnjDx3 KvcCM9xECcxJBUAPgnseE3ZzBChcZtzEecW8t+qY=
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/2927/push/3846476966@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d370e58c5f6d_5d6b3f997bccd964347359"; 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/zwPWdCSIExjvxdFesx7JnRh8ZLk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:40:46 -0000

----==_mimepart_5d370e58c5f6d_5d6b3f997bccd964347359
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

8988d53d105b1289de644a6b02feadbc0270b90c  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/2927/files/a5c33c8c4578101aa56ce8a57b8fb4c52ea01512..8988d53d105b1289de644a6b02feadbc0270b90c

----==_mimepart_5d370e58c5f6d_5d6b3f997bccd964347359
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/8988d53d105b1289de644a6b02feadbc0270b90c">8988d53</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/2927/files/a5c33c8c4578101aa56ce8a57b8fb4c52ea01512..8988d53d105b1289de644a6b02feadbc0270b90c?email_source=notifications&amp;email_token=AFTOJK2A6HJXQ4JTECCGWVDQA4C5RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNBXGY4TMNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BFWAJU4SFM7L3NOLQA4C5RANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZP6ZOTCWZVKGT7BLQA4C5RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNBXGY4TMNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927/files/a5c33c8c4578101aa56ce8a57b8fb4c52ea01512..8988d53d105b1289de644a6b02feadbc0270b90c?email_source=notifications\u0026email_token=AFTOJK2A6HJXQ4JTECCGWVDQA4C5RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNBXGY4TMNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2927/files/a5c33c8c4578101aa56ce8a57b8fb4c52ea01512..8988d53d105b1289de644a6b02feadbc0270b90c?email_source=notifications\u0026email_token=AFTOJK2A6HJXQ4JTECCGWVDQA4C5RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNBXGY4TMNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d370e58c5f6d_5d6b3f997bccd964347359--


From nobody Tue Jul 23 06:42:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3FB2E1202E5 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:41:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uQZ6TwHMwS1r for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:41: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 E1FB51202CE for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:41:47 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:41:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889307; bh=9ks0LYkvpkrWko95T5DmV1uSGPzSOcDq8B0LqzcToy4=; h=Date:From:To:Subject:From; b=0URnsRGfRhkj1ssuiqXW3Rs5+MXv4HhzOPYDYmr1ZF1z3OjHbYGUy6dJPp1nF7Mfw 4uMSHzmkJUJOhA0JwWKHxtptpo1Cp/TmWVgyxpelk4eEDlM5WbL7DSMpT4U1RwmiTA v4Q/4Hb1VmOXerXdZYlmcBCcqPTyZ4G+nykLluJI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/030747-e92ab5@github.com>
Subject: [quicwg/base-drafts] e92ab5: Script updating gh-pages from 8988d53d. [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/7Ek1nvPJgma_ef1k5NFdTe4vof4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:42:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e92ab5778576c0f614b841d7e7d21e9c4fc99852
      https://github.com/quicwg/base-drafts/commit/e92ab5778576c0f614b841d7e7d21e9c4fc99852
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M ianswett-smaller-stateless-resets/draft-ietf-quic-transport.html
    M ianswett-smaller-stateless-resets/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8988d53d. [ci skip]



From nobody Tue Jul 23 06:42:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 40E8212011C for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:42:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8_4upn4IF6qT for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:42: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 039FA1202D0 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:42:05 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:42:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889324; bh=ZwXLQyjDDM0rZPx63q2P6n8Bqbsx+tohPRjPFrPLp+Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TRYAae0syw+edwLConM0rKEDhS0CxPk2FZJU2eL0w9A0eNbLT8FP1ougZlZ2FB7sl aFRBRpVJpt6o6IgK3Omyk5n2tDs+sdirPNKgMW30aWpKuSs9B7x15gjftjR+U3Om3Y Fq/aQExTk6Xt29VYs/saOfiuafE1svGC+ldx91iw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK53FEA7OK2BHCFDDFN3IRASZEVBNHHBYHMRI4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2927/review/265415596@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d370eac4147c_1b123f8dc0ecd9602039e5"; 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/J7c5Zt-0Sw9uMjVhp4MqNNTrBug>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:42:16 -0000

----==_mimepart_5d370eac4147c_1b123f8dc0ecd9602039e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -2389,19 +2389,26 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 46 bits of data (or 6 bytes, less the
+two fixed bits), because packets that are smaller than 21 bytes are never
+valid.  To ensure the stateless reset packet is not smaller than other
+packets received on the connection, the an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 19 bytes.
+19 bytes allows for 1 type byte, 1 data byte, the 16 byte authentication

SG

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2927#discussion_r306324568
----==_mimepart_5d370eac4147c_1b123f8dc0ecd9602039e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2927#discussion_r306324568">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2389,19 +2389,26 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 46 bits of data (or 6 bytes, less the
+two fixed bits), because packets that are smaller than 21 bytes are never
+valid.  To ensure the stateless reset packet is not smaller than other
+packets received on the connection, the an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 19 bytes.
+19 bytes allows for 1 type byte, 1 data byte, the 16 byte authentication
</pre>
<p>SG</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications&amp;email_token=AFTOJK5AQBO4FACXYKZ5HSTQA4DCZA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I6XLA#discussion_r306324568">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VTNLS2UNB6CHZ6DTQA4DCZANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5Y5K4QCB526F5EZ7DQA4DCZA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I6XLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK5AQBO4FACXYKZ5HSTQA4DCZA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I6XLA#discussion_r306324568",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK5AQBO4FACXYKZ5HSTQA4DCZA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I6XLA#discussion_r306324568",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d370eac4147c_1b123f8dc0ecd9602039e5--


From nobody Tue Jul 23 06:46:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F3DE2120306 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:45:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 f0BhOEt2BCRV for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:45: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 B21C71202CB for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:45:48 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:45:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889548; bh=fNVYi2bxz/qQqpNf7m77z4mtHM+vSEYtZgeQ8TmTaX4=; h=Date:From:To:Subject:From; b=mR21sjUKMINNQfHC51hEng2sYcgccxN9NDX6s7RYI8vL1F7+fiVpiDFLJfOTv2RVq nvCnUm84DS5WUZeakDb15kXb7uaqUPJFM0nUIoSEMKFkPDMJw81wf9CbJs5aWayv63 rlcjuUjAWCU47Y4n3u3RaYw100DJzJ/pdsBKacZs=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-smaller-stateless-resets/8988d5-3644a0@github.com>
Subject: [quicwg/base-drafts] 3644a0: David's 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/dwCRDtbrSJbFs5HWcz3eqCwfei0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:46:02 -0000

  Branch: refs/heads/ianswett-smaller-stateless-resets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3644a037e309bad4897b0ddbbee596096f8004ae
      https://github.com/quicwg/base-drafts/commit/3644a037e309bad4897b0ddbbee596096f8004ae
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  David's comments



From nobody Tue Jul 23 06:46:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 220AE1202D0 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:45:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1wS5sQR-A4Da for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:45:57 -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 9D6BD1202B0 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:45:57 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:45:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889557; bh=SoNdtQChbGqFfiiidjMhsb65ip9VSuZrmaRZusfWva0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VeipC/WyjU9R7dOlO7b06+57IM7FAwkqqW7RCiSv+xWv6CLdzcHc4TGJbPc7LurGN 5TIvI8Lnl6jtuCU00z8BSjuulndqNDPl9sM0gJXBQwbYKdhJTrIybTrzJcuNRBydeY ya9gOx3wB1os12DC+JYzWEaC/LGUAJbxwg7sxQUo=
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/2927/push/3846500603@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d370f94ccd4b_54f03fc9016cd96435094c"; 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/zeTQTXzWJh3KMabZdp-_CZuYhBc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:46:11 -0000

----==_mimepart_5d370f94ccd4b_54f03fc9016cd96435094c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

3644a037e309bad4897b0ddbbee596096f8004ae  David's comments


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2927/files/8988d53d105b1289de644a6b02feadbc0270b90c..3644a037e309bad4897b0ddbbee596096f8004ae

----==_mimepart_5d370f94ccd4b_54f03fc9016cd96435094c
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/3644a037e309bad4897b0ddbbee596096f8004ae">3644a03</a>  David&#39;s 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/2927/files/8988d53d105b1289de644a6b02feadbc0270b90c..3644a037e309bad4897b0ddbbee596096f8004ae?email_source=notifications&amp;email_token=AFTOJKZW7CLOPVPT4XWYOVLQA4DRJA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGA3DAMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZC2YV6I6K2Q4DC3D3QA4DRJANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4UKBMWEFB5TT2WF7TQA4DRJA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGA3DAMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927/files/8988d53d105b1289de644a6b02feadbc0270b90c..3644a037e309bad4897b0ddbbee596096f8004ae?email_source=notifications\u0026email_token=AFTOJKZW7CLOPVPT4XWYOVLQA4DRJA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGA3DAMY",
"url": "https://github.com/quicwg/base-drafts/pull/2927/files/8988d53d105b1289de644a6b02feadbc0270b90c..3644a037e309bad4897b0ddbbee596096f8004ae?email_source=notifications\u0026email_token=AFTOJKZW7CLOPVPT4XWYOVLQA4DRJA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGA3DAMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d370f94ccd4b_54f03fc9016cd96435094c--


From nobody Tue Jul 23 06:46:30 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B03B212031C for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:46:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, 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 HulV--Wj-3zc for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:46: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 F043A1202E4 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:46:17 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:46:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889577; bh=wpic4vzg2kdrO13Qvh6X2VuxkaHOUN7dINBlEmdWo54=; h=Date:From:To:Subject:From; b=y/hFgKwSTNjPsRByVUtu93fzJAPPlJ5drKZKRrf2+E0AJlIilxa/OBIrid2RILjVZ +phV5FLQXczwespdojZ7J3d494WOY1lwRzOBVxKd9cfi4xwuUyzyw9TbmZoiDQPcSg d7yMtFWqfxoLWKe76TxnUgno7NlL98ituRKrZ9m8=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-smaller-stateless-resets/3644a0-70bbc1@github.com>
Subject: [quicwg/base-drafts] 70bbc1: 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/YVCy7GAXDpnnjWwdOXUeKOcHI5s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:46:29 -0000

  Branch: refs/heads/ianswett-smaller-stateless-resets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8
      https://github.com/quicwg/base-drafts/commit/70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Nick Banks <nibanks@microsoft.com>



From nobody Tue Jul 23 06:46:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 70BC71202BD for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:46:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 eCEASK0u_z13 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:46: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 C4BA31202D0 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:46:26 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:46:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889585; bh=9FQs1jR4eeNJ79a+QYrLn/giE+OOaRp1C5NlDekF6FM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Fpn5bRITDqpxPWCq+F0CDJQXexkCGsJroWvklSdlOc3aoglUQ20hoxRK+8RU5DI36 zufZA3BuWk1WwR0NLU1wFgQ8CbV3dlqoaWa9o5ffXb5+BHzz0WoKVzUHrwLZA+VASg H43dc5n5sxtcBOGieO9SwAOWckk2b9cp4/M26rBo=
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/2927/push/3846502819@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d370fb1a1c56_39173fa852ccd9604091ea"; 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/BN3hVV83MPtwk8Qf8RiygizldOg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:46:35 -0000

----==_mimepart_5d370fb1a1c56_39173fa852ccd9604091ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8  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/2927/files/3644a037e309bad4897b0ddbbee596096f8004ae..70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8

----==_mimepart_5d370fb1a1c56_39173fa852ccd9604091ea
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/70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8">70bbc1b</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/2927/files/3644a037e309bad4897b0ddbbee596096f8004ae..70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8?email_source=notifications&amp;email_token=AFTOJK577GGLPVQZ6QQQXJ3QA4DTDA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGI4DCOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK476F2KQ26XXYYUMTLQA4DTDANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MHZUZSDJKG4HY6WLQA4DTDA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGI4DCOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927/files/3644a037e309bad4897b0ddbbee596096f8004ae..70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8?email_source=notifications\u0026email_token=AFTOJK577GGLPVQZ6QQQXJ3QA4DTDA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGI4DCOI",
"url": "https://github.com/quicwg/base-drafts/pull/2927/files/3644a037e309bad4897b0ddbbee596096f8004ae..70bbc1be0d67a35d3077ae8d9e2f9330e35c62e8?email_source=notifications\u0026email_token=AFTOJK577GGLPVQZ6QQQXJ3QA4DTDA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMRZHA3TEN2QOVZWQIZTHA2DMNJQGI4DCOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d370fb1a1c56_39173fa852ccd9604091ea--


From nobody Tue Jul 23 06:47:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7D82612030E for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:47:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X2HRLZFbLGVL for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:47: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 116421202D1 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:47:17 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:47:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889636; bh=7ragg7Kx6LlhpwaVKof5ujKHwF2+t1AZY6PzrfIDQo4=; h=Date:From:To:Subject:From; b=z7okgQc4Swhax+J3u8m9duMDwkjLxWfSygELJe04M90yD/8h+wjDgoIyttS22rpqD Z1Pm//eJrP8sDc2zohvGjEndmC1kp0JVDozqBXTJ6uEARSU24KCIA23XEVjGJgGvom VO/koxLA3eOX2ooha12OlQKt3SPkwKkYbI77Xrik=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e92ab5-31bc98@github.com>
Subject: [quicwg/base-drafts] 31bc98: Script updating gh-pages from 3644a037. [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/Ac_0bNzsEnJLhh0C3YWu0-LPB-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: Tue, 23 Jul 2019 13:47:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 31bc98910071d7cc27abc37b2b6ef011206e1921
      https://github.com/quicwg/base-drafts/commit/31bc98910071d7cc27abc37b2b6ef011206e1921
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M ianswett-smaller-stateless-resets/draft-ietf-quic-transport.html
    M ianswett-smaller-stateless-resets/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3644a037. [ci skip]



From nobody Tue Jul 23 06:47:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E460012024E for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:47:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 k23hkDoJNi2X for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:47: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 C7F54120043 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:47:53 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:47:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889673; bh=xi8mBQQQjZLsW5z1kswR1Iizy166XaEyY27a5nf2Nuw=; h=Date:From:To:Subject:From; b=AM67dcMRcy/niTAiMSK0hwlKgiCTxPQmq/GXG6hrgJXMxuUHlY8BcBu2ONChS1ZoR shMWjqRPzj6fzVRgC7jjwPthQrI9O1UcDV2cwjBqcHmz5Qf5l1yLnB61011aOwjr1c FVdEadm0jiIb7j+OaO2N54RqP2zIAXDDdO8UFOac=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/31bc98-f472fa@github.com>
Subject: [quicwg/base-drafts] f472fa: Script updating gh-pages from 70bbc1be. [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/zMbxxZhIQvnhsWJM9t08hY9ojsc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:47:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f472fa51954d405e7b2daa1c0607ed8926badb58
      https://github.com/quicwg/base-drafts/commit/f472fa51954d405e7b2daa1c0607ed8926badb58
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M ianswett-smaller-stateless-resets/draft-ietf-quic-transport.html
    M ianswett-smaller-stateless-resets/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 70bbc1be. [ci skip]



From nobody Tue Jul 23 06:48:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6FF2C120043 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:48:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-F6elpyu4YQ for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 06:48: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 7E72B120256 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 06:48:41 -0700 (PDT)
Date: Tue, 23 Jul 2019 06:48:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563889720; bh=wqHVRDIriyIzV+jnkAkwqRRxBSg7HCJstdul7SSVf1Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zRRtEVDsM4l3p+iJq4yvOVqeGqkkQ66WnKXamGL67WzQGE5Y0JkKi/ANGUyT6pa+B Af9Rmdc++oFUYPiXYhsyhQ7tW2IrssJdulUEqg8Tf0d0HXmLibSewYrYWqJ6Xdo3Fk vX2fmZ8QQcW8QhEWiThBtMXnHzbwcHlW4tmvWqNI=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2NHNJRVQYAHRTO6B53IRBLREVBNHHBYHMRI4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2927/review/265420071@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3710387685c_27353fa7382cd96c374540"; 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/2pZmAJ8T-7N3vW4fXgAHuKgKSm4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 13:48:56 -0000

----==_mimepart_5d3710387685c_27353fa7382cd96c374540
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/2927#pullrequestreview-265420071
----==_mimepart_5d3710387685c_27353fa7382cd96c374540
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2927?email_source=notifications&amp;email_token=AFTOJK27GR6EC6FCF3JIJR3QA4D3RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I72JY#pullrequestreview-265420071">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JKET5A33HXVPDJALQA4D3RANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3HBFLA2HWCXR5IKX3QA4D3RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I72JY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK27GR6EC6FCF3JIJR3QA4D3RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I72JY#pullrequestreview-265420071",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK27GR6EC6FCF3JIJR3QA4D3RA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7I72JY#pullrequestreview-265420071",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3710387685c_27353fa7382cd96c374540--


From nobody Tue Jul 23 07:08:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 13BD5120265 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:08:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GlkVCTGYi3qU for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:08: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 C3691120248 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:08:54 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:08:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563890933; bh=Y/Ma6tdEy0WKelD6CpzQwN6LUeESqbCB5P8vr97L69g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r7JTg81UZNjnidSI4FkfY5KsX9CzzhN+LMSGY7H1AqC/F86hMGJ2+8zXe6G6592uM EKdjzCBQ5QZ5nA4yzrtptepia2vUXLVwjosu4HGBoVc0kp7+AGeRFZRUIj8FDyqPeu fNrKqO1NUztUExkWrRVy4mntyerPonRIW5px/zGU=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6KAYGRHZ57YNZXCGF3IRDXLEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514226155@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3714f5a7fc6_43f3fde200cd9682120fb"; 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/hT-gdrsZDPpkEIKJddFuFnyj_Zg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 14:08:56 -0000

----==_mimepart_5d3714f5a7fc6_43f3fde200cd9682120fb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If a server wishes to support migration/rebinding, it could still choose to use non-zero-length CIDs, as 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/issues/2844#issuecomment-514226155
----==_mimepart_5d3714f5a7fc6_43f3fde200cd9682120fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If a server wishes to support migration/rebinding, it could still choose to use non-zero-length CIDs, as 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/issues/2844?email_source=notifications&amp;email_token=AFTOJK2UQVK2CKSFQTKB7UTQA4GHLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2THP2Y#issuecomment-514226155">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4IDEKIMI7DH4HWYDQA4GHLANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6GNYLXWFLLNBMWBLTQA4GHLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2THP2Y.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK2UQVK2CKSFQTKB7UTQA4GHLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2THP2Y#issuecomment-514226155",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK2UQVK2CKSFQTKB7UTQA4GHLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2THP2Y#issuecomment-514226155",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3714f5a7fc6_43f3fde200cd9682120fb--


From nobody Tue Jul 23 07:22:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E725612014E for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:22:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 55cpzah6jsq1 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:22:03 -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 70482120043 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:22:03 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:22:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563891722; bh=2Qe7nh6Qg+S5XOY8/qfukx4vKwSPcoAaZ2f7NrBtl5g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MW/9t1YxqQbE3fpBZJcVVKoUVeeQA8M4ykC+NWMsdir7jP+VYMyxR+xGA8uhhasx8 I9iDQTW6n/wLwJN6nZq9ahAKRi23bgNo/cVaxWPb/TA8MEu5QxcKPxxQAMQCTItJgg b1pWlRKrHD1+QCgMA/DYYXYx+jjh9AWpaD5VrYdM=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TDAHFILXLFMUUDO53IRFIVEVBNHHBRYYG4A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2498/issue_event/2503253193@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2498@github.com>
References: <quicwg/base-drafts/issues/2498@github.com>
Subject: Re: [quicwg/base-drafts] Error Code when SETTINGS exceeds maximum (#2498)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37180a59ff0_3ca03f7f2fccd95c12867d"; 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/4VYb1ouV-tgmRZ0qzciIUpFcG_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, 23 Jul 2019 14:22:06 -0000

----==_mimepart_5d37180a59ff0_3ca03f7f2fccd95c12867d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2498.

-- 
You are receiving 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/2498#event-2503253193
----==_mimepart_5d37180a59ff0_3ca03f7f2fccd95c12867d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="417531616" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2498" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2498/hovercard" href="https://github.com/quicwg/base-drafts/issues/2498">#2498</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/2498?email_source=notifications&amp;email_token=AFTOJKYDHW2NHI2BZA246XDQA4HYVA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU2JZSI#event-2503253193">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWMQ5MIRGAEJUP7DLQA4HYVANCNFSM4G36RHGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3STKQMFYCRXKPPKJ3QA4HYVA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU2JZSI.gif" height="1" width="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/2498?email_source=notifications\u0026email_token=AFTOJKYDHW2NHI2BZA246XDQA4HYVA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU2JZSI#event-2503253193",
"url": "https://github.com/quicwg/base-drafts/issues/2498?email_source=notifications\u0026email_token=AFTOJKYDHW2NHI2BZA246XDQA4HYVA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU2JZSI#event-2503253193",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37180a59ff0_3ca03f7f2fccd95c12867d--


From nobody Tue Jul 23 07:22:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 22BDC120165 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:22:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F1QpN2fHs370 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:22:04 -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 01FC912011D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:22:04 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:22:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563891723; bh=yQn3nfBA6pMmRoAGKi4Z6II+UPRb7fCOOcUKRPXe5oc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cypNavK08qLbU6E5TvaWrZ3H3TrKeJPSRqlfLQCWkiPTyWncZnQdeE1hFbPszPvV2 auUr8N9vNIr+PiJ27pw30v29NHOqDknjNOfWc8fG3yQxgS+shus33KzrgFL6rhEiRe vHGO5MzQHdlmTjd3GZH+cSWgXbad5gjSBU1LV79k=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZZCMDXYVZ5YFDR5ZF3IRFIXEVBNHHBRYYG4A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2498/514231632@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2498@github.com>
References: <quicwg/base-drafts/issues/2498@github.com>
Subject: Re: [quicwg/base-drafts] Error Code when SETTINGS exceeds maximum (#2498)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37180b3e930_31103f8b768cd96c99799"; 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/GGiiB7_cke6tEuIeJOnv34prhqw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 14:22:20 -0000

----==_mimepart_5d37180b3e930_31103f8b768cd96c99799
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Resolved by #2766 and #2814.

-- 
You are receiving 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/2498#issuecomment-514231632
----==_mimepart_5d37180b3e930_31103f8b768cd96c99799
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Resolved by <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="451963777" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2766" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2766/hovercard" href="https://github.com/quicwg/base-drafts/issues/2766">#2766</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="457985108" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2814" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2814/hovercard" href="https://github.com/quicwg/base-drafts/pull/2814">#2814</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/2498?email_source=notifications&amp;email_token=AFTOJK6NQJEGK4YOWLXHYGLQA4HYXA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TI2UA#issuecomment-514231632">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24LPMAUOQWEKLEO3LQA4HYXANCNFSM4G36RHGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YIGPIOD3WG36HAJTQA4HYXA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TI2UA.gif" height="1" width="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/2498?email_source=notifications\u0026email_token=AFTOJK6NQJEGK4YOWLXHYGLQA4HYXA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TI2UA#issuecomment-514231632",
"url": "https://github.com/quicwg/base-drafts/issues/2498?email_source=notifications\u0026email_token=AFTOJK6NQJEGK4YOWLXHYGLQA4HYXA5CNFSM4G36RHGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TI2UA#issuecomment-514231632",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37180b3e930_31103f8b768cd96c99799--


From nobody Tue Jul 23 07:25:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F00D3120298 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:25:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3oSTR3gt9j4q for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:25: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 125BD1202BE for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:25:09 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:25:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563891908; bh=dmCubFQa6tPzdh7uNC5qc1JFWXMWjotXfjImoIC9Iow=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jwg0dzMh6js/hY9aDN0skMhydZGyhmL8E3Kp1xHnvaxZv4YBW34XORuuzUPARYq/W Lplwg4YOPmJHz1LyZKqcNfir8GZaRnyqEcaLeLqBTd0UAluobYBfOscIuCfa9udIJm YhVjb8fwJMNFrcAgHxp1v7RPbAfwDvS+RcI0EKvo=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ZQE3HV3QY3CQAK6F3IRFUJEVBNHHBYF7KWI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2923/514233012@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2923@github.com>
References: <quicwg/base-drafts/issues/2923@github.com>
Subject: Re: [quicwg/base-drafts] MIn_RTT management (#2923)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3718c44c04e_1d573f8b762cd9681800b9"; 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/sF8jrb41cRFPhe1498t0NOue6F0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 14:25:23 -0000

----==_mimepart_5d3718c44c04e_1d573f8b762cd9681800b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Related to #2908, but this is more than editorial.

-- 
You are receiving 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/2923#issuecomment-514233012
----==_mimepart_5d3718c44c04e_1d573f8b762cd9681800b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Related to <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="469762950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2908" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2908/hovercard" href="https://github.com/quicwg/base-drafts/issues/2908">#2908</a>, but this is more than editorial.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2923?email_source=notifications&amp;email_token=AFTOJK42SYCMBWQGGJFRXMDQA4IEJA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJFNA#issuecomment-514233012">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK53LPHGU6NTOKU4JODQA4IEJANCNFSM4IF43J7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4LV4GOEKWASOEXNRTQA4IEJA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJFNA.gif" height="1" width="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/2923?email_source=notifications\u0026email_token=AFTOJK42SYCMBWQGGJFRXMDQA4IEJA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJFNA#issuecomment-514233012",
"url": "https://github.com/quicwg/base-drafts/issues/2923?email_source=notifications\u0026email_token=AFTOJK42SYCMBWQGGJFRXMDQA4IEJA5CNFSM4IF43J7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJFNA#issuecomment-514233012",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3718c44c04e_1d573f8b762cd9681800b9--


From nobody Tue Jul 23 07:27:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 90EA91202F8 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:27:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.353
X-Spam-Level: 
X-Spam-Status: No, score=-6.353 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9vkyZE7FBpak for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:27:35 -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 D68B11202FB for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:27: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 9BF2B1204E6 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:27:26 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:27:26 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYIHNPB2F4RB7U3AX53IRF45EVBNHHBWL37RY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2792/514233988@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2792@github.com>
References: <quicwg/base-drafts/issues/2792@github.com>
Subject: Re: [quicwg/base-drafts] Timing side-channel on key updates (#2792)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37194e56504_2bba3ff0f88cd95c20098a"; 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/tKpWfDbQKhVjmastBgYNxyHDgVg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 14:27:37 -0000

----==_mimepart_5d37194e56504_2bba3ff0f88cd95c20098a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

To recap my comments at the mic: it's not clear to me what the attacker is learning here. Can someone expand 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/2792#issuecomment-514233988
----==_mimepart_5d37194e56504_2bba3ff0f88cd95c20098a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>To recap my comments at the mic: it's not clear to me what the attacker is learning here. Can someone expand 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/2792?email_source=notifications&amp;email_token=AFTOJK4GDBPAQ7RAR6TBP2LQA4IM5A5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJNBA#issuecomment-514233988">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5U2VGUSUV5K7MGZMLQA4IM5ANCNFSM4HYFFILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5DAJFGMHTPB56KXD3QA4IM5A5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJNBA.gif" height="1" width="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/2792?email_source=notifications\u0026email_token=AFTOJK4GDBPAQ7RAR6TBP2LQA4IM5A5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJNBA#issuecomment-514233988",
"url": "https://github.com/quicwg/base-drafts/issues/2792?email_source=notifications\u0026email_token=AFTOJK4GDBPAQ7RAR6TBP2LQA4IM5A5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJNBA#issuecomment-514233988",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37194e56504_2bba3ff0f88cd95c20098a--


From nobody Tue Jul 23 07:30:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 481BB120305 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:30:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ldK4XrIiFwFl for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:30: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 E92D21202D4 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:30:41 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:30:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563892241; bh=HdzaumEogv6NXVhW1ZzXXGljhvIwIzz4brxiKryUBiQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eDCU3uPvvmfQS7aJuOyYQznfu377TFiPFV2Tqq19k0/+81G2gGtgv8e+w6X+ay3YF cVNX3Sds/qbqPEBQ1PAzr73oGv+W2/Hv25RhEx3ajcnto1mSd7WJKDoy4NqJj4R7OX cz+BaQiclDcc/iKdFrr6HE/XprrKITrmlSOpdRz0=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4QI5OIQVG4R2XAZMV3IRGJDEVBNHHBWL37RY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2792/514235427@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2792@github.com>
References: <quicwg/base-drafts/issues/2792@github.com>
Subject: Re: [quicwg/base-drafts] Timing side-channel on key updates (#2792)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d371a1115199_31f23fa4cb4cd95c10965c"; 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/-JcHuNgEw1lR6ZXRbQH55WxAStM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 14:30:43 -0000

----==_mimepart_5d371a1115199_31f23fa4cb4cd95c10965c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal: @marten-seemann to work with @martinthomson and @ekr to work out the details

-- 
You are receiving 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/2792#issuecomment-514235427
----==_mimepart_5d371a1115199_31f23fa4cb4cd95c10965c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal: <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a> to work with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> and <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1111457" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a> to work out the details</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2792?email_source=notifications&amp;email_token=AFTOJK6IUB4AKR7ZPFZT7IDQA4IZDA5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJYIY#issuecomment-514235427">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZB7HLHRWWWTG7ID43QA4IZDANCNFSM4HYFFILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDHHCTXLNMGKCRTIDQA4IZDA5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJYIY.gif" height="1" width="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/2792?email_source=notifications\u0026email_token=AFTOJK6IUB4AKR7ZPFZT7IDQA4IZDA5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJYIY#issuecomment-514235427",
"url": "https://github.com/quicwg/base-drafts/issues/2792?email_source=notifications\u0026email_token=AFTOJK6IUB4AKR7ZPFZT7IDQA4IZDA5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJYIY#issuecomment-514235427",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d371a1115199_31f23fa4cb4cd95c10965c--


From nobody Tue Jul 23 07:32:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 22AFA12011F for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:32:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_hDxb-CkcU1 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:32: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 BAF5A120072 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:32:54 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:32:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563892373; bh=SUrDlVkzv8y8v3g3m5o/bmzdBtTPxxPmnoSKYc2IO2A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wPCr2f56OYr1rSCV4YUrr3y4bJqmczzVmT/qBFCqf7P6iKkXq+4JwfrVKq4YCCyxT T07PRnJJnGzz88RB+Qh9fm27nmqxVvaU6l2eUF43w/bEm94K+xngRISmi0rlS72u/W 9YSbgTgLoBkh+BjikS7J08cpLJRx+3PZ4QrCGVb4=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK726V47UT4F4OZSOAN3IRGRLEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/514236413@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d371a958822c_69083f7f116cd96c2709d3"; 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/karTLEEvguwsbwg4KMhjD6l9_Qs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 14:32:56 -0000

----==_mimepart_5d371a958822c_69083f7f116cd96c2709d3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Assigned to @martinthomson since he presented in Montreal.

-- 
You are receiving 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/2670#issuecomment-514236413
----==_mimepart_5d371a958822c_69083f7f116cd96c2709d3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Assigned to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> since he presented in Montreal.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK5IUIHM2KL7QLWZCUTQA4JBLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJ77I#issuecomment-514236413">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7HF76IR6AXBYUEKXDQA4JBLANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYIDUYX4L55ES7W24DQA4JBLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJ77I.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK5IUIHM2KL7QLWZCUTQA4JBLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJ77I#issuecomment-514236413",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK5IUIHM2KL7QLWZCUTQA4JBLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TJ77I#issuecomment-514236413",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d371a958822c_69083f7f116cd96c2709d3--


From nobody Tue Jul 23 07:55:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 29006120331 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:54:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WNCAoevnQ1B4 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 07:54:48 -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 8D2A5120363 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 07:54:48 -0700 (PDT)
Date: Tue, 23 Jul 2019 07:54:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563893687; bh=KX6s2v23NVGZ1J3GOri2yQbL3yPGwR0nSnlJ0/YcP6k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2NTiGL1GHTd3B9lm88RjpR68HAxUJEpvarpy7u572vZb/y4iZcDNQ5zsflbMyzPV2 d4/a4db3ZIfE7puVLAXrrWqafMywr2nCxO2utIZmPsWAFVNMlpcAXB/ason3YBbiWj XqcmMeARaEUJ+T7GpO80btaw6rsDp24sSvBBAJxM=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ASQL37AWVOLZ67YV3IRJDPEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/514246172@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d371fb76b2d8_10fd3fcea50cd95c9165c"; 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/jHudaGrtxSCNT-DwoJbTJFobbE8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 14:54:59 -0000

----==_mimepart_5d371fb76b2d8_10fd3fcea50cd95c9165c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal. Option B eventually got consensus in the room.

-- 
You are receiving 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/2670#issuecomment-514246172
----==_mimepart_5d371fb76b2d8_10fd3fcea50cd95c9165c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal. Option B eventually got consensus in the room.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK6LLFABGZ5VB3SL4JLQA4LTPA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TMMHA#issuecomment-514246172">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3S2XDKY4FJ2TI3LZDQA4LTPANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6JPE77QUGVQHMYUCLQA4LTPA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TMMHA.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK6LLFABGZ5VB3SL4JLQA4LTPA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TMMHA#issuecomment-514246172",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK6LLFABGZ5VB3SL4JLQA4LTPA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TMMHA#issuecomment-514246172",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d371fb76b2d8_10fd3fcea50cd95c9165c--


From nobody Tue Jul 23 08:23:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 880C51203C6 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:22:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 S71-fhsJPcWS for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:22: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 8F1A8120321 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:22:10 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:22:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563895329; bh=yaf7RhgN2Z7sVqKHIJ34o8erNc69YIIrHxN9WwcLG60=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TyvRfHwz8LBKcUaMyazOAlfpyORz/QXTxOzvwMRR+rYAmKOuQDvu7RK12aiQ6+FMc w7w0CtyD8yrD0IQtsID2B6OczUTmDUmS+nY60ZEJ/ACcfN04A7TIYN8LoPKpDnRgly NZTM7cBwYlvLhxUMGOGDvgMveW6aaS3z/3M4oWZ8=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FPEDZRMCB42ZU3I53IRMKDEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514258095@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3726217a1e3_4fc3fcc25acd95c2499ce"; 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/erlJ4mNSgsBB9pHBeNEJ2Pe67rg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:22:49 -0000

----==_mimepart_5d3726217a1e3_4fc3fcc25acd95c2499ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal, @DavidSchinazi to revise the PR as discussed and then we'll attempt to see if there is 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/2844#issuecomment-514258095
----==_mimepart_5d3726217a1e3_4fc3fcc25acd95c2499ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal, <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=5599133" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> to revise the PR as discussed and then we'll attempt to see if there is 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/2844?email_source=notifications&amp;email_token=AFTOJK2PJT7LHBRP2D74XWDQA4O2DA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TPJLY#issuecomment-514258095">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4BYQI57XXTODVPX7TQA4O2DANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QF5B6LL3SI2FC47TQA4O2DA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TPJLY.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK2PJT7LHBRP2D74XWDQA4O2DA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TPJLY#issuecomment-514258095",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK2PJT7LHBRP2D74XWDQA4O2DA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TPJLY#issuecomment-514258095",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3726217a1e3_4fc3fcc25acd95c2499ce--


From nobody Tue Jul 23 08:27:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2C16F1203D1 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:27:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8dLa08LGMIk5 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:27:32 -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 4FB2C120426 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:27:32 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:27:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563895651; bh=gfBQibY0N0O8xjyi0fFwZDxfkvhD4xUy6XWArKXeoVw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mKeXIBhqiHYaxEHVdUzEIqOK2Ds97Rh8KtG5QbhZc84x4Jb5HZEwkRSjdl/VrIsYB PKN8bfTheBwVsB6uvBFH+h3EDUl0TQ3I9aKjS/0ZuXkLmE3pRUyRyDvyvkUWmpeMcW yKU2jLSQE1vMz4XI0nHgD+sxoqTAdq2QhtohmOJo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7COSJNQWR667MI5PN3IRM6HEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514260400@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3727635ecc0_8b33fc75a6cd96c2001c"; 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/_psFLbPzu8J0ztzlXCFcRMRh6Wg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:27:41 -0000

----==_mimepart_5d3727635ecc0_8b33fc75a6cd96c2001c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal.  Some concern about enabling a TCP-like usage for QUIC, but concerns about the effect that a choice of an endpoint could have on its peer.

Options are:

1. MUST use only local information (local host, port, cid) to route packets.

2. SHOULD, with qualification, but leaving this open to people to shoot each other in the feet.

3. MUST unless you know something about what your peers (as you identify them) are doing.  This precludes peers that attempt to use connection IDs if you intend to use source-address-based routing.

I think that we might want to end up in the third bucket.  Which acknowledges and endorses the use case, but properly defines the conditions under which this is acceptable.

-- 
You are receiving 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/2844#issuecomment-514260400
----==_mimepart_5d3727635ecc0_8b33fc75a6cd96c2001c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal.  Some concern about enabling a TCP-like usage for QUIC, but concerns about the effect that a choice of an endpoint could have on its peer.</p>
<p>Options are:</p>
<ol>
<li>
<p>MUST use only local information (local host, port, cid) to route packets.</p>
</li>
<li>
<p>SHOULD, with qualification, but leaving this open to people to shoot each other in the feet.</p>
</li>
<li>
<p>MUST unless you know something about what your peers (as you identify them) are doing.  This precludes peers that attempt to use connection IDs if you intend to use source-address-based routing.</p>
</li>
</ol>
<p>I think that we might want to end up in the third bucket.  Which acknowledges and endorses the use case, but properly defines the conditions under which this is acceptable.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJKYSZ7RA6RL2GAMHJS3QA4POHA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TP3MA#issuecomment-514260400">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62KAHDNZLLYSU7B6DQA4POHANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5NO6JKWO3ZH5XZSE3QA4POHA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TP3MA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJKYSZ7RA6RL2GAMHJS3QA4POHA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TP3MA#issuecomment-514260400",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJKYSZ7RA6RL2GAMHJS3QA4POHA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TP3MA#issuecomment-514260400",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3727635ecc0_8b33fc75a6cd96c2001c--


From nobody Tue Jul 23 08:29:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6F415120418 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:29:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D0DMu24oDYTK for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:29: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 BADE512041C for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:29:17 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:29:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563895756; bh=kLFuXP5/o0hc6tsA7eOXDl4tI38bjX+h3n8/Y0pOAhk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1dEn41bVCTDk+Kue5gi5o8L8ktbaVCRnmyktxlKkcKydnBA+nPPfQroj4lf1l9mWl 7PkZUh5+e8KCjm1GDu2Taj/oS/slykjRH2PjMfuBs0O5uDpWF0B96fj+dHdeu8D3MX zzw/pt4rR8jb9uMjlv1EBAvZwJGnEInpTsG/c8R8=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5Y4IFUIQK4A6WGTHF3IRNEZEVBNHHBWZGHNE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2834/514261186@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2834@github.com>
References: <quicwg/base-drafts/issues/2834@github.com>
Subject: Re: [quicwg/base-drafts] Long Header Packets and Routing Connection IDs (#2834)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3727ccd3608_e0a3f8dca4cd960408985"; 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/PBGXLGjTqdNukHzQvWHB67XrAd0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:29:36 -0000

----==_mimepart_5d3727ccd3608_e0a3f8dca4cd960408985
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal, proposal is to close 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/2834#issuecomment-514261186
----==_mimepart_5d3727ccd3608_e0a3f8dca4cd960408985
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal, proposal is to close 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/2834?email_source=notifications&amp;email_token=AFTOJK4PPAXIFPPHCYZKTXDQA4PUZA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQBQQ#issuecomment-514261186">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYF6X7UKGRG4ADMLEDQA4PUZANCNFSM4H2ZGBSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK57ZDOPGMTOCJGICOTQA4PUZA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQBQQ.gif" height="1" width="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/2834?email_source=notifications\u0026email_token=AFTOJK4PPAXIFPPHCYZKTXDQA4PUZA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQBQQ#issuecomment-514261186",
"url": "https://github.com/quicwg/base-drafts/issues/2834?email_source=notifications\u0026email_token=AFTOJK4PPAXIFPPHCYZKTXDQA4PUZA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQBQQ#issuecomment-514261186",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3727ccd3608_e0a3f8dca4cd960408985--


From nobody Tue Jul 23 08:29:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6F71E1203F7 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:29:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id t1fUqKvMnB0R for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:29:45 -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 677D212042D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:29:45 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:29:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563895784; bh=9owrDVe1/6FFmgteo9stOEAw7JNsiLGvJvwnz8coIGQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tS7SDsS9yqpQ9keorJ1HqxbIZOoh3aTLrWJsSVFWwQ+3LsHtnZHXORzs3ntjE7BRd 7sKhbX+6wDvLa2gtpfcPATXQ1dgehfvAmf/Xd433BQ1TpLvpSWSPBrQFdtK7M61BA5 YLVlGOOGpfi/dCt6EQ4MnAY+4e/6Mdd1ePysIcGE=
From: Magnus Westerlund <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CHP6MSRQ3B7TLYIF3IRNGREVBNHHBVKABIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2752/review/265494057@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2752@github.com>
References: <quicwg/base-drafts/pull/2752@github.com>
Subject: Re: [quicwg/base-drafts] ECN verification text (#2752)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3727e878d23_1d5b3fc1c4ecd964476561"; 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/x9lFe0LSPK8nhaP9yhlyZUczOXM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:29:55 -0000

----==_mimepart_5d3727e878d23_1d5b3fc1c4ecd964476561
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

gloinul commented on this pull request.



>  If verification fails, then the endpoint ceases setting ECT codepoints in
 subsequent IP packets with the expectation that either the network path or the
 peer does not support ECN.
 
-If an endpoint sets ECT codepoints on outgoing IP packets and encounters a
-retransmission timeout due to the absence of acknowledgments from the peer (see
-{{QUIC-RECOVERY}}), or if an endpoint has reason to believe that an element on
-the network path might be corrupting ECN codepoints, the endpoint MAY cease
-setting ECT codepoints in subsequent packets.  Doing so allows the connection to
-be resilient to network elements that corrupt ECN codepoints in the IP header or
-drop packets with ECT or CE codepoints in the IP header.
+If an ECT codepoint set is not dropped or corrupted by a network device, then a
+received packet contains either the codepoint sent by the peer or the Congestion
+Experienced (CE) codepoint set by a network device that is experiencing
+congestion.
+
+Upon successful verification, an endpoint continues to set ECT codepoints in
+subsequent packets with the expectation that the path is ECN-capable.

Yes, to prevent spurious ECN disablement one should have a number of packets spread over time so that a single burst loss can't be the cause for the loss so that probability is low. So, the downside of the above algorithm is that to get low probability you may have several retransmission of the handshake. From an ECN perspective an implementation could mark a single packet per RTT and not give up testing until 10 RTTs has past. That would have a low probability for spurious disablement. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2752#discussion_r306386166
----==_mimepart_5d3727e878d23_1d5b3fc1c4ecd964476561
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@gloinul</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2752#discussion_r306386166">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  If verification fails, then the endpoint ceases setting ECT codepoints in
 subsequent IP packets with the expectation that either the network path or the
 peer does not support ECN.
 
-If an endpoint sets ECT codepoints on outgoing IP packets and encounters a
-retransmission timeout due to the absence of acknowledgments from the peer (see
-{{QUIC-RECOVERY}}), or if an endpoint has reason to believe that an element on
-the network path might be corrupting ECN codepoints, the endpoint MAY cease
-setting ECT codepoints in subsequent packets.  Doing so allows the connection to
-be resilient to network elements that corrupt ECN codepoints in the IP header or
-drop packets with ECT or CE codepoints in the IP header.
+If an ECT codepoint set is not dropped or corrupted by a network device, then a
+received packet contains either the codepoint sent by the peer or the Congestion
+Experienced (CE) codepoint set by a network device that is experiencing
+congestion.
+
+Upon successful verification, an endpoint continues to set ECT codepoints in
+subsequent packets with the expectation that the path is ECN-capable.
</pre>
<p>Yes, to prevent spurious ECN disablement one should have a number of packets spread over time so that a single burst loss can't be the cause for the loss so that probability is low. So, the downside of the above algorithm is that to get low probability you may have several retransmission of the handshake. From an ECN perspective an implementation could mark a single packet per RTT and not give up testing until 10 RTTs has past. That would have a low probability for spurious disablement.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2752?email_source=notifications&amp;email_token=AFTOJKY3UK5MXB5JMEAGYC3QA4PWRA5CNFSM4HOVYD72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JR4KI#discussion_r306386166">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK422KORWZCPBQNMQS3QA4PWRANCNFSM4HOVYD7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6VASCBBQ7H7QJT7MDQA4PWRA5CNFSM4HOVYD72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JR4KI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2752?email_source=notifications\u0026email_token=AFTOJKY3UK5MXB5JMEAGYC3QA4PWRA5CNFSM4HOVYD72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JR4KI#discussion_r306386166",
"url": "https://github.com/quicwg/base-drafts/pull/2752?email_source=notifications\u0026email_token=AFTOJKY3UK5MXB5JMEAGYC3QA4PWRA5CNFSM4HOVYD72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JR4KI#discussion_r306386166",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3727e878d23_1d5b3fc1c4ecd964476561--


From nobody Tue Jul 23 08:32:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3CCF512042E for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:32:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mtv2nFJ1MnHO for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:32:19 -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 AD739120377 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:32:19 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:32:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563895939; bh=yOI4tjGhIfrsBPrg3yisHkHFTkazoLiLWBR6QqWQ04g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ae7HsTbSpMeRzu9wcQeBAxg9E2Yn4/s7SamFzr46mwAtk6H5hXzIGpjWHufNjCkmv zXZrV2h6/RMULCAJ3LuH5WOxyPtxIru32AODlBM4f30+T0++NehK1M0/zLaKCXSTcV 7jaqKx48nd6cOzzibVMOTNk6LF7JPt5MdtUehemQ=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2RUAXD5S4LNKP7W5N3IRNQFEVBNHHBWJFGY4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2785/514262352@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2785@github.com>
References: <quicwg/base-drafts/issues/2785@github.com>
Subject: Re: [quicwg/base-drafts] Disallow reuse of stateless reset tokens (#2785)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372882c9106_27eb3fe2370cd95c29527c"; 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/tG0mT545QGn-dGTpnfHOb60R-V0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:32:23 -0000

----==_mimepart_5d372882c9106_27eb3fe2370cd95c29527c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal, next step is for @martinthomson to do a PR and follow normal 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/2785#issuecomment-514262352
----==_mimepart_5d372882c9106_27eb3fe2370cd95c29527c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal, next step is for <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> to do a PR and follow normal 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/2785?email_source=notifications&amp;email_token=AFTOJK7N762FUYQVX3KR433QA4QAFA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQKUA#issuecomment-514262352">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4CQL3T3JS6DV2JXDTQA4QAFANCNFSM4HXP5S2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KF2S37MPB5IKUM2TQA4QAFA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQKUA.gif" height="1" width="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/2785?email_source=notifications\u0026email_token=AFTOJK7N762FUYQVX3KR433QA4QAFA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQKUA#issuecomment-514262352",
"url": "https://github.com/quicwg/base-drafts/issues/2785?email_source=notifications\u0026email_token=AFTOJK7N762FUYQVX3KR433QA4QAFA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQKUA#issuecomment-514262352",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372882c9106_27eb3fe2370cd95c29527c--


From nobody Tue Jul 23 08:33:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 10B8812042F for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:32:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gLHs46Vs4qw8 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:32:55 -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 B03E812040B for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:32:55 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:32:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563895974; bh=xS1n6O3tRzg8c9MFq9xlagaFpUHP080eG6vKe7G7f0s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bv8bjkv1MgNC3HvGBp3xRNz9XGNlOa1IirzkvINOLuiVQMuPQqHOPpWyb72vseW4a jQy37u/FmXJ6iAiZZc7/aIO8CfNTEyGZvaqGICdKHn4GOdpyngcUFIxMPtlD8nJdUP 03NQ+hRuDXgXH5eq+ny5OnlY/xhIc5dPcke/A1eI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYNKOY7M2EIX46I2Z53IRNSNEVBNHHBWJFGY4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2785/514262604@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2785@github.com>
References: <quicwg/base-drafts/issues/2785@github.com>
Subject: Re: [quicwg/base-drafts] Disallow reuse of stateless reset tokens (#2785)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3728a6b8e50_67dc3fa79eacd96c685913"; 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/vNWMAaINTmYNnUDwgp_fWQXol4M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:33:06 -0000

----==_mimepart_5d3728a6b8e50_67dc3fa79eacd96c685913
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Conclusion: prohibit the use of duplicate tokens.  Allow, but not require the use of PROTOCOL_VIOLATION if a duplicate is detected.

-- 
You are receiving 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/2785#issuecomment-514262604
----==_mimepart_5d3728a6b8e50_67dc3fa79eacd96c685913
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Conclusion: prohibit the use of duplicate tokens.  Allow, but not require the use of PROTOCOL_VIOLATION if a duplicate is detected.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2785?email_source=notifications&amp;email_token=AFTOJK3CMJ75AF7XRNKJ7J3QA4QCNA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQMTA#issuecomment-514262604">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3Z74QJSINV6BQEZ6DQA4QCNANCNFSM4HXP5S2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK32BTRF3TSRYRXZIZTQA4QCNA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQMTA.gif" height="1" width="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/2785?email_source=notifications\u0026email_token=AFTOJK3CMJ75AF7XRNKJ7J3QA4QCNA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQMTA#issuecomment-514262604",
"url": "https://github.com/quicwg/base-drafts/issues/2785?email_source=notifications\u0026email_token=AFTOJK3CMJ75AF7XRNKJ7J3QA4QCNA5CNFSM4HXP5S2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQMTA#issuecomment-514262604",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3728a6b8e50_67dc3fa79eacd96c685913--


From nobody Tue Jul 23 08:33:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9FBF3120412 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:33:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 Ib68uCWQ-yCa for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:33: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 B213512040D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:33:04 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:33:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563895983; bh=lYA6dCNUZbEAQPaCC5zYQt5NkB//uuPNEVaVYec98rk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vFyCc/hPIPe1Df+qUcw/SCFYHdblOmgvygttNVIpjc7ZmJTiS184JJElFnvDFKIW2 1v/rFEfS3s/oz/frNodcgwyzOfq0Tn/eerOkzxGj2nxZo6irNYlcjAhG0Yu/C2AA8s j4kFJeMVRlu45C8tW8DXo/mOhTmSRbB0R2ItpWqI=
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7BYJBZ46VD7WY7L6F3IRNS7EVBNHHBSQ7R3A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2541/issue_event/2503506626@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2541@github.com>
References: <quicwg/base-drafts/issues/2541@github.com>
Subject: Re: [quicwg/base-drafts] Clients cannot abandon Initial packets while server can still send initial close (#2541)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3728afbffba_10f53fcea50cd95c3189f5"; 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/filGxBKC8uNEV1tbU5EI75PnYXw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:33:14 -0000

----==_mimepart_5d3728afbffba_10f53fcea50cd95c3189f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2541.

-- 
You are receiving 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/2541#event-2503506626
----==_mimepart_5d3728afbffba_10f53fcea50cd95c3189f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="423883224" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2541" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2541/hovercard" href="https://github.com/quicwg/base-drafts/issues/2541">#2541</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/2541?email_source=notifications&amp;email_token=AFTOJKYYOBVMVFNLW3ML453QA4QC7A5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU4HVQQ#event-2503506626">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JA3JJ7TACNCYRAITQA4QC7ANCNFSM4HAIOPVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7QM2ENLYQXI5243PLQA4QC7A5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU4HVQQ.gif" height="1" width="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/2541?email_source=notifications\u0026email_token=AFTOJKYYOBVMVFNLW3ML453QA4QC7A5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU4HVQQ#event-2503506626",
"url": "https://github.com/quicwg/base-drafts/issues/2541?email_source=notifications\u0026email_token=AFTOJKYYOBVMVFNLW3ML453QA4QC7A5CNFSM4HAIOPVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSU4HVQQ#event-2503506626",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3728afbffba_10f53fcea50cd95c3189f5--


From nobody Tue Jul 23 08:34:44 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E005F120412 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:34:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id I38Z2j6wE2zF for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:34: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 838A112042E for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:34:30 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:34:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896069; bh=JrDoQ7V52WrRqEJHloQcmZSV4Fk3w8F7vBRwtsVhR68=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YpawWwyICFUNl54bWtC4aUt2tDVzuvDRn0kJwZVEWV1eyPKc7wMjS8OitAZkXMBjx S2LE1KVW824p40BAbhhzXnCOPt0G/Ow8oULtuH4NVOaMkAocV0YdFxhKP4NgXb6Rat dNDxCxX06UBFqzY3qmKgVqfjfb08YjC/WrEnp0mo=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2DQTVNQ3ODMTV52PF3IRNYLEVBNHHBUG5VDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2656/514263481@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2656@github.com>
References: <quicwg/base-drafts/issues/2656@github.com>
Subject: Re: [quicwg/base-drafts] Discarding connection state at server on unvalidated client (#2656)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372905c21ca_6fc03fd52a6cd95c38681"; 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/ulw14eF7tA7P5uGI22VecqySi8k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:34:42 -0000

----==_mimepart_5d372905c21ca_6fc03fd52a6cd95c38681
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal, decision is to flip to editorial

-- 
You are receiving 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/2656#issuecomment-514263481
----==_mimepart_5d372905c21ca_6fc03fd52a6cd95c38681
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal, decision is to flip to editorial</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2656?email_source=notifications&amp;email_token=AFTOJK4ADAQW72Q4RTFZDJLQA4QILA5CNFSM4HI52TR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQTOI#issuecomment-514263481">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYDEVZG7ZVKRBTAIBDQA4QILANCNFSM4HI52TRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZAUUB7CUYOYGAJDYTQA4QILA5CNFSM4HI52TR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQTOI.gif" height="1" width="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/2656?email_source=notifications\u0026email_token=AFTOJK4ADAQW72Q4RTFZDJLQA4QILA5CNFSM4HI52TR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQTOI#issuecomment-514263481",
"url": "https://github.com/quicwg/base-drafts/issues/2656?email_source=notifications\u0026email_token=AFTOJK4ADAQW72Q4RTFZDJLQA4QILA5CNFSM4HI52TR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQTOI#issuecomment-514263481",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372905c21ca_6fc03fd52a6cd95c38681--


From nobody Tue Jul 23 08:36:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C5BC91203CD for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:36:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 38mTZR-d7VWp for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 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 3035D12016D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:36:12 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:36:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896171; bh=Ztn6ejcVp2SnKULQTmq+wWGItIQT1gBFrt+mnIbwhJQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d+b3yCQyjl0Wywa4I8XMlzPh5WH4JmiwqF5sgAtyqoCpiWup6Un9mkIzp42/sjVNM N9169pmWg8qqrhX5juOXal0TWu+zTWYzWOstAidXtm0pWiEsaqjNGCc9L/vBiF27r5 8YqZ9YgeJFfdb7+p6Dy6eqXHhiQtCvsVm1tRR10M=
From: Magnus Westerlund <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KA4ZDFQDGSTVSOFF3IRN6XEVBNHHBOTDA3Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2163/514264284@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2163@github.com>
References: <quicwg/base-drafts/issues/2163@github.com>
Subject: Re: [quicwg/base-drafts] ECN attacks (#2163)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37296b49f7a_4fb23fc4778cd9642352c"; 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/tl4yrfZAAo9WjuR9fe3XdK_AWzA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:36:23 -0000

----==_mimepart_5d37296b49f7a_4fb23fc4778cd9642352c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So @ekr is this resolved or do you expect more than what Martin wrote? 

-- 
You are receiving 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/2163#issuecomment-514264284
----==_mimepart_5d37296b49f7a_4fb23fc4778cd9642352c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1111457" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a> is this resolved or do you expect more than what Martin wrote?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2163?email_source=notifications&amp;email_token=AFTOJKYBPLMOLQZVOJFVE6LQA4QOXA5CNFSM4GKKCOB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQZXA#issuecomment-514264284">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYN67JRQ36RX5WCCLTQA4QOXANCNFSM4GKKCOBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5TGO7T3ODDVAIOX4LQA4QOXA5CNFSM4GKKCOB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQZXA.gif" height="1" width="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/2163?email_source=notifications\u0026email_token=AFTOJKYBPLMOLQZVOJFVE6LQA4QOXA5CNFSM4GKKCOB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQZXA#issuecomment-514264284",
"url": "https://github.com/quicwg/base-drafts/issues/2163?email_source=notifications\u0026email_token=AFTOJKYBPLMOLQZVOJFVE6LQA4QOXA5CNFSM4GKKCOB2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQZXA#issuecomment-514264284",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37296b49f7a_4fb23fc4778cd9642352c--


From nobody Tue Jul 23 08:37:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3FEDA120419 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:36:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-qjIHhK4LKr for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:36: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 997251203B6 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:36:56 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:36:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896215; bh=KdNLyWu6Ip2ElNT3p4elED5L5BZPemyj1vgf9fJCWnY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wqaQgV+06eR7m4ZtbzTphTmIKDIcCuGfp1OCdbI7hK3L76UHebCPbHyyNFbc4OeCR iF4XPYds3wJfwkweArHlmu5xvJD5KeCHQ3wnudOD87IDx/1OHRN8IIM91bpgzs3lfO lMq8WImdewXywKdoXedj1K9mAjvheN9LbuzT85DA=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63SOYOF7U4TCWBWY53IROBPEVBNHHBOTGQ7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2170/514264576@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2170@github.com>
References: <quicwg/base-drafts/issues/2170@github.com>
Subject: Re: [quicwg/base-drafts] Embed QUIC version in expansion (#2170)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372997c999b_ea93fad064cd9641152cb"; 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/mBRxQni6y8cXps9HLl2YDDBNNrs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:37:09 -0000

----==_mimepart_5d372997c999b_ea93fad064cd9641152cb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal, close 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/2170#issuecomment-514264576
----==_mimepart_5d372997c999b_ea93fad064cd9641152cb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal, close 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/2170?email_source=notifications&amp;email_token=AFTOJKYIJPLICJA7HH2BFNDQA4QRPA5CNFSM4GKKSH6KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQ4AA#issuecomment-514264576">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6N3PYP4ROXDMGXMCTQA4QRPANCNFSM4GKKSH6A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SVRPKQ5NGF7VACMTQA4QRPA5CNFSM4GKKSH6KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQ4AA.gif" height="1" width="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/2170?email_source=notifications\u0026email_token=AFTOJKYIJPLICJA7HH2BFNDQA4QRPA5CNFSM4GKKSH6KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQ4AA#issuecomment-514264576",
"url": "https://github.com/quicwg/base-drafts/issues/2170?email_source=notifications\u0026email_token=AFTOJKYIJPLICJA7HH2BFNDQA4QRPA5CNFSM4GKKSH6KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TQ4AA#issuecomment-514264576",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372997c999b_ea93fad064cd9641152cb--


From nobody Tue Jul 23 08:45:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B5D3012041D for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:45:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SdoTQ8rIRZgJ for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:45:22 -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 46031120369 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:45:22 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:45:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896721; bh=s9ahwRpqfG6f5vnTfUIXNkwG4+Fp0WzKEigBVEQF/wg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YS+35qPuRauIKHKwqhOol6qe48tFyhI116Fjwl7rjorxskCPRfWrOSEov9KyQfNEM gO2XNWbMpFWzuWkYDXOPtZYZQCT5V7/i5K9gwcdOIBRpTdk9sLSH5r08kef/mTLz8t ucjKrs+sHFvJrrL48ExTXJ/kLi7Pb9H5srLNdwP8=
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CP5KUSVX3HZRTXVV3IRPBDEVBNHHBOSK35E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2143/514268056@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2143@github.com>
References: <quicwg/base-drafts/issues/2143@github.com>
Subject: Re: [quicwg/base-drafts] Be more conservative about migration? (#2143)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372b913e05d_63d33fac7e2cd96c157288"; 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/DusJ22SI7HIcJFTbXlMKhudDpsU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:45:29 -0000

----==_mimepart_5d372b913e05d_63d33fac7e2cd96c157288
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Can we be careful with how we sue "off path" - I think this uses the term assuming some visibility of the packets. In many transport documents, we assume that an off-path attacker does not have a way to see the 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/issues/2143#issuecomment-514268056
----==_mimepart_5d372b913e05d_63d33fac7e2cd96c157288
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Can we be careful with how we sue "off path" - I think this uses the term assuming some visibility of the packets. In many transport documents, we assume that an off-path attacker does not have a way to see the 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/issues/2143?email_source=notifications&amp;email_token=AFTOJK26WJISXJOP5KWTXF3QA4RRDA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TRXGA#issuecomment-514268056">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ZBGVKTDPXCL2TPDDQA4RRDANCNFSM4GKGTPSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZWZAKVQQHYRDQFSKDQA4RRDA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TRXGA.gif" height="1" width="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/2143?email_source=notifications\u0026email_token=AFTOJK26WJISXJOP5KWTXF3QA4RRDA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TRXGA#issuecomment-514268056",
"url": "https://github.com/quicwg/base-drafts/issues/2143?email_source=notifications\u0026email_token=AFTOJK26WJISXJOP5KWTXF3QA4RRDA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TRXGA#issuecomment-514268056",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372b913e05d_63d33fac7e2cd96c157288--


From nobody Tue Jul 23 08:46:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0E8411202D1 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:46:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xtBkT-x40NZC for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:46: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 8E422120059 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:46:07 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:46:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896766; bh=E+UkyNysE7t5JW7+rYdWdOXesK5eJFUPe/DK69YHdfg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ehLA6PBXJTl9eBsHNHQoJBLHm6BtqQuC+vt2qIksExe2sdgOSnMTdEVr5UXYwv8x/ i5KRgeBfG2zq9eB7M/zYcT5gIeg8rkJEt+ERQ1/q5DiIsisXq0pmzMEWR/r53Z9/BG gO4L1En2uL83KWzgSN+vsGzueX1k6DqTIU7qfJk4=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JDV4DTV3CWQOSICV3IRPD5EVBNHHBXQE5FY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2880/review/265504886@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2880@github.com>
References: <quicwg/base-drafts/pull/2880@github.com>
Subject: Re: [quicwg/base-drafts] Articulate error code principles (#2880)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372bbecb912_4ad3f7f0a2cd96867316"; 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/3Xiq4oMxUYop1k-hTgxnW1hXVnk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:46:10 -0000

----==_mimepart_5d372bbecb912_4ad3f7f0a2cd96867316
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/2880#pullrequestreview-265504886
----==_mimepart_5d372bbecb912_4ad3f7f0a2cd96867316
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2880?email_source=notifications&amp;email_token=AFTOJKYYKNCHNZDJ2NI5MDTQA4RT5A5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JUQ5Q#pullrequestreview-265504886">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VQYUUMP62NFLBM43QA4RT5ANCNFSM4H7CJCEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYLCWACXPBKPBIGJ7TQA4RT5A5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JUQ5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJKYYKNCHNZDJ2NI5MDTQA4RT5A5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JUQ5Q#pullrequestreview-265504886",
"url": "https://github.com/quicwg/base-drafts/pull/2880?email_source=notifications\u0026email_token=AFTOJKYYKNCHNZDJ2NI5MDTQA4RT5A5CNFSM4H7CJCEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JUQ5Q#pullrequestreview-265504886",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372bbecb912_4ad3f7f0a2cd96867316--


From nobody Tue Jul 23 08:47:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3D704120388 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:47:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YkoStLiVrs97 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:47:13 -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 6A28D120344 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:47:13 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:47:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896832; bh=SsC8kThsjG/57ynvTtyFWSkRISoek1re4roDh7PnaNo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rNk60yMQHV188oGoyxd1AY8bQuCdjCHTof/qIUNQ1a0haEDt/L1cQK7ut5Hktw+vj 49A/IWO1sWurbcaqkmaxb3mpzdG/D4h16aPavmOhb20nwIA/TzG0TVQI5Hgm70DgB2 JXgzfRelUGBSRieFwXL30RuW4ERnHeMR6Xrx0KVA=
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5LE5KX6ZQ5PYTW2HF3IRPIBEVBNHHBQHMEY4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2387/514268833@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2387@github.com>
References: <quicwg/base-drafts/issues/2387@github.com>
Subject: Re: [quicwg/base-drafts] Write up our security target against on-path attack (#2387)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372c0033aa0_17f53fb4abccd96484556"; 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/sctteqEcJVmQGR3N95caxrOnJLc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:47:24 -0000

----==_mimepart_5d372c0033aa0_17f53fb4abccd96484556
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal, will be a add-on to #2143 

-- 
You are receiving 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/2387#issuecomment-514268833
----==_mimepart_5d372c0033aa0_17f53fb4abccd96484556
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal, will be a add-on to <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="390683625" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2143" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2143/hovercard" href="https://github.com/quicwg/base-drafts/issues/2143">#2143</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/2387?email_source=notifications&amp;email_token=AFTOJK2FEQLOVE55JLRJ7PDQA4RYBA5CNFSM4GTFR5SKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TR5II#issuecomment-514268833">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY3MNW3CLJLCUB6GUDQA4RYBANCNFSM4GTFR5SA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34GYYXVQLJEJECKSLQA4RYBA5CNFSM4GTFR5SKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TR5II.gif" height="1" width="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/2387?email_source=notifications\u0026email_token=AFTOJK2FEQLOVE55JLRJ7PDQA4RYBA5CNFSM4GTFR5SKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TR5II#issuecomment-514268833",
"url": "https://github.com/quicwg/base-drafts/issues/2387?email_source=notifications\u0026email_token=AFTOJK2FEQLOVE55JLRJ7PDQA4RYBA5CNFSM4GTFR5SKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TR5II#issuecomment-514268833",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372c0033aa0_17f53fb4abccd96484556--


From nobody Tue Jul 23 08:48:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B826B1203D3 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:47:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_aDsd-aiwYi for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:47: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 69C751203BB for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:47:48 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:47:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896867; bh=7wntnlB+vi36/O7DkGUYQWCqvrNTjHg+8qDbyooE/GQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rGy5QUfAwMgwYq/ueum38SyPkde1Z4FrL0Z5kxxnSZBZfNjxNxphQuiAmxLMReI8N Kg2WtefY4M1e91xm5Q7u4fwpfsOrttdvi/kD7YI8l2W7ZhIugULNwF/JJeXqG5RPuw 9AJeaX5dVsSCUyesUHtp7k0beY3d5dTB8Xkd88/o=
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/2851/push/3847058573@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372c2374da4_1333fcd270cd9681577ac"; 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/_Ccq1LUJlvFi7XV0UKyHBFaE83Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:48:01 -0000

----==_mimepart_5d372c2374da4_1333fcd270cd9681577ac
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

9616f24592d5d23bb927661917238d9de7f4df42  Change MUST to SHOULD


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2851/files/93185582222626bad7f217199d35de05f81ced11..9616f24592d5d23bb927661917238d9de7f4df42

----==_mimepart_5d372c2374da4_1333fcd270cd9681577ac
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/9616f24592d5d23bb927661917238d9de7f4df42">9616f24</a>  Change MUST to SHOULD</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/2851/files/93185582222626bad7f217199d35de05f81ced11..9616f24592d5d23bb927661917238d9de7f4df42?email_source=notifications&amp;email_token=AFTOJK2GDD73Q47QM2MS22DQA4R2HA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBVHA2TOMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2N45HMVGI4EOMBQBLQA4R2HANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5MC32HGZPOM54XC3DQA4R2HA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBVHA2TOMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851/files/93185582222626bad7f217199d35de05f81ced11..9616f24592d5d23bb927661917238d9de7f4df42?email_source=notifications\u0026email_token=AFTOJK2GDD73Q47QM2MS22DQA4R2HA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBVHA2TOMY",
"url": "https://github.com/quicwg/base-drafts/pull/2851/files/93185582222626bad7f217199d35de05f81ced11..9616f24592d5d23bb927661917238d9de7f4df42?email_source=notifications\u0026email_token=AFTOJK2GDD73Q47QM2MS22DQA4R2HA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBVHA2TOMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d372c2374da4_1333fcd270cd9681577ac--


From nobody Tue Jul 23 08:49:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5F6061201C3 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:48:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vTOFSctzxfap for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:48:57 -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 2467E120193 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:48:57 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:48:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563896936; bh=b0OyP9gnrZKUfLn4r1MWaTc1vb8rJZZkg1Y0LAA3KCk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=L7iwm6SKaSumB/kdGgEPtphBbgRGDiE73V/e7QkEzYg498jAdr5/KbzAnWG7HF5Gi y7wy8XMFVJWv2ogjRxm6w8Cz9JgVukjuzR1DXxsmDs+Rt53hFfWyE4WBYfaLjFuPFv 6rZNTWYrxc9eL4z+KKTGSZ7m8vVfOIb+G4tZd/dk=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FDGRA2E425F6O3NN3IRPOREVBNHHBYGSUE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925/c514269501@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2925@github.com>
References: <quicwg/base-drafts/pull/2925@github.com>
Subject: Re: [quicwg/base-drafts] Add initial threat model appendix (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372c681145b_2b013fc66accd95c22489f"; 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/1L0sHbDr5gHF_ow9XNHaf4BCWjI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:48:59 -0000

----==_mimepart_5d372c681145b_2b013fc66accd95c22489f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Upcoming change to terminology here as well, just as a 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/pull/2925#issuecomment-514269501
----==_mimepart_5d372c681145b_2b013fc66accd95c22489f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Upcoming change to terminology here as well, just as a 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/pull/2925?email_source=notifications&amp;email_token=AFTOJK2IK7EKW3SYXYKYU73QA4R6RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSCPI#issuecomment-514269501">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LQVZ6NRDNFRPU3TLQA4R6RANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5T6IX5CMUQA5RE43TQA4R6RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSCPI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK2IK7EKW3SYXYKYU73QA4R6RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSCPI#issuecomment-514269501",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK2IK7EKW3SYXYKYU73QA4R6RA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSCPI#issuecomment-514269501",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372c681145b_2b013fc66accd95c22489f--


From nobody Tue Jul 23 08:50:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DB553120193 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:50:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 RtDlQhjTW25q for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:50: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 64609120059 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:50:37 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:50:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563897036; bh=3OuFgCtbYXBHTGrM2ABr12vmj/MNBxWfKZXuqyki5Ko=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EHEiNWDI5r6XLQzwVsdAjmV5GIiKO8h4391kKb5imtpNqO31XvJmFj/o+wiuC0uwv DEA2aj0qXZpHGOhg88G30z1TyOoCFg9p4A6keRtqNSoBUlSwT6Q7Iu66b78EjJ5F8r ix7fSBIgJblTa9ETQMFy7NXbGz9ws0Kp68Qr6mvE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ZOESUGFMDGYJBV3F3IRPUZEVBNHHBXX3J5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2893/review/265507965@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2893@github.com>
References: <quicwg/base-drafts/pull/2893@github.com>
Subject: Re: [quicwg/base-drafts] Remove DoS vector for spoofed connection migration (#2893)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372ccc73a3a_21b43fe4c3acd964239665"; 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/GGziueXUOOZrPnEdR0ICtyE1z5s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:50:39 -0000

----==_mimepart_5d372ccc73a3a_21b43fe4c3acd964239665
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/2893#pullrequestreview-265507965
----==_mimepart_5d372ccc73a3a_21b43fe4c3acd964239665
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2893?email_source=notifications&amp;email_token=AFTOJK5R7RFJVJCIBELZRSLQA4SEZA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVI7I#pullrequestreview-265507965">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VQM5TWFYQYRGAUQLQA4SEZANCNFSM4ICSVGUQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2745HWGDWNLL2YWU3QA4SEZA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVI7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK5R7RFJVJCIBELZRSLQA4SEZA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVI7I#pullrequestreview-265507965",
"url": "https://github.com/quicwg/base-drafts/pull/2893?email_source=notifications\u0026email_token=AFTOJK5R7RFJVJCIBELZRSLQA4SEZA5CNFSM4ICSVGU2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVI7I#pullrequestreview-265507965",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372ccc73a3a_21b43fe4c3acd964239665--


From nobody Tue Jul 23 08:53:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 25DD5120193 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:53:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rVV1YcTl3JG5 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:53: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 429B01203C9 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:53:54 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:53:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563897233; bh=QK3BmXSOsrUuBFti/Q3Hrk/U8PC4dxXdgNsHQ7CSEtI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0RkSUCWULwIpgvctjVOEtMV15N5Yzx5MiU51xHgybJzjyohdGH/KY0SzU9Rs4RHg+ UUQ2cT19jNEQl3o0FPgd9QlHgvxxPXqP9xRdWtlwMlzsYcNQu5a2R0cadlxtyANvUi jHKsTKgQixqtQDe3EhU3EE1ZLet66AiKBkAbORDU=
From: Magnus Westerlund <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3X6FIARL4Y2HZBI7N3IRQBDEVBNHHBXP7DOI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2879/review/265510103@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2879@github.com>
References: <quicwg/base-drafts/pull/2879@github.com>
Subject: Re: [quicwg/base-drafts] Add note about stale ACK frames breaking ECN (#2879)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372d9153783_19843f8e932cd95c212745"; 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/q1bwfYVZPk3U-8WJLien1LM5mXQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:53:57 -0000

----==_mimepart_5d372d9153783_19843f8e932cd95c212745
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

gloinul commented on this pull request.



> @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in


> Rationale: Say I ACK 1-4 then later drop that range (for any reason) and ACK 5-9 in another packet. If those packets get reordered, then when the first eventually arrives, it will have new acknowledgments, but it will still have bad ECN counts. So you can't say that new acknowledgments is necessary.

But, in this situation when the ECN counters increase more than expected, the sender getting the ACK will detect that ECN counter increase more and re-synchronize its state. Per this text: 

   An endpoint could miss acknowledgements for a packet when ACK frames
   are lost.  It is therefore possible for the total increase in ECT(0),
   ECT(1), and CE counts to be greater than the number of packets
   acknowledged in an ACK frame.  When this happens, and if verification
   succeeds, the local reference counts MUST be increased to match the
   counts in the ACK frame.

Thus, if ACK 1-4 arrive then it will not increase the largest acknowledged, it may however ACK new packets if there are no overlapp. But, according to the rules here it will not result in a validation. 
> 
> The packet number is clearly the thing to use - and sufficient on its own - but would it be enough to look for increases in largest acknowledged? ACK processors should not be expected to have access to packet numbers. Allowing implementations to use largest acknowledged would depend on us not allowing that to regress, but that seems like it follows from existing advice.

I think this also will ensure that @janaiyengar  rule about not increasing ECN counter is also not needed, or do I fail to understand the concern? 


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2879#discussion_r306398981
----==_mimepart_5d372d9153783_19843f8e932cd95c212745
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@gloinul</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2879#discussion_r306398981">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3154,11 +3154,13 @@ to be greater than the number of packets acknowledged in an ACK frame.  When
 this happens, and if verification succeeds, the local reference counts MUST be
 increased to match the counts in the ACK frame.
 
-Processing counts out of order can result in verification failure.  An endpoint
-SHOULD NOT perform this verification if the ACK frame is received in a packet
-with packet number lower than a previously received ACK frame.  Verifying based
-on ACK frames that arrive out of order can result in disabling ECN
-unnecessarily.
+Processing counts out of order can result in verification failure.  This can
+happen when packets containing ACK frames are reordered in the network, or if a
+sender retransmits an ACK frame with stale information.  An endpoint SHOULD NOT
+perform this verification if the ACK frame is received in a packet with packet
+number lower than a previously received ACK frame or if the ACK frame does not
+acknowledge any new packets. ACK frames that arrive out of order can result in
</pre>
<blockquote>
<p>Rationale: Say I ACK 1-4 then later drop that range (for any reason) and ACK 5-9 in another packet. If those packets get reordered, then when the first eventually arrives, it will have new acknowledgments, but it will still have bad ECN counts. So you can't say that new acknowledgments is necessary.</p>
</blockquote>
<p>But, in this situation when the ECN counters increase more than expected, the sender getting the ACK will detect that ECN counter increase more and re-synchronize its state. Per this text:</p>
<p>An endpoint could miss acknowledgements for a packet when ACK frames<br>
are lost.  It is therefore possible for the total increase in ECT(0),<br>
ECT(1), and CE counts to be greater than the number of packets<br>
acknowledged in an ACK frame.  When this happens, and if verification<br>
succeeds, the local reference counts MUST be increased to match the<br>
counts in the ACK frame.</p>
<p>Thus, if ACK 1-4 arrive then it will not increase the largest acknowledged, it may however ACK new packets if there are no overlapp. But, according to the rules here it will not result in a validation.</p>
<blockquote>
<p>The packet number is clearly the thing to use - and sufficient on its own - but would it be enough to look for increases in largest acknowledged? ACK processors should not be expected to have access to packet numbers. Allowing implementations to use largest acknowledged would depend on us not allowing that to regress, but that seems like it follows from existing advice.</p>
</blockquote>
<p>I think this also will ensure that <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=11067604" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/janaiyengar">@janaiyengar</a>  rule about not increasing ECN counter is also not needed, or do I fail to understand the concern?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2879?email_source=notifications&amp;email_token=AFTOJKZ2M3FMBD3KW5XCC43QA4SRDA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVZVY#discussion_r306398981">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JMPUGVZ274YWC3VTQA4SRDANCNFSM4H7BMUZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BEOCC3UVSOYQCCB3QA4SRDA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVZVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2879?email_source=notifications\u0026email_token=AFTOJKZ2M3FMBD3KW5XCC43QA4SRDA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVZVY#discussion_r306398981",
"url": "https://github.com/quicwg/base-drafts/pull/2879?email_source=notifications\u0026email_token=AFTOJKZ2M3FMBD3KW5XCC43QA4SRDA5CNFSM4H7BMUZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7JVZVY#discussion_r306398981",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372d9153783_19843f8e932cd95c212745--


From nobody Tue Jul 23 08:54:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9F6E6120173 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:54:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QfYdlhFydZyG for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:54: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 0B6B5120193 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:54:18 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:54:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563897256; bh=CXWowGxV6J3or7HBPQF9yGyCeBqU38pwiXi9nFQfIWM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gGCw4YHflIP6RLrQRXvQTT1Ct3O6mK+kjajEBokS3OZm/SaRZcIlR6pgAHGeVR0Ah lR/eJ/cZ2zYHrSXmpMPuv5qYNa4OT4O4pKgC9Si9gv8jC+/rrD1UrJNEMoUy1/JLZY 4auEU/g7BAftB0VRmEeVwvjg7OP4VVPpY0kX/gqs=
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/2851/push/3847086652@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372da8da5f0_f0a3fb29becd96020728d"; 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/xfJYaGl5IVpvq0LmXzupKiRdUsM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:54:20 -0000

----==_mimepart_5d372da8da5f0_f0a3fb29becd96020728d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

f659c0d3731fd6d9b332011455857cf342e49b3d  Add clarification on consequences of violating SHOULD


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2851/files/9616f24592d5d23bb927661917238d9de7f4df42..f659c0d3731fd6d9b332011455857cf342e49b3d

----==_mimepart_5d372da8da5f0_f0a3fb29becd96020728d
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/f659c0d3731fd6d9b332011455857cf342e49b3d">f659c0d</a>  Add clarification on consequences of violating SHOULD</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/2851/files/9616f24592d5d23bb927661917238d9de7f4df42..f659c0d3731fd6d9b332011455857cf342e49b3d?email_source=notifications&amp;email_token=AFTOJKYYTNMMPWWDCVCOBVLQA4SSRA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBYGY3DKMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4T6KTFNQWQY4NWAXTQA4SSRANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RIUFXDAQAYYUVXVLQA4SSRA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBYGY3DKMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851/files/9616f24592d5d23bb927661917238d9de7f4df42..f659c0d3731fd6d9b332011455857cf342e49b3d?email_source=notifications\u0026email_token=AFTOJKYYTNMMPWWDCVCOBVLQA4SSRA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBYGY3DKMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2851/files/9616f24592d5d23bb927661917238d9de7f4df42..f659c0d3731fd6d9b332011455857cf342e49b3d?email_source=notifications\u0026email_token=AFTOJKYYTNMMPWWDCVCOBVLQA4SSRA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TEMJWGU4DMMKQOVZWQIZTHA2DOMBYGY3DKMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d372da8da5f0_f0a3fb29becd96020728d--


From nobody Tue Jul 23 08:54:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CDACA1203AA for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:54:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OdiWnn8bkIJJ for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:54:29 -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 0E37D120347 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:54:29 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:54:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563897268; bh=ciTQHvXhAZt0PZjjda+19DmLeOPEqKh7wMSkpZOJ5JQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OMBgaEXQL1UCHug3p5qs6Zl6mjEEay51qVOhAu9f68bZsdai1Q9fT1jFfr5EhBeA7 yDIQrfOvTtYAshUJ4Dl2uFEzqRSo0VGeSnjbVi69b/9qQba/Rdje9rj4VhlznbPxY8 vBRmzIksqfLifoBDc7voqwrXtnbtFNMO8aAvnXb0=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6J7VIDNP6634TDMLV3IRQDJEVBNHHBOSK35E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2143/514271725@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2143@github.com>
References: <quicwg/base-drafts/issues/2143@github.com>
Subject: Re: [quicwg/base-drafts] Be more conservative about migration? (#2143)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372db469eb6_309f3fc66accd95c2325b8"; 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/ZKRPrUMdKZ9qcv6r2-OPJc-8LXE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:54:38 -0000

----==_mimepart_5d372db469eb6_309f3fc66accd95c2325b8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yes, sorry @gorryfair, I've got a reference to RFC 3552 in there but haven't updated to fully use the correct terminology yet. Will do, and I'll ping you to take another look to make sure I get the right ones in the right 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/2143#issuecomment-514271725
----==_mimepart_5d372db469eb6_309f3fc66accd95c2325b8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yes, sorry <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=7386514" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gorryfair">@gorryfair</a>, I've got a reference to RFC 3552 in there but haven't updated to fully use the correct terminology yet. Will do, and I'll ping you to take another look to make sure I get the right ones in the right 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/2143?email_source=notifications&amp;email_token=AFTOJKYKEAEL644U6D37YRDQA4STJA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TST3I#issuecomment-514271725">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZW6WFZ6XO24OV5WHLQA4STJANCNFSM4GKGTPSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2H55GQQP4XDWJEFKDQA4STJA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TST3I.gif" height="1" width="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/2143?email_source=notifications\u0026email_token=AFTOJKYKEAEL644U6D37YRDQA4STJA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TST3I#issuecomment-514271725",
"url": "https://github.com/quicwg/base-drafts/issues/2143?email_source=notifications\u0026email_token=AFTOJKYKEAEL644U6D37YRDQA4STJA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TST3I#issuecomment-514271725",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372db469eb6_309f3fc66accd95c2325b8--


From nobody Tue Jul 23 08:56:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 93E4D12015B for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:56:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sjAj5spQkCew for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 08:56: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 B15A0120121 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 08:56:14 -0700 (PDT)
Date: Tue, 23 Jul 2019 08:56:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563897373; bh=VCfIz7j1y98yv3Hgzhn/Y937THne2krGU5UsgqkOMIk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hc8PyGKKSZicx4I9+XPOAQtPi0VfIWY9tGyoJp3pv5JAQ7EI7s25aeT8RvtRXQASX SnH/lk0GQuRrR0xPVinH7qRtt6wB/CAHLFoetE4k9WAY0A4RJNe9Wajaalq5dkTsIG m+Z+0bbjDZZtUxJHYwze5ALe+yhIWcYdWtTWgE/U=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TM7CESEXT3B3BCRV3IRQJ3EVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514272371@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d372e1d9e98b_27ca3fcf34ccd95c4465f5"; 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/EJOwAUbFfDDD4JxOtgqzAsEMjo0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 15:56:17 -0000

----==_mimepart_5d372e1d9e98b_27ca3fcf34ccd95c4465f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I've updated the associated PR #2851 to make this a SHOULD, and explain that it MUST NOT be violated unless an endpoint knows that these features are not in use.

-- 
You are receiving 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/2844#issuecomment-514272371
----==_mimepart_5d372e1d9e98b_27ca3fcf34ccd95c4465f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I've updated the associated PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461188950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2851" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2851/hovercard" href="https://github.com/quicwg/base-drafts/pull/2851">#2851</a> to make this a SHOULD, and explain that it MUST NOT be violated unless an endpoint knows that these features are not in use.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK5PVGY7XC7VJWUV2ALQA4SZ3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSY4Y#issuecomment-514272371">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57RIULYDQGIPCSVJDQA4SZ3ANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYWZEF2C6TMC2NSMS3QA4SZ3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSY4Y.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK5PVGY7XC7VJWUV2ALQA4SZ3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSY4Y#issuecomment-514272371",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK5PVGY7XC7VJWUV2ALQA4SZ3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TSY4Y#issuecomment-514272371",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d372e1d9e98b_27ca3fcf34ccd95c4465f5--


From nobody Tue Jul 23 09:13:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 15A9C120347 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 09:13:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id x9Mx_BBAaX8h for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 09:13:27 -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 7741D12036F for <quic-issues@ietf.org>; Tue, 23 Jul 2019 09:13:27 -0700 (PDT)
Date: Tue, 23 Jul 2019 09:13:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563898406; bh=2030bAfOOny8rL1AtaeehQh77jJqB5bOXiL0YZ1lLtA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NwWKZ6FotqybWM88oQX33qnwMBGhl9FHF/19CyKr6PHdUFVWfy3Qz4gOON+CUJyFB oHptBTvfGw+7KNshs5MvuJaAuwqv1OvIlQOrNuQ5auXSmWKybSYxsmBdpZ+wJc/0cR ZLUapO3e3/Sl/ls3gqX3eslpAvpIgqMVp5ptzfhY=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ED5L6EN2LFGXVUL53IRSKNEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514279217@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37322689006_2ad53fa416acd95c189945"; 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/F4JG26pYVi5riKjFjGrR3r2B-Sw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 16:13:40 -0000

----==_mimepart_5d37322689006_2ad53fa416acd95c189945
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

The new text addresses my concerns =F0=9F=91=8D =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/2844#issuecomment-514279217=

----==_mimepart_5d37322689006_2ad53fa416acd95c189945
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>The new text addresses my concerns <g-emoji class=3D"g-emoji" alias=3D=
"+1" fallback-src=3D"https://github.githubassets.com/images/icons/emoji/u=
nicode/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/issues/2844?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK65WXF7ZJAWFBDJLGLQA4U2NA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TUOMI#issuecomment-514279217">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK6CI5CQXQTTBJSR7ILQA4U2NANCNFSM4H3LQX5A">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK5GYISO2CWM7MJ37GTQ=
A4U2NA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2TUOMI.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/issues/2844?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK65WXF7ZJAWFBDJLGLQA4U2NA5CNFSM4=
H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TUOM=
I#issuecomment-514279217",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=3D=
notifications\u0026email_token=3DAFTOJK65WXF7ZJAWFBDJLGLQA4U2NA5CNFSM4H3L=
QX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2TUOMI#i=
ssuecomment-514279217",=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_5d37322689006_2ad53fa416acd95c189945--


From nobody Tue Jul 23 09:39:28 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 389BD1203E0 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 09:39:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jh0sj1mP10WI for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 09:39: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 6FCA4120378 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 09:39:24 -0700 (PDT)
Date: Tue, 23 Jul 2019 09:39:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563899963; bh=vpT80tlJsEQHwfZrrW9dBpa7EJRMyFdaH4CRQ7GhnZw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SB/GpMOUGrHO76SKgACOwMpk5FnoIBRygVnXa4ufuu0YQTfHXcQSe2m2PEPRLc1n3 0wNmjH4rKxlYRKcaNfzqP1biSpgFqy494O4TTCNktHfqCKIRfvrCR3WoTkAy2aA5YU G3E81AvfQsIBE5EO3T2v8uzXph/UTrnzfimjpJnY=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6WVFA2GH7A4T3EEBF3IRVLXEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/265535844@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37383b6198b_45063f9c76ccd95c2160aa"; 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/bDh3cRWgCHsJ9TPsBXnszLoLsYA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 16:39:26 -0000

----==_mimepart_5d37383b6198b_45063f9c76ccd95c2160aa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

kazuho commented on this pull request.

:+1: The requirements look good to me. I only have one editorial suggestion.

> -connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID can be used when a connection ID is not needed
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length
+connection ID unless it can use only its IP address and port to identify a
+connection. The IP address and port used by a peer cannot be used for routing
+or connection identification as these values can change during a connection's
+lifetime, and the peer can reuse a given address and port for additional
+connections. Similarly, the peer's connection IDs cannot be used for routing
+or identification, as they are not transmitted in the short header packets
+they send. Note that multiplexing while using zero-length connection IDs and
+relying on the four-tuple of IP addresses and ports for routing will cause
+failures in the presence of connection migration, NAT rebinding, and client
+port reuse; and therefore MUST NOT be done unless an endpoint is certain that
+those protocol features are not in use.

I think it might be a good idea to move the "MUST NOT unless" up front, then explain the cases where a zero-length connection ID can be used. E.g.,

"Multiplexing while using zero-length connection IDs and relying on the four-tuple of IP addresses and ports for routing will cause failures in the presence of connection migration, NAT rebinding, and client port reuse; and therefore MUST NOT be done unless an endpoint is certain that those protocol features are not in use. A zero-length connection ID can be used when a connection ID is not needed to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length connection ID unless it can use only its IP address and port to identify 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/pull/2851#pullrequestreview-265535844
----==_mimepart_5d37383b6198b_45063f9c76ccd95c2160aa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@kazuho</b> commented on this pull request.</p>=0D
=0D
<p><g-emoji class=3D"g-emoji" alias=3D"+1" fallback-src=3D"https://github=
.githubassets.com/images/icons/emoji/unicode/1f44d.png">=F0=9F=91=8D</g-e=
moji> The requirements look good to me. I only have one editorial suggest=
ion.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2851#discussi=
on_r306420116">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -connection. An endpoint whose peer has se=
lected a zero-length connection ID MUST=0D
-continue to use a zero-length connection ID for the lifetime of the conn=
ection=0D
-and MUST NOT send packets from any other local address.=0D
+A zero-length connection ID can be used when a connection ID is not need=
ed=0D
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-leng=
th=0D
+connection ID unless it can use only its IP address and port to identify=
 a=0D
+connection. The IP address and port used by a peer cannot be used for ro=
uting=0D
+or connection identification as these values can change during a connect=
ion&#39;s=0D
+lifetime, and the peer can reuse a given address and port for additional=
=0D
+connections. Similarly, the peer&#39;s connection IDs cannot be used for=
 routing=0D
+or identification, as they are not transmitted in the short header packe=
ts=0D
+they send. Note that multiplexing while using zero-length connection IDs=
 and=0D
+relying on the four-tuple of IP addresses and ports for routing will cau=
se=0D
+failures in the presence of connection migration, NAT rebinding, and cli=
ent=0D
+port reuse; and therefore MUST NOT be done unless an endpoint is certain=
 that=0D
+those protocol features are not in use.=0D
</pre>=0D
<p>I think it might be a good idea to move the "MUST NOT unless" up front=
, then explain the cases where a zero-length connection ID can be used. E=
.g.,</p>=0D
<p>"Multiplexing while using zero-length connection IDs and relying on th=
e four-tuple of IP addresses and ports for routing will cause failures in=
 the presence of connection migration, NAT rebinding, and client port reu=
se; and therefore MUST NOT be done unless an endpoint is certain that tho=
se protocol features are not in use. A zero-length connection ID can be u=
sed when a connection ID is not needed to route to the correct endpoint. =
An endpoint SHOULD NOT use a zero-length connection ID unless it can use =
only its IP address and port to identify a connection. ..."</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/2851?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4SIKVCKTOBJNN2YHDQA4X3XA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7J4CZA#pullrequestreview-265535844=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK5Y5KJ3G6PKUINQQR3QA4X3XANCNFSM4H3WGHAA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK75IYFG=
KZEKGNVP4WDQA4X3XA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB7J4CZA.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/2851?email_source=3D=
notifications\u0026email_token=3DAFTOJK4SIKVCKTOBJNN2YHDQA4X3XA5CNFSM4H3W=
GHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
7J4CZA#pullrequestreview-265535844",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4SIKVCKTOBJNN2YHDQA4X3XA5CNFSM4H3WGH=
AKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7J=
4CZA#pullrequestreview-265535844",=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_5d37383b6198b_45063f9c76ccd95c2160aa--


From nobody Tue Jul 23 10:39:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 43FC0120712 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 10:39:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, 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 wkOqborLV2e0 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 10:39: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 058861206F5 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 10:39:16 -0700 (PDT)
Date: Tue, 23 Jul 2019 10:39:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563903556; bh=RLnyVwK/G5kziRmA2E5rzj5DyYiJL7TUwKJ8qZ+Ieds=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=cXOao4mAJ9U+gxVvvxZkd3hcXexl9u5+GOjNAzHZiH9zSBq+ntQ8N1IC14a37NQ61 oO5uKRJ/9DFp1M7bwoZ9Idmm5jVdNFqpVNW/RAWE0bjPuc/fWHWDnF59nXAKx7wmfB VkvTru/pC5t6l9S9iyLzROiphcayV3d9c1BpYzl8=
From: David Benjamin <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2GD7VZDWM4KYHI3WN3IR4MJEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928@github.com>
Subject: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d374644183ba_557a3fa993ecd96c689e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: davidben
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/499rYFSEoTaZEt0q--3wJJjF26w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 17:39:31 -0000

----==_mimepart_5d374644183ba_557a3fa993ecd96c689e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

draft-ietf-quic-tls says "QUIC requires that the first Initial packet from a client contain an entire cryptographic handshake message, which for TLS is the ClientHello."

My (possibly incorrect) understanding is this was needed so the server can, in the old QUIC/TLS embedding, statelessly send a HelloRetryRequest without having to statefully assemble a ClientHello out of multiple packets. In the new QUIC/TLS embedding, this concern no longer applies because the stateless rejects are entirely external to TLS. Thus, should we simply delete most of the #clienthello-size section?

This avoids a number of awkward pitfalls because the ClientHello size is a function of many factors, with both client and server considerations that change over time. Perhaps we add a new TLS extension or key share type and some SNIs work but larger SNIs were closer to the limit and this brings them over. Or perhaps the server's NewSessionTicket is large[*] and breaks subsequent connections from some client. Perhaps that server tested it against one client, but another client has a larger baseline ClientHello and then it breaks.

Finally, post-quantum key exchange candidates tend to come with [large keys](https://www.imperialviolet.org/2018/04/11/pqconftls.html). The current text prevents QUIC from experimenting with or deploying such schemes. This is particularly fun because QUIC clients typically also speak TLS over TCP, so the security of connections to a server is bound by the weaker of TLS over QUIC and TCP.

[*] Client certificates are often inserted into the ticket, so now we have a client-specific limit being influenced by a server-specific implementation decision which is, in turn, dependent on client/CA-controlled size of client certificate. Additionally, draft-ietf-quic-transport#zerortt-parameters implies servers may wish to remember QUIC transport parameters in the ticket.

-- 
You are receiving 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/2928
----==_mimepart_5d374644183ba_557a3fa993ecd96c689e9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>draft-ietf-quic-tls says "QUIC requires that the first Initial packet from a client contain an entire cryptographic handshake message, which for TLS is the ClientHello."</p>
<p>My (possibly incorrect) understanding is this was needed so the server can, in the old QUIC/TLS embedding, statelessly send a HelloRetryRequest without having to statefully assemble a ClientHello out of multiple packets. In the new QUIC/TLS embedding, this concern no longer applies because the stateless rejects are entirely external to TLS. Thus, should we simply delete most of the #clienthello-size section?</p>
<p>This avoids a number of awkward pitfalls because the ClientHello size is a function of many factors, with both client and server considerations that change over time. Perhaps we add a new TLS extension or key share type and some SNIs work but larger SNIs were closer to the limit and this brings them over. Or perhaps the server's NewSessionTicket is large[*] and breaks subsequent connections from some client. Perhaps that server tested it against one client, but another client has a larger baseline ClientHello and then it breaks.</p>
<p>Finally, post-quantum key exchange candidates tend to come with <a href="https://www.imperialviolet.org/2018/04/11/pqconftls.html" rel="nofollow">large keys</a>. The current text prevents QUIC from experimenting with or deploying such schemes. This is particularly fun because QUIC clients typically also speak TLS over TCP, so the security of connections to a server is bound by the weaker of TLS over QUIC and TCP.</p>
<p>[*] Client certificates are often inserted into the ticket, so now we have a client-specific limit being influenced by a server-specific implementation decision which is, in turn, dependent on client/CA-controlled size of client certificate. Additionally, draft-ietf-quic-transport#zerortt-parameters implies servers may wish to remember QUIC transport parameters in the ticket.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2928?email_source=notifications&amp;email_token=AFTOJKYSTDV3GZS6RZNN4NLQA464JA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA7TVDQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYR4BCA77OOUCHQCFTQA464JANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3KMHCGRNO77PPFDELQA464JA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA7TVDQ.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJKYSTDV3GZS6RZNN4NLQA464JA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA7TVDQ",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJKYSTDV3GZS6RZNN4NLQA464JA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA7TVDQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d374644183ba_557a3fa993ecd96c689e9--


From nobody Tue Jul 23 10:52:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DC16612071D for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 10:51:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 LTMkovAeQk01 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 10:51:58 -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 F41CC120700 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 10:51:57 -0700 (PDT)
Date: Tue, 23 Jul 2019 10:51:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563904316; bh=J6MX1WvfqIwMWMsarOwMPVmHJ8Bu8IIqGjm3UC9Gc60=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mEUfdSEE/3C1IxDi497qGMM6ChVUSu09T5WpZa+ya98HbkYKvjr/TKeD+WMXbNXVp 7pavr53/eh9uE3tFDCCGRxmISWppjGCQyQmCZGWiUZ73m+ElXa9LNYILQ0vDXh2HwQ cTY34oz+CM8Riv+dATYEK8MuF+g3S5Tnv7jHyuWE=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYK7HYYGVKLI4DWVHV3IR53ZEVBNHHBRWZGVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2496/514315505@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2496@github.com>
References: <quicwg/base-drafts/issues/2496@github.com>
Subject: Re: [quicwg/base-drafts] QUIC Version Ossification (#2496)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37493ce1462_1a43ffae90cd96422237"; 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/8rzsdL7A810Htuyb-xqxKcNQmVg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 17:52:12 -0000

----==_mimepart_5d37493ce1462_1a43ffae90cd96422237
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Although I might quibble over details, I definitely support option 2 (Marten's proposal). It is one of two proposals that actually prevent ossification, as @huitema points out. Doing it in TLS introduces some dependencies on TLS people to agree to implement ESNI.

I propose that we restore the downgrade protection text and move forward with Option 2. I would like to note that it is not strictly necessary that the rest go out with v1 -- we just need a draft that a critical mass of servers and clients agree 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/2496#issuecomment-514315505
----==_mimepart_5d37493ce1462_1a43ffae90cd96422237
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Although I might quibble over details, I definitely support option 2 (Marten's proposal). It is one of two proposals that actually prevent ossification, as <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=7464128" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/huitema">@huitema</a> points out. Doing it in TLS introduces some dependencies on TLS people to agree to implement ESNI.</p>
<p>I propose that we restore the downgrade protection text and move forward with Option 2. I would like to note that it is not strictly necessary that the rest go out with v1 -- we just need a draft that a critical mass of servers and clients agree 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/2496?email_source=notifications&amp;email_token=AFTOJKZMC225SSKV4JE43QDQA5ALZA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T5J4I#issuecomment-514315505">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK65XIYDRBXT6O47NMDQA5ALZANCNFSM4G3VHU4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK44F3S7HGBWNTEA6ZTQA5ALZA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T5J4I.gif" height="1" width="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/2496?email_source=notifications\u0026email_token=AFTOJKZMC225SSKV4JE43QDQA5ALZA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T5J4I#issuecomment-514315505",
"url": "https://github.com/quicwg/base-drafts/issues/2496?email_source=notifications\u0026email_token=AFTOJKZMC225SSKV4JE43QDQA5ALZA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T5J4I#issuecomment-514315505",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37493ce1462_1a43ffae90cd96422237--


From nobody Tue Jul 23 11:01:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2842E120779 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:01:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n2uUUwmG-no8 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:01: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 E6099120768 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 11:01:07 -0700 (PDT)
Date: Tue, 23 Jul 2019 11:01:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563904866; bh=Z3AcZ5q/BTidn5L2wqxELRj11m9/hHSC5y8+gsn7utQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vPBvj4Dom9cIf45VKGSTFmWYCpcuVPtqdT/MTJkqM2M1GZm6P384gQKs/9XUTHyIH CMUcf+UJeeoLm2CJqV4Xun2lyg8gTYSyl0gB8795jjXXRxkyZS4BWI4F0W/3BiFgNg TjDxX4ncMyks1ZYDFV2Q8S9DfkXBuLFaJGr9Mj54=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZSMK5RGB4CV75KTYV3IR66FEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/265581028@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d374b62de3f1_5f813f99222cd96823957f"; 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/dED8yY1ho2UsJWU3rlbqomYZ9Ko>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 18:01:23 -0000

----==_mimepart_5d374b62de3f1_5f813f99222cd96823957f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> -connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID can be used when a connection ID is not needed
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length
+connection ID unless it can use only its IP address and port to identify a
+connection. The IP address and port used by a peer cannot be used for routing
+or connection identification as these values can change during a connection's
+lifetime, and the peer can reuse a given address and port for additional
+connections. Similarly, the peer's connection IDs cannot be used for routing
+or identification, as they are not transmitted in the short header packets
+they send. Note that multiplexing while using zero-length connection IDs and
+relying on the four-tuple of IP addresses and ports for routing will cause
+failures in the presence of connection migration, NAT rebinding, and client
+port reuse; and therefore MUST NOT be done unless an endpoint is certain that
+those protocol features are not in use.

I think that becomes harder to read, but I think that's editorial so I'll let the editors decide how best to write this if we have consensus on the concept

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2851#discussion_r306455993
----==_mimepart_5d374b62de3f1_5f813f99222cd96823957f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r306455993">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID can be used when a connection ID is not needed
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length
+connection ID unless it can use only its IP address and port to identify a
+connection. The IP address and port used by a peer cannot be used for routing
+or connection identification as these values can change during a connection&#39;s
+lifetime, and the peer can reuse a given address and port for additional
+connections. Similarly, the peer&#39;s connection IDs cannot be used for routing
+or identification, as they are not transmitted in the short header packets
+they send. Note that multiplexing while using zero-length connection IDs and
+relying on the four-tuple of IP addresses and ports for routing will cause
+failures in the presence of connection migration, NAT rebinding, and client
+port reuse; and therefore MUST NOT be done unless an endpoint is certain that
+those protocol features are not in use.
</pre>
<p>I think that becomes harder to read, but I think that's editorial so I'll let the editors decide how best to write this if we have consensus on the concept</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications&amp;email_token=AFTOJK553KCZTAKCJQKO6VDQA5BOFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KHDZA#discussion_r306455993">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6RVZSIMTIDAX2M5VTQA5BOFANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK73AM2OEKZEPAWSF2TQA5BOFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KHDZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK553KCZTAKCJQKO6VDQA5BOFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KHDZA#discussion_r306455993",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK553KCZTAKCJQKO6VDQA5BOFA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KHDZA#discussion_r306455993",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d374b62de3f1_5f813f99222cd96823957f--


From nobody Tue Jul 23 11:17:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7EE311207C7 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:16:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id B1w3mHMmnVaW for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:16: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 B77D11207C1 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 11:16:51 -0700 (PDT)
Date: Tue, 23 Jul 2019 11:16:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563905810; bh=56R39UfM2posxP9QQYh1IO4OGpPYh3iJTvHOM3rcng0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yiuKq/pUFaeXFj71QXTfPIOiAZsElmxpaXbObCENBPG/knh38xrGZsDiYDEOKSDTc t3oWaD3atLwO583kRXtvSLVdKijeivXU1kriIbfpRIJW1obtY+T9c2q8MU/U7n+1vI 5QwhkupR9htkdfuyXnKQzcjULooRh25kk7NYf+I0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ACAP77K7V3FQG4UN3ISAZFEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514324472@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d374f12c7b3f_72733f9bc9ecd96c924f3"; 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/Z5JAUx5QUKDh1B01e_iGMdU8r9E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 18:17:02 -0000

----==_mimepart_5d374f12c7b3f_72733f9bc9ecd96c924f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This seems like a reasonable change to me.

I don't anticipate this creating any new issues with recovery/etc, though it might exacerbate some of the existing ones.

-- 
You are receiving 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/2928#issuecomment-514324472
----==_mimepart_5d374f12c7b3f_72733f9bc9ecd96c924f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This seems like a reasonable change to me.</p>
<p>I don't anticipate this creating any new issues with recovery/etc, though it might exacerbate some of the existing ones.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2928?email_source=notifications&amp;email_token=AFTOJKYVRTVBXHPJKIKSPHDQA5DJFA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T7P6A#issuecomment-514324472">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ACZ2BZ7JEMTJ6G33QA5DJFANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZUMCKB2BXQD2QNA2LQA5DJFA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T7P6A.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJKYVRTVBXHPJKIKSPHDQA5DJFA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T7P6A#issuecomment-514324472",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJKYVRTVBXHPJKIKSPHDQA5DJFA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2T7P6A#issuecomment-514324472",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d374f12c7b3f_72733f9bc9ecd96c924f3--


From nobody Tue Jul 23 11:32:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 53E88120823 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:31:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hllirnDPuWis for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:31: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 0A87C120810 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 11:31:52 -0700 (PDT)
Date: Tue, 23 Jul 2019 11:31:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563906711; bh=/B41Qyr9HdE4YywU6WXLAsWROfgSDBlRYVtLvo+sBhQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hBwb5xWN6AuMKD1dA2N+MV//+DK6Qq8Pf1GYsC8CJLhgv4HtXc6z2zW1o8K6VATt9 woOOzNyBd68WNo9VPpSiN/p89kbQUatbdB83X5dftBCJ1kvBdyzT/9ooML4MRs9RXA Wz0PgCD9D3AFFM84NFMd10RC/jL/kZM05duufskg=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MXIIPT3YUE7YJC7F3ISCRPEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514329903@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37529749490_27533fcc794cd9682703f7"; 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/CydGsjH2soZRpbecG4NWb1mPg8o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 18:32:04 -0000

----==_mimepart_5d37529749490_27533fcc794cd9682703f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I believe a main motivation for a single packet is that it avoids binding a lot of state on the server which can be a significant DoS vector. If anything we can expect certificates to get smaller with more widespread use of EC25519. As to post quantum, lets make another QUIC version in about 30-60 years or 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/2928#issuecomment-514329903
----==_mimepart_5d37529749490_27533fcc794cd9682703f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I believe a main motivation for a single packet is that it avoids binding a lot of state on the server which can be a significant DoS vector. If anything we can expect certificates to get smaller with more widespread use of EC25519. As to post quantum, lets make another QUIC version in about 30-60 years or 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/2928?email_source=notifications&amp;email_token=AFTOJK2OMIF6ZP6LS4T27SLQA5FBPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UA2LY#issuecomment-514329903">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7RLQPUZYOXQPNVSZLQA5FBPANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7VZ5274G2OP2Z3IGTQA5FBPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UA2LY.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJK2OMIF6ZP6LS4T27SLQA5FBPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UA2LY#issuecomment-514329903",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJK2OMIF6ZP6LS4T27SLQA5FBPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UA2LY#issuecomment-514329903",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37529749490_27533fcc794cd9682703f7--


From nobody Tue Jul 23 11:42:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6C6E3120818 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:42:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.899
X-Spam-Level: 
X-Spam-Status: No, score=-7.899 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eMg7_MwbUtpS for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:42: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 4394A120836 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 11:42:04 -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 42C20961805 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 11:42:03 -0700 (PDT)
Date: Tue, 23 Jul 2019 11:42:03 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64DBZV25FSFKMKPDF3ISDXXEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514333564@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3754fb3367b_7e483f91456cd96c479143"; 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/qWq7C46c7pjIHKcIclDCunZCYFk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 18:42:16 -0000

----==_mimepart_5d3754fb3367b_7e483f91456cd96c479143
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

As @mikkelfj says, I believe there was a concern about state at the serve=
r=0D
for connections that have not yet been established, if it receives only=0D=

part of a ClientHello. I don't think this is a debilitating concern=0D
however. I would like to air this for a little while though ... I remembe=
r=0D
us using the assumption that the ClientHello is a single packet a few=0D
times, and I'm not sure if we did document them all.=0D
=0D
On Tue, Jul 23, 2019 at 2:31 PM MikkelFJ <notifications@github.com> wrote=
:=0D
=0D
> I believe a main motivation for a single packet is that it avoids bindi=
ng=0D
> a lot of state on the server which can be a significant DoS vector. If=0D=

> anything we can expect certificates to get smaller with more widespread=
 use=0D
> of EC25519. As to post quantum, lets make another QUIC version in about=
=0D
> 30-60 years or so.=0D
>=0D
> =E2=80=94=0D
> You are receiving this because you are subscribed to this thread.=0D
> Reply to this email directly, view it on GitHub=0D
> <https://github.com/quicwg/base-drafts/issues/2928?email_source=3Dnotif=
ications&email_token=3DACUOBVEOGE7FJPC4OYE3WHTQA5FBLA5CNFSM4IGHDJG2YY3PNV=
WWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UA2LY#issuecommen=
t-514329903>,=0D
> or mute the thread=0D
> <https://github.com/notifications/unsubscribe-auth/ACUOBVGYEWRBGZ65Y5RW=
AIDQA5FBLANCNFSM4IGHDJGQ>=0D
> .=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/2928#issuecomment-514333564=

----==_mimepart_5d3754fb3367b_7e483f91456cd96c479143
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

As @mikkelfj says, I believe there was a concern about state at the serve=
r<br>=0D
for connections that have not yet been established, if it receives only<b=
r>=0D
part of a ClientHello. I don&#39;t think this is a debilitating concern<b=
r>=0D
however. I would like to air this for a little while though ... I remembe=
r<br>=0D
us using the assumption that the ClientHello is a single packet a few<br>=
=0D
times, and I&#39;m not sure if we did document them all.<br>=0D
<br>=0D
On Tue, Jul 23, 2019 at 2:31 PM MikkelFJ &lt;notifications@github.com&gt;=
 wrote:<br>=0D
<br>=0D
&gt; I believe a main motivation for a single packet is that it avoids bi=
nding<br>=0D
&gt; a lot of state on the server which can be a significant DoS vector. =
If<br>=0D
&gt; anything we can expect certificates to get smaller with more widespr=
ead use<br>=0D
&gt; of EC25519. As to post quantum, lets make another QUIC version in ab=
out<br>=0D
&gt; 30-60 years or so.<br>=0D
&gt;<br>=0D
&gt; =E2=80=94<br>=0D
&gt; You are receiving this because you are subscribed to this thread.<br=
>=0D
&gt; Reply to this email directly, view it on GitHub<br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/issues/2928?email_source=3D=
notifications&amp;email_token=3DACUOBVEOGE7FJPC4OYE3WHTQA5FBLA5CNFSM4IGHD=
JG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UA2LY#is=
suecomment-514329903&gt;,<br>=0D
&gt; or mute the thread<br>=0D
&gt; &lt;https://github.com/notifications/unsubscribe-auth/ACUOBVGYEWRBGZ=
65Y5RWAIDQA5FBLANCNFSM4IGHDJGQ&gt;<br>=0D
&gt; .<br>=0D
&gt;<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/2928?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK3CXRG4CQ5WEGRN5V3QA5GHXA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UBW7A#issuecomment-514333564">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK2ZI4UB5N3LXGIO2LLQA5GHXANCNFSM4IGHDJGQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK5YI7SAJSKVMO6E46TQ=
A5GHXA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2UBW7A.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/issues/2928?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK3CXRG4CQ5WEGRN5V3QA5GHXA5CNFSM4=
IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UBW7=
A#issuecomment-514333564",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=3D=
notifications\u0026email_token=3DAFTOJK3CXRG4CQ5WEGRN5V3QA5GHXA5CNFSM4IGH=
DJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UBW7A#i=
ssuecomment-514333564",=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_5d3754fb3367b_7e483f91456cd96c479143--


From nobody Tue Jul 23 11:49:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0AA3312087F for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:49:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Xmp8u4EyOPWb for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:49:31 -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 77329120845 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 11:49:31 -0700 (PDT)
Date: Tue, 23 Jul 2019 11:49:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563907770; bh=GxMKKRUBTs8dWpCrO0ny3TI76HYr+BhAjrUVQ6WitJ0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Or+cQkEzpie1ps0oAcQu9jkNvJ6pIdUd4s7D6fJGaHsrRpwo162GNOIzg8scz8353 LXQKla6hPL+9KrL4pAYsBWq/E2VjuCSoYebJmswR48g7Tmw8iryxFNcp1XGuLHxNgu PJeKulm1KPYLK8XWp45Fk2+76ae/wgP+WNmCvYk0=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BIRSTZQEQLBMUF3N3ISETVEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514336181@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3756ba654b2_17a3fb34d6cd9601878cb"; 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/xfBio7mx_TLrGdluDOwWf5e57x0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 18:49:35 -0000

----==_mimepart_5d3756ba654b2_17a3fb34d6cd9601878cb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I am mainly worried about the impact on more advanced recent and proposed features, such as preload/prefetch, async/defer and priority hints. These features were explicitly added to improve (load) performance and they are difficult to adhere to without client-side scheduling. I predict that removing prioritization from H3 without a fallback will lead to performance-minded people having to provide 2 different versions of their sites, 1 for H2 and 1 for H3. For example, the H2 version can have async/defer/preloads mentioned in the head of the HTML, the H3 version without priorities probably shouldn't.

I agree with concern but not the predicted outcome. Given the number of problem H2 prioritization implementations, and the relative slugisshness in them getting fixed, we have not seen a proliferation of workaround versions of websites that solve these problems.

Order of request is a signal and in an ideal world this helps build a suitable response output queue from a server. But to backtrack a little, it is *hard* to instruct the UA , via HTML, to do this correctly.  Element decorations like preload/prefetch act as convenient runaround method, which helps to avoid requiring restructuring of HTML, by giving a supplementary signal to the server. I agree that such signals are desirable for actual applications and what I'd like to achiieve is a common form of this signal[1]. However, I don't have knowledge of the proportion of sites that are actively impacted by poor structuring.  We can't fix all problems for all people, the failure of H2's flexible toolkit demonstrates that. Therefore, as a group it might help to come to an agreement on what parity and equivalent performance actually looks like.

[1] footnote: on the server-side we base some prioritisation decision on our understanding of how the in-flight prioritisation tree is representing the UAs intent. This is a fragile approach for many reasons. Further, we don't yet know how H3 trees would look exactly, and so there is opportunity for error that affect the performance. Hoping that we'll fluke things and get stuff "just right" is an unfortunate position to be in. So I support simple or minimal signals - including some above the inherent request ordering I mentioned in my first comment.

-- 
You are receiving 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/2924#issuecomment-514336181
----==_mimepart_5d3756ba654b2_17a3fb34d6cd9601878cb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I am mainly worried about the impact on more advanced recent and proposed features, such as preload/prefetch, async/defer and priority hints. These features were explicitly added to improve (load) performance and they are difficult to adhere to without client-side scheduling. I predict that removing prioritization from H3 without a fallback will lead to performance-minded people having to provide 2 different versions of their sites, 1 for H2 and 1 for H3. For example, the H2 version can have async/defer/preloads mentioned in the head of the HTML, the H3 version without priorities probably shouldn't.</p>
</blockquote>
<p>I agree with concern but not the predicted outcome. Given the number of problem H2 prioritization implementations, and the relative slugisshness in them getting fixed, we have not seen a proliferation of workaround versions of websites that solve these problems.</p>
<p>Order of request is a signal and in an ideal world this helps build a suitable response output queue from a server. But to backtrack a little, it is <em>hard</em> to instruct the UA , via HTML, to do this correctly.  Element decorations like preload/prefetch act as convenient runaround method, which helps to avoid requiring restructuring of HTML, by giving a supplementary signal to the server. I agree that such signals are desirable for actual applications and what I'd like to achiieve is a common form of this signal[1]. However, I don't have knowledge of the proportion of sites that are actively impacted by poor structuring.  We can't fix all problems for all people, the failure of H2's flexible toolkit demonstrates that. Therefore, as a group it might help to come to an agreement on what parity and equivalent performance actually looks like.</p>
<p>[1] footnote: on the server-side we base some prioritisation decision on our understanding of how the in-flight prioritisation tree is representing the UAs intent. This is a fragile approach for many reasons. Further, we don't yet know how H3 trees would look exactly, and so there is opportunity for error that affect the performance. Hoping that we'll fluke things and get stuff "just right" is an unfortunate position to be in. So I support simple or minimal signals - including some above the inherent request ordering I mentioned in my first comment.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2924?email_source=notifications&amp;email_token=AFTOJK42QDTZ7BHVQPGWLX3QA5HDVA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCLNI#issuecomment-514336181">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OR2ELQJHDPHZGWZTQA5HDVANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ7AYSNSB5YWMOIKC3QA5HDVA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCLNI.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK42QDTZ7BHVQPGWLX3QA5HDVA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCLNI#issuecomment-514336181",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK42QDTZ7BHVQPGWLX3QA5HDVA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCLNI#issuecomment-514336181",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3756ba654b2_17a3fb34d6cd9601878cb--


From nobody Tue Jul 23 11:51:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 146A5120874 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:50:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TpN7AwBKuZPd for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 11:50: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 2D4FB120878 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 11:50:57 -0700 (PDT)
Date: Tue, 23 Jul 2019 11:50:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563907856; bh=quY2jFIvxyFlmHQmJA0s721zNHZzXVC9S4f9Sn0Fr9o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jlz5UqTvRQ7B9oyhXGbbPxjX73R54EtagTkW0kyRD4rhmzmTgDWhK2B/OgWSHy+kr Xr2yNvL1/JmfySrGoIBKfpA8G8FJ5a00ebeiLSeX3qkKJwCn4+1Y/Vb2+x8XEUF5c0 gq7n1z9GlYHpq27sMGr/i+K08/aSUFAHUwynEvhk=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2VA4ENR53KUYRVX553ISEZBEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514336702@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3757103ccaf_1b5d3fc7256cd9604921b"; 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/0VNitclc4lXiE8108vKSJohAtEo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 18:51:07 -0000

----==_mimepart_5d3757103ccaf_1b5d3fc7256cd9604921b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree we should not hurry on this.  From a text perspective, it's a simple change.  I'd like the chairs(@larseggert @mnot ) to briefly bring this up at the next QUIC session to ensure we can be aware of any potential pitfalls before making 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/issues/2928#issuecomment-514336702
----==_mimepart_5d3757103ccaf_1b5d3fc7256cd9604921b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree we should not hurry on this.  From a text perspective, it's a simple change.  I'd like the chairs(<a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=200328" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/larseggert">@larseggert</a> <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=74384" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mnot">@mnot</a> ) to briefly bring this up at the next QUIC session to ensure we can be aware of any potential pitfalls before making 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/issues/2928?email_source=notifications&amp;email_token=AFTOJK27WXAH6X4DS755FL3QA5HJBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCPPQ#issuecomment-514336702">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24BMSXN4QDTLCSOWLQA5HJBANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JIFKIEIS2V5WVNCDQA5HJBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCPPQ.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJK27WXAH6X4DS755FL3QA5HJBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCPPQ#issuecomment-514336702",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJK27WXAH6X4DS755FL3QA5HJBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UCPPQ#issuecomment-514336702",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3757103ccaf_1b5d3fc7256cd9604921b--


From nobody Tue Jul 23 12:42:18 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3E1831208E4 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 12:42:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, 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 wThpqo5XeQHZ for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 12:42: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 504671208DC for <quic-issues@ietf.org>; Tue, 23 Jul 2019 12:42:15 -0700 (PDT)
Date: Tue, 23 Jul 2019 12:42:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563910934; bh=RqxH7hXD18BEZjomkZKrEXHVv7+5J+cD+eyfdNvThEI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mr5/JBsFEXJRAln15SIm1pxnL+JhwW0lYW3NxnPHP1TTFLPvussfhEHnY4/mUmrDB RNZx4AijHz1p1o0LFK6YJC3YXaXLL47tqIRe9Go4LEmiDV++MUn3qcxjKQ1dhSwmzo VO1q6zH4JeYQb4iAmVUC/QpMVYbYt4ZUeQiNtfTU=
From: David Benjamin <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK43HM3EDJZ6LLE6KHV3ISKZNEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514354972@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37631661166_6393f9246ecd96c298325"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: davidben
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FMZAGJ3XOkEiQirnDDF6kHWfbNM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 19:42:17 -0000

----==_mimepart_5d37631661166_6393f9246ecd96c298325
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I believe there was a concern about state at the server for connections that have not yet been established, if it receives only part of a ClientHello

Could you elaborate on this? There are other client messages than the initial ClientHello, which would all require state at the server for unestablished connections. There is certainly a need to statelessly do _something_ with unestablished connections, but there's a point where the server transitions to being stateful.

In the old TLS/QUIC embedding, yes, that point was at the first ClientHello and you needed the entire ClientHello to produce a HelloRetryRequest+cookie, which was the mechanism for statelessly bouncing a connection. That's no longer the case in the new embedding, as far as I can tell. The retry packets don't actually depend on the full ClientHello or interact with the TLS handshake at all. It should work equally well if that initial packet has a full ClientHello or half of one.

> As to post quantum, lets make another QUIC version in about 30-60 years or so.

This time estimate is not consistent with what people are already doing in this space.
https://www.imperialviolet.org/2018/12/12/cecpq2.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/2928#issuecomment-514354972
----==_mimepart_5d37631661166_6393f9246ecd96c298325
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I believe there was a concern about state at the server for connections that have not yet been established, if it receives only part of a ClientHello</p>
</blockquote>
<p>Could you elaborate on this? There are other client messages than the initial ClientHello, which would all require state at the server for unestablished connections. There is certainly a need to statelessly do <em>something</em> with unestablished connections, but there's a point where the server transitions to being stateful.</p>
<p>In the old TLS/QUIC embedding, yes, that point was at the first ClientHello and you needed the entire ClientHello to produce a HelloRetryRequest+cookie, which was the mechanism for statelessly bouncing a connection. That's no longer the case in the new embedding, as far as I can tell. The retry packets don't actually depend on the full ClientHello or interact with the TLS handshake at all. It should work equally well if that initial packet has a full ClientHello or half of one.</p>
<blockquote>
<p>As to post quantum, lets make another QUIC version in about 30-60 years or so.</p>
</blockquote>
<p>This time estimate is not consistent with what people are already doing in this space.<br>
<a href="https://www.imperialviolet.org/2018/12/12/cecpq2.html" rel="nofollow">https://www.imperialviolet.org/2018/12/12/cecpq2.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/2928?email_source=notifications&amp;email_token=AFTOJK22ME6T6E2HXA7UWNTQA5NJNA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UG6HA#issuecomment-514354972">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5WZVJUVQ6VNKLBMNDQA5NJNANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Q76SJ72O26GRVF3TQA5NJNA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UG6HA.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJK22ME6T6E2HXA7UWNTQA5NJNA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UG6HA#issuecomment-514354972",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJK22ME6T6E2HXA7UWNTQA5NJNA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UG6HA#issuecomment-514354972",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37631661166_6393f9246ecd96c298325--


From nobody Tue Jul 23 13:03:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 29EB81203C2 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:03:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EYVoUNURf2Ve for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:03:47 -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 261E112036D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 13:03:47 -0700 (PDT)
Date: Tue, 23 Jul 2019 13:03:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563912226; bh=RXykwHi0oTooQ6fWRbVGcJnQ0P9gzw2E2BYKoP9ZDcs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p9pMPjJFreaEHKd9+ZU4rRl2mPYxtgqDQBopja0iX4Ow2ZfsR8SnzufUZ0YQSeS19 WPd9l9LRf/Q/at2qH+mFmv4QN/sdDtJfoFOWsF7OV/G6PgfNxt3JKM+7wwuYupYwzL F59c+Tpl5mLsCtVrCmEr4hZbkzXtYpQInnkQq+u0=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPLGQBZCAMSD2YUY53ISNKFEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/265644909@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37682254aa9_51893fbf104cd95c577677"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/T1I0M2SxDwiW-cK6fSsrRbKonHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 20:03:49 -0000

----==_mimepart_5d37682254aa9_51893fbf104cd95c577677
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

igorlord commented on this pull request.



> -connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID can be used when a connection ID is not needed
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length
+connection ID unless it can use only its IP address and port to identify a
+connection. The IP address and port used by a peer cannot be used for routing
+or connection identification as these values can change during a connection's
+lifetime, and the peer can reuse a given address and port for additional
+connections. Similarly, the peer's connection IDs cannot be used for routing
+or identification, as they are not transmitted in the short header packets
+they send. Note that multiplexing while using zero-length connection IDs and
+relying on the four-tuple of IP addresses and ports for routing will cause
+failures in the presence of connection migration, NAT rebinding, and client
+port reuse; and therefore MUST NOT be done unless an endpoint is certain that
+those protocol features are not in use.

Yes, editorial, but what about just this -- it captures to normative meaning without being redundant with other parts of the spec.

_A zero-length connection ID can be used when a connection ID is not needed to route to the correct endpoint. Since relying on the IP address and port of the peer for routing or connection identification will cause failures in the presence of connection migration, NAT rebinding, and client port reuse for multiple connections, an endpoint MUST NOT do so unless it is certain that those protocol features are not used by the peer._

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2851#discussion_r306507445
----==_mimepart_5d37682254aa9_51893fbf104cd95c577677
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@igorlord</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r306507445">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID can be used when a connection ID is not needed
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length
+connection ID unless it can use only its IP address and port to identify a
+connection. The IP address and port used by a peer cannot be used for routing
+or connection identification as these values can change during a connection&#39;s
+lifetime, and the peer can reuse a given address and port for additional
+connections. Similarly, the peer&#39;s connection IDs cannot be used for routing
+or identification, as they are not transmitted in the short header packets
+they send. Note that multiplexing while using zero-length connection IDs and
+relying on the four-tuple of IP addresses and ports for routing will cause
+failures in the presence of connection migration, NAT rebinding, and client
+port reuse; and therefore MUST NOT be done unless an endpoint is certain that
+those protocol features are not in use.
</pre>
<p>Yes, editorial, but what about just this -- it captures to normative meaning without being redundant with other parts of the spec.</p>
<p><em>A zero-length connection ID can be used when a connection ID is not needed to route to the correct endpoint. Since relying on the IP address and port of the peer for routing or connection identification will cause failures in the presence of connection migration, NAT rebinding, and client port reuse for multiple connections, an endpoint MUST NOT do so unless it is certain that those protocol features are not used by the peer.</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/2851?email_source=notifications&amp;email_token=AFTOJK2JCQTPPKEWST44UVTQA5P2FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KWW3I#discussion_r306507445">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SCCCU2K7MY6D6DR3QA5P2FANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK33ILSHL76LDMSS7WLQA5P2FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KWW3I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK2JCQTPPKEWST44UVTQA5P2FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KWW3I#discussion_r306507445",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK2JCQTPPKEWST44UVTQA5P2FA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KWW3I#discussion_r306507445",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37682254aa9_51893fbf104cd95c577677--


From nobody Tue Jul 23 13:08:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6D6F312036D for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:08:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yWs6tihpWTFh for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:08:25 -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 6A004120352 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 13:08:25 -0700 (PDT)
Date: Tue, 23 Jul 2019 13:08:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563912504; bh=mTRVNcnqQqi1949nz7NKuS2PsWmos5AnJ+zvO3SOpcU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=abooSj7lNZP6jcWZzTSXinTbeqs1QJd0leL1yrPZkSwM2XSOuKetCBihSmJxJzlsx q4Ln+BIbblJD1mBAoOcZk8eVyLvYJuhskML1d76fPMdKx5URmPN1GxDe/Rx7t6lNtT 0YzNWUgZQYnpgSzv8BLBM+2FGEY0eqk/zCKTnn3Q=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK53URXGSTFXRO2G7UF3ISN3REVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514364306@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37693871489_60073fac9e4cd968842186"; 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/8GHh-5wXauyOuMoy7btE3BHLQnw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 20:08:28 -0000

----==_mimepart_5d37693871489_60073fac9e4cd968842186
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm not sufficiently deep into the handshake to detail this - but you are correct that there is less dependency on the TLS engine than what went before. I'm not sure when ClientCerts land in this process - I know they can't always fit in one piece but all else being equal, it simplifies bad content defence a lot to have a consistent starting point.

-- 
You are receiving 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/2928#issuecomment-514364306
----==_mimepart_5d37693871489_60073fac9e4cd968842186
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm not sufficiently deep into the handshake to detail this - but you are correct that there is less dependency on the TLS engine than what went before. I'm not sure when ClientCerts land in this process - I know they can't always fit in one piece but all else being equal, it simplifies bad content defence a lot to have a consistent starting point.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2928?email_source=notifications&amp;email_token=AFTOJKYPVHIEMSVIZ2RE2RTQA5QLRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJHEQ#issuecomment-514364306">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5HTVNVRSGE2VNJI4DQA5QLRANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SASRH5BUYOFH6QTLQA5QLRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJHEQ.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJKYPVHIEMSVIZ2RE2RTQA5QLRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJHEQ#issuecomment-514364306",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJKYPVHIEMSVIZ2RE2RTQA5QLRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJHEQ#issuecomment-514364306",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37693871489_60073fac9e4cd968842186--


From nobody Tue Jul 23 13:15:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B2900120932 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:15:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bTH6H9Sff9aA for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:15: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 37B8712036D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 13:15:07 -0700 (PDT)
Date: Tue, 23 Jul 2019 13:15:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563912906; bh=RBLngm6+ksSzP6lRFbU9teau0uhnmAwo4KgRmmaHGVw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2UG7u8+6hn9V0MGDonkSvcjulUZfqxDpaFEC/8pJx4LyY9ZPjlZwwKI4PbBEqWCQ3 WwcrGzX+ST1F90pCtU1M0hqcQFo5HuWVubYYS4A2dMAmtozOkVBgDulORxBBQaZxae o0L5BX5LdnpQvELSMjlWYsUYCzcnm02L89MPBvJ8=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XURAYX6GGCSLTK2F3ISOUVEVBNHHBOCBKPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2084/514366581@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2084@github.com>
References: <quicwg/base-drafts/issues/2084@github.com>
Subject: Re: [quicwg/base-drafts] Discuss requirement that connection IDs not be correlatable (#2084)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d376aca45a09_b0a3fe115acd95c91606e"; 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/625Cyb3CS3G_S2i9bEnBi7qKNOY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 20:15:18 -0000

----==_mimepart_5d376aca45a09_b0a3fe115acd95c91606e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I believe this is an editorial issue, not design. We all know what we mean: it can encode information by use for itself and trusted intermediaries, but definitely is not correlatable. I agree that MUST is a little tricky unless we are mandating either true encryption or true randomness, which is a discussion I was hoping to defer until QUIC-LB is adopted.

-- 
You are receiving 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/2084#issuecomment-514366581
----==_mimepart_5d376aca45a09_b0a3fe115acd95c91606e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I believe this is an editorial issue, not design. We all know what we mean: it can encode information by use for itself and trusted intermediaries, but definitely is not correlatable. I agree that MUST is a little tricky unless we are mandating either true encryption or true randomness, which is a discussion I was hoping to defer until QUIC-LB is adopted.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2084?email_source=notifications&amp;email_token=AFTOJK2WFTUKMMR3ZAF2WHTQA5REVA5CNFSM4GHSUSKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJY5I#issuecomment-514366581">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XUMPQSH74DV4VJW3QA5REVANCNFSM4GHSUSKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3Q3UIMJBTSZDUPTWDQA5REVA5CNFSM4GHSUSKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJY5I.gif" height="1" width="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/2084?email_source=notifications\u0026email_token=AFTOJK2WFTUKMMR3ZAF2WHTQA5REVA5CNFSM4GHSUSKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJY5I#issuecomment-514366581",
"url": "https://github.com/quicwg/base-drafts/issues/2084?email_source=notifications\u0026email_token=AFTOJK2WFTUKMMR3ZAF2WHTQA5REVA5CNFSM4GHSUSKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UJY5I#issuecomment-514366581",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d376aca45a09_b0a3fe115acd95c91606e--


From nobody Tue Jul 23 13:21:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 997BB120910 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:21:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bktQd0PYgg9d for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 13:21: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 DD15F120352 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 13:21:33 -0700 (PDT)
Date: Tue, 23 Jul 2019 13:21:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563913292; bh=OEPAOpGoEMKvpKqEhOnF6HM41+VY13sVgLDi2+qL2BQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qAraRLqDrjPMo7PHVqe+rZ2hm3y4AbW97ni2GOGZLxdvmxYV915E5ZX1zq9Oj9r6h kGh+2gnfodK7Qli6Eyl14Bo7rb7kaGuORU+/pSJcFiUDv2CnWNSNXH/vMTm8UDqd0B QxQOaCI/LwlNsuVH10EaEANdwFO4Z+0TET1UC7J0=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZJCJDM3P33NJY2ZK53ISPMZEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514368733@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d376c4cba2c3_46fc3ff9630cd964826639"; 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/HCJgjLqOu5nrT27BCoL-Nd8gkh8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 20:21:36 -0000

----==_mimepart_5d376c4cba2c3_46fc3ff9630cd964826639
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If we did allow for multiple packets for the ClientHello, I'd still want to retain the ability to decide whether or not to accept the incoming connection from every one of those initial packets. This would mean things like ALPN and SNI would need to be duplicated in each packet. I wouldn't want to accept a design where an attacker forces the server to buffer packets while it wait for the necessary information just to decided if it can accept the connection. IMO, this sounds like a v2 feature. Does this prevent us from shipping v1?

-- 
You are receiving 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/2928#issuecomment-514368733
----==_mimepart_5d376c4cba2c3_46fc3ff9630cd964826639
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If we did allow for multiple packets for the ClientHello, I'd still want to retain the ability to decide whether or not to accept the incoming connection from every one of those initial packets. This would mean things like ALPN and SNI would need to be duplicated in each packet. I wouldn't want to accept a design where an attacker forces the server to buffer packets while it wait for the necessary information just to decided if it can accept the connection. IMO, this sounds like a v2 feature. Does this prevent us from shipping v1?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2928?email_source=notifications&amp;email_token=AFTOJK6BNA5MGN7OAL3KSD3QA5R4ZA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UKJXI#issuecomment-514368733">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56HYSARBFEPOSKIA3QA5R4ZANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5M5BI6MXEYXBYBN4LQA5R4ZA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UKJXI.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJK6BNA5MGN7OAL3KSD3QA5R4ZA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UKJXI#issuecomment-514368733",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJK6BNA5MGN7OAL3KSD3QA5R4ZA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UKJXI#issuecomment-514368733",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d376c4cba2c3_46fc3ff9630cd964826639--


From nobody Tue Jul 23 14:15:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D4931120995 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 14:15:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gqjLiT1CM9ts for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 14:15: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 6EDFC1209B8 for <quic-issues@ietf.org>; Tue, 23 Jul 2019 14:15:21 -0700 (PDT)
Date: Tue, 23 Jul 2019 14:15:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563916520; bh=M8iFs2UzGJxVZ88Q+dI7zdiIGzq9f9LTCSOxPx/rKNU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1ZK4Cw2cSf/pfzaDj+VvGQPbVPN0tWmA3N1NbUaozA3Jl2VvoJNiGtE6qgQt/lsFa +NcXQh0zIOmGO1XcoIfKvgc9FnFfC+tFXAKmFx2UNL5s/u+SPpfMl4LIwW8FYyugN+ CmK6cTXT3DvjlRa1UrTPsSlXj301hYQj8ARXkwTo=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7EWBC2HTDLJRRPKHV3ISVWREVBNHHBWZGHNE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2834/514386591@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2834@github.com>
References: <quicwg/base-drafts/issues/2834@github.com>
Subject: Re: [quicwg/base-drafts] Long Header Packets and Routing Connection IDs (#2834)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3778e85b641_4bdd3fa5cf2cd96821838"; 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/sknpYkxXI62IBT68ylesutKqyi4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 23 Jul 2019 21:15:32 -0000

----==_mimepart_5d3778e85b641_4bdd3fa5cf2cd96821838
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks and I discussed in Montreal and agreed that we could handle this in QUIC-LB under the issue he filed there: https://github.com/martinduke/draft-duke-quic-load-balancers/issues/43

-- 
You are receiving 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/2834#issuecomment-514386591
----==_mimepart_5d3778e85b641_4bdd3fa5cf2cd96821838
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=20663557" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nibanks">@nibanks</a> and I discussed in Montreal and agreed that we could handle this in QUIC-LB under the issue he filed there: <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="459197183" data-permission-text="Issue title is private" data-url="https://github.com/martinduke/draft-duke-quic-load-balancers/issues/43" data-hovercard-type="issue" data-hovercard-url="/martinduke/draft-duke-quic-load-balancers/issues/43/hovercard" href="https://github.com/martinduke/draft-duke-quic-load-balancers/issues/43">martinduke/draft-duke-quic-load-balancers#43</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/2834?email_source=notifications&amp;email_token=AFTOJK2ZX5R4JSMOAS44MMLQA5YGRA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UOVHY#issuecomment-514386591">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7C42WFFYL24GROA43QA5YGRANCNFSM4H2ZGBSQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6LQAPVJYGQVM3A4N3QA5YGRA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UOVHY.gif" height="1" width="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/2834?email_source=notifications\u0026email_token=AFTOJK2ZX5R4JSMOAS44MMLQA5YGRA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UOVHY#issuecomment-514386591",
"url": "https://github.com/quicwg/base-drafts/issues/2834?email_source=notifications\u0026email_token=AFTOJK2ZX5R4JSMOAS44MMLQA5YGRA5CNFSM4H2ZGBS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UOVHY#issuecomment-514386591",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3778e85b641_4bdd3fa5cf2cd96821838--


From nobody Tue Jul 23 17:17:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E72B71209AB for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 17:17:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8K90qVciNjgL for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 17:17: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 8951812098D for <quic-issues@ietf.org>; Tue, 23 Jul 2019 17:17:04 -0700 (PDT)
Date: Tue, 23 Jul 2019 17:17:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563927423; bh=H+MQNt4qPQGmm5dn1tHbJfz8ICVrfuHWqUF+tsHySnE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PAMRwNOW6NTmvX8kqQdh5Dmx/l0QtgRR9QOh8PRdtkbBKyDRrDfjT060ZaU+LTDps T4HdI1qU2+20UuD3uVi2xBVNTmZhvOlQv817cW+pRaBLyYeZCmVzIH9TvDAJXSXEc4 U4V4tqxSUXwL00wnrN1YbDzBNHz7o68wILjRc3K0=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7EL7F4SWLSMKGNIGF3ITK77EVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514429604@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37a37f7299b_92a3fd2ef2cd95c3224d7"; 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/dxlbbNMlCzqYazLFSAHKs6Yis7c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 00:17:06 -0000

----==_mimepart_5d37a37f7299b_92a3fd2ef2cd95c3224d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

At the risk of tying this in with other issues, there are two separate problems here.
1) Migration: if I change address, I have no means of expressing that it is the same connection. On the other hand "DISABLE_MIGRATION" promises that things will fall apart if the address changes. In that event I am not sure why we would force the server to do anything.
2) Multiplexing. I agree that this case does not work if the server has no CID. But are servers required to support the same-port case? As someone that will be stuck with a 4-tuple based infrastructure for at least another year, trying to handle multiple connections on one 4-tuple is quite laborious and I'm not likely to support it in the near term. I'd much rather spend the time fixing my internal routing rather than band-aiding this use 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/2844#issuecomment-514429604
----==_mimepart_5d37a37f7299b_92a3fd2ef2cd95c3224d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>At the risk of tying this in with other issues, there are two separate problems here.</p>
<ol>
<li>Migration: if I change address, I have no means of expressing that it is the same connection. On the other hand "DISABLE_MIGRATION" promises that things will fall apart if the address changes. In that event I am not sure why we would force the server to do anything.</li>
<li>Multiplexing. I agree that this case does not work if the server has no CID. But are servers required to support the same-port case? As someone that will be stuck with a 4-tuple based infrastructure for at least another year, trying to handle multiple connections on one 4-tuple is quite laborious and I'm not likely to support it in the near term. I'd much rather spend the time fixing my internal routing rather than band-aiding this use case.</li>
</ol>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK67KZ6VTNRQBQDCGJTQA6NP7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UZFJA#issuecomment-514429604">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4POS7H6VFNRROHNULQA6NP7ANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK64BUQCTP2LHB4TZVLQA6NP7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UZFJA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK67KZ6VTNRQBQDCGJTQA6NP7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UZFJA#issuecomment-514429604",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK67KZ6VTNRQBQDCGJTQA6NP7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2UZFJA#issuecomment-514429604",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37a37f7299b_92a3fd2ef2cd95c3224d7--


From nobody Tue Jul 23 20:36:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E52C912008F for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 20:36:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UvzWp2B0cd5x for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 20:36: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 1CEB112008A for <quic-issues@ietf.org>; Tue, 23 Jul 2019 20:36:30 -0700 (PDT)
Date: Tue, 23 Jul 2019 20:36:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563939388; bh=u6Ol/FdfkP8VhuJvgS0uBCE6xnrMddgd20w3QCUIr4A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BcFT7H62fvXRDR7xtF01EDy6kVSWEt2CFZFRNXl9doae2uq8Ug2evxzQj7nam7dLe FCoiPCbmxeYETslzUW12irYA/Li5L5tFM1jMiowRFGQUOHJgi37tP365jEvcVDT02i DbqYRc3cQBM//VSwnE/mjUzmCGnLcXc6U/pKvkYk=
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4YOTUZFKBFD3MPRPF3IUCLZEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514466198@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37d23cc4630_f283ff9632cd96c2035fe"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: RyanAtGoogle
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lPvF6C46IDLkp_bh2wMBZh5gssU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 03:36:32 -0000

----==_mimepart_5d37d23cc4630_f283ff9632cd96c2035fe
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Removing PRIORITY from the drafts while we reason about the priority scheme (if any) we want for HTTP/3 sounds good to me.

That being said, I think it's important to have some mechanism for the client to assist the server in providing resources in the best order. At the same time, it's clear that the HTTP/2 dependency tree is overly complex. As a result, something like pmeenan's scheme sounds 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/2924#issuecomment-514466198
----==_mimepart_5d37d23cc4630_f283ff9632cd96c2035fe
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Removing PRIORITY from the drafts while we reason about the priority scheme (if any) we want for HTTP/3 sounds good to me.</p>
<p>That being said, I think it's important to have some mechanism for the client to assist the server in providing resources in the best order. At the same time, it's clear that the HTTP/2 dependency tree is overly complex. As a result, something like pmeenan's scheme sounds 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/2924?email_source=notifications&amp;email_token=AFTOJKZSGH6B2XJJ5LVQ4MTQA7E3ZA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VCDFQ#issuecomment-514466198">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4N2DUT237O2UPELKTQA7E3ZANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6GEUPPWYW3II2DA7TQA7E3ZA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VCDFQ.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJKZSGH6B2XJJ5LVQ4MTQA7E3ZA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VCDFQ#issuecomment-514466198",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJKZSGH6B2XJJ5LVQ4MTQA7E3ZA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VCDFQ#issuecomment-514466198",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37d23cc4630_f283ff9632cd96c2035fe--


From nobody Tue Jul 23 23:46:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CCC361202F2 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 23:46:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZnPQHxCm8qT6 for <quic-issues@ietfa.amsl.com>; Tue, 23 Jul 2019 23:46: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 3205D1202DF for <quic-issues@ietf.org>; Tue, 23 Jul 2019 23:46:56 -0700 (PDT)
Date: Tue, 23 Jul 2019 23:46:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563950815; bh=aTaHCZ0kuDKk0yaOG78KpZNFCUgmN0OZqPW54DZ/M9E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ATJ9mul4Rn1noQD3cOAJk81SyLUgSBMjRsc5hiFk/fA+im+wBtfYHa8MWwq/7GBqL bgAuBCbKgCLLp6WxAVrF4wwapQv6spHDXnzcpx+EXbYQ+YcwMAVWEoGK08GnAanVLh zP52nEHUDzUdSOeWLmb+oCsJaRBEcg+mOaJvtf7A=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24EBBTHU6AOEITZR53IUYV7EVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/514503241@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d37fedf12124_6453fcbbe0cd9644381ac"; 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/YRxl651Es334aW1-UFkkph000yY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 06:46:58 -0000

----==_mimepart_5d37fedf12124_6453fcbbe0cd9644381ac
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

2. multiplexing:

I'm not sure if same port should always be supported, but aside from your temporary difficulties, it is highly valuable to servers with the opposite view: band-aiding ephemeral hosts when it is much simpler to just multiplex on the raw packet based on a connection ID hash. A lot of infrastructure is artificially limited by the number of ephemeral ports available. Getting rid of this problem requires getting rid of ephemeral ports.

-- 
You are receiving 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/2844#issuecomment-514503241
----==_mimepart_5d37fedf12124_6453fcbbe0cd9644381ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<ol start="2">
<li>multiplexing:</li>
</ol>
<p>I'm not sure if same port should always be supported, but aside from your temporary difficulties, it is highly valuable to servers with the opposite view: band-aiding ephemeral hosts when it is much simpler to just multiplex on the raw packet based on a connection ID hash. A lot of infrastructure is artificially limited by the number of ephemeral ports available. Getting rid of this problem requires getting rid of ephemeral ports.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK34Z3FQFTWE4U3X3MTQA73F7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VLESI#issuecomment-514503241">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VQZHDQH35E5KMXJ3QA73F7ANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK75LB7XPVWLDXKOJCLQA73F7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VLESI.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK34Z3FQFTWE4U3X3MTQA73F7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VLESI#issuecomment-514503241",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK34Z3FQFTWE4U3X3MTQA73F7A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VLESI#issuecomment-514503241",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d37fedf12124_6453fcbbe0cd9644381ac--


From nobody Wed Jul 24 00:06:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3EDEE12032E for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 00:06:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RCw6nDBs0BuT for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 00:06:55 -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 819D31202DF for <quic-issues@ietf.org>; Wed, 24 Jul 2019 00:06:55 -0700 (PDT)
Date: Wed, 24 Jul 2019 00:06:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563952014; bh=9HDAd66RJK3yXZCHGqaDIcAYOV5QdIPjZFk9nsFpd7U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=u1DCGiWN/IV+dIx1HYwII0W3p6Z1vfUPm5cykRSUwxlFCMCZesuQ3cZrtkpnRgz14 ZkzGBhJI0nhxGw1ZSvU/qNgrk8kaMupYEBGBlzsUOcv4wipB6Vj+RPmUTAhYoFTHuT mt3Tn5JWo6XW+C8zHwYdLD5bvZVTGuYW3D4OmH+4=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PSYQABZ7KT4MFBTN3IU3A5EVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514508478@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38038e5c042_61d03f85696cd968147014"; 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/9BdM5jodcYVrGnrdRDkWQcMzq6U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 07:06:57 -0000

----==_mimepart_5d38038e5c042_61d03f85696cd968147014
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

For reference, here is the pmeenan scheme: https://github.com/pmeenan/http3-prioritization-proposal

The scheme states the bandwidth splitting is implementation dependent. That makes me wonder if Weighted Round Robin scheduling would make sense - it is certainly something I would build into the core transport scheduler based on app provided priorities. It would be neat if H/3 tapped into such a framework.

This means the low priority content is not 100% excluded by higher priority content such that small content can get through eventually. But likely there could be some tunable parameter for how much residual bandwidth is reserved for the next lower priority. E.g. 0% or 10% 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/issues/2924#issuecomment-514508478
----==_mimepart_5d38038e5c042_61d03f85696cd968147014
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>For reference, here is the pmeenan scheme: <a href="https://github.com/pmeenan/http3-prioritization-proposal">https://github.com/pmeenan/http3-prioritization-proposal</a></p>
<p>The scheme states the bandwidth splitting is implementation dependent. That makes me wonder if Weighted Round Robin scheduling would make sense - it is certainly something I would build into the core transport scheduler based on app provided priorities. It would be neat if H/3 tapped into such a framework.</p>
<p>This means the low priority content is not 100% excluded by higher priority content such that small content can get through eventually. But likely there could be some tunable parameter for how much residual bandwidth is reserved for the next lower priority. E.g. 0% or 10% 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/issues/2924?email_source=notifications&amp;email_token=AFTOJK7YTRFXT6AL3E6E3OLQA75Q5A5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VMNPQ#issuecomment-514508478">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZMMUBGFDFRGQ7KKZDQA75Q5ANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6RJP26VHWUQ4BYDOTQA75Q5A5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VMNPQ.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK7YTRFXT6AL3E6E3OLQA75Q5A5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VMNPQ#issuecomment-514508478",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK7YTRFXT6AL3E6E3OLQA75Q5A5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2VMNPQ#issuecomment-514508478",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38038e5c042_61d03f85696cd968147014--


From nobody Wed Jul 24 03:33:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C553812014B for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 03:33:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 BQjhumoe_dfO for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 03:33:39 -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 390121200C3 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 03:33:39 -0700 (PDT)
Date: Wed, 24 Jul 2019 03:33:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563964418; bh=0eeCcccxOIq635PJq0ok1C8F3sZGlVz6NMRS73NtgEc=; h=Date:From:To:Subject:From; b=n0dUMT0ZFuLjP9Zm/kHS1lR0wD8x9dfe78wKtWgfWwupOUVJ/6Ty8M+xeMY7XEhzD /GaZ+v2NFysU9akRYXXvjfFgtuITKGL5kKnDWvQ9j9eJSFObxHkobGcXzpzdb1Qv/+ iwFzAx8saRI0WD+PrhoG8KDbAgEg2RA0vZKqgOgY=
From: Lars Eggert <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/9025e3-6fc8e8@github.com>
Subject: [quicwg/wg-materials] 5d8742: Updating etherpad 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/rSj2uH72u9bT_9IJf3jIYp39KVI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 10:33:41 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: 5d87423ffb49b32f7bd6306449f7aa0799cf6fcc
      https://github.com/quicwg/wg-materials/commit/5d87423ffb49b32f7bd6306449f7aa0799cf6fcc
  Author: Sean Turner <sean@sn3rd.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M ietf105/agenda.md

  Log Message:
  -----------
  Updating etherpad link


  Commit: 6fc8e8c3b2f864b93c8560f49060a83b51960559
      https://github.com/quicwg/wg-materials/commit/6fc8e8c3b2f864b93c8560f49060a83b51960559
  Author: Lars Eggert <200328+larseggert@users.noreply.github.com>
  Date:   2019-07-24 (Wed, 24 Jul 2019)

  Changed paths:
    M ietf105/agenda.md

  Log Message:
  -----------
  Merge pull request #117 from seanturner/patch-5

Updating etherpad link


Compare: https://github.com/quicwg/wg-materials/compare/9025e36f9557...6fc8e8c3b2f8


From nobody Wed Jul 24 06:18:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5E37D1201F2 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 06:18:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 VBITvzNfc9u8 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 06:18:19 -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 CACB91209D3 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 06:18:14 -0700 (PDT)
Date: Wed, 24 Jul 2019 06:18:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563974294; bh=/soufmYj4pz+VcSh2xwoVU8QOemdQDtXxvDOSocDMeE=; h=Date:From:To:Subject:From; b=mNlITc0YCeLMWi7w2SmhSnZ4ZIPlRQ/gwJhsdisqp5AbcNAiWbZwJpGMc6sbFOQ3x UR6T4DZde0tb5+E06TvMdFQYVtOWaQbpY0msbNhsAAHYPm/xvzxGwi8abd+7VBkVvq dyHvvgH0Op+NbjnGtEJ1Dt9FQpjDejJ+9AIvyZZI=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/6fc8e8-125735@github.com>
Subject: [quicwg/wg-materials] c0eccc: Raw Tuesday minutes
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WSnTxfJCXS8Mq33fsQQ12a1veh0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 13:18:22 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: c0ecccc29663971422cd905d2c522669b1873dd1
      https://github.com/quicwg/wg-materials/commit/c0ecccc29663971422cd905d2c522669b1873dd1
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-07-24 (Wed, 24 Jul 2019)

  Changed paths:
    A ietf105/minutes.md

  Log Message:
  -----------
  Raw Tuesday minutes


  Commit: 125735ec70ba9d62fb14527feb8b61823dbca82c
      https://github.com/quicwg/wg-materials/commit/125735ec70ba9d62fb14527feb8b61823dbca82c
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-07-24 (Wed, 24 Jul 2019)

  Changed paths:
    M ietf105/agenda.md

  Log Message:
  -----------
  Merge branch 'master' of github.com:quicwg/wg-materials


Compare: https://github.com/quicwg/wg-materials/compare/6fc8e8c3b2f8...125735ec70ba


From nobody Wed Jul 24 06:31:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D7E401200FA for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 06:30:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 ZpsEGZ0YzhLo for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 06:30: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 468FF120108 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 06:30:57 -0700 (PDT)
Date: Wed, 24 Jul 2019 06:30:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563975056; bh=MT/z/8UxHgaJaDp4zZztK/Iiq+v8aSMW91M3L/mcKoo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=qrQ0f1zmk7Z7GjPGA4/qhbcFjWCJZN0oPANzrX5um0z8nHTS7006zsNCI0hnGjeB+ g+rPIuVrrHxYjOCSmGW0xDRGcnuahAiTIUz28HjUeqNAR6YhQgbg1TfDkp7qIb6Ieq /5WEW4CqryPBvusQqLmuEcTq328SRADbDbWt0cKs=
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2S42PCRI6WGRZ4GWN3IWIBBEVBNHHBYJUACY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2929@github.com>
Subject: [quicwg/base-drafts] Minor clarification. Fixes #2084 (#2929)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d385d9081677_544e3fc9d58cd9601217044"; 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/Ti5_yETvz4fUn_YfMuqrwuox8mU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 13:30:59 -0000

----==_mimepart_5d385d9081677_544e3fc9d58cd9601217044
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/2929

-- Commit Summary --

  * Minor clarification. Fixes #2084

-- File Changes --

    M draft-ietf-quic-transport.md (9)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2929.patch
https://github.com/quicwg/base-drafts/pull/2929.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/2929

----==_mimepart_5d385d9081677_544e3fc9d58cd9601217044
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/2929'>https://github.com/quicwg/base-drafts/pull/2929</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Minor clarification. Fixes #2084</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2929/files#diff-0">draft-ietf-quic-transport.md</a>
    (9)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2929.patch'>https://github.com/quicwg/base-drafts/pull/2929.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2929.diff'>https://github.com/quicwg/base-drafts/pull/2929.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/2929?email_source=notifications&amp;email_token=AFTOJK2ZILCNIIKNZ6RKU63QBBKRBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBGQALA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJUCGHTCQKLSATNY3QBBKRBANCNFSM4IGQC4MA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34WCIQ44SGHG6RTE3QBBKRBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBGQALA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJK2ZILCNIIKNZ6RKU63QBBKRBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBGQALA",
"url": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJK2ZILCNIIKNZ6RKU63QBBKRBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBGQALA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d385d9081677_544e3fc9d58cd9601217044--


From nobody Wed Jul 24 07:06:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3DAD412017D for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 07:06:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9YzIcBGj0cRc for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 07:06:18 -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 B84AF12015E for <quic-issues@ietf.org>; Wed, 24 Jul 2019 07:06:18 -0700 (PDT)
Date: Wed, 24 Jul 2019 07:06:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563977177; bh=95gFMt8DwrafFPZt18zBsgI0MD5Jniumlz7UyeR+lec=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wdJqV0iSkCRyR/u0bLxCOihY9aneaJnqhKQAVx0OlCJZd4JD1HbCf+c6tsZ/Q7T2Q KJvnlcaHLK8BYTtClqx3O8O5uxE11WbBhogEtAt6+bAG2QM7rawnG8t2CTJ4gmumQr 7sxM5cyfPbIS3kZvQKTquWB0vUjpvmszOr6VgC3I=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5VWO4QDZE7ER4UCV3IWMFTEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851/review/265589221@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2851@github.com>
References: <quicwg/base-drafts/pull/2851@github.com>
Subject: Re: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3865d9a2be9_2cf53f95092cd96c710a9"; 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/VFUvb0-LDXa02baou6hRZhl3QaA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 14:06:20 -0000

----==_mimepart_5d3865d9a2be9_2cf53f95092cd96c710a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.



> @@ -924,11 +924,19 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID can be used when a connection ID is not needed
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length
+connection ID unless it can use only its IP address and port to identify a
+connection. The IP address and port used by a peer cannot be used for routing

The substance of the discussion we had suggests that this "cannot" is really a SHOULD 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/2851#pullrequestreview-265589221
----==_mimepart_5d3865d9a2be9_2cf53f95092cd96c710a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2851#discussion_r306462470">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -924,11 +924,19 @@ selected by the client, both to ensure correct routing toward the client and to
 allow the client to validate that the packet is in response to an Initial
 packet.
 
-A zero-length connection ID MAY be used when the connection ID is not needed for
-routing and the address/port tuple of packets is sufficient to identify a
-connection. An endpoint whose peer has selected a zero-length connection ID MUST
-continue to use a zero-length connection ID for the lifetime of the connection
-and MUST NOT send packets from any other local address.
+A zero-length connection ID can be used when a connection ID is not needed
+to route to the correct endpoint. An endpoint SHOULD NOT use a zero-length
+connection ID unless it can use only its IP address and port to identify a
+connection. The IP address and port used by a peer cannot be used for routing
</pre>
<p>The substance of the discussion we had suggests that this "cannot" is really a SHOULD 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/2851?email_source=notifications&amp;email_token=AFTOJK6EXBW3MDNALSDAXS3QBBOVTA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KJDZI#pullrequestreview-265589221">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6VRZT7LO2Y4USQUEDQBBOVTANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2EEXVR4NLIX2RDVJTQBBOVTA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KJDZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK6EXBW3MDNALSDAXS3QBBOVTA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KJDZI#pullrequestreview-265589221",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK6EXBW3MDNALSDAXS3QBBOVTA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7KJDZI#pullrequestreview-265589221",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3865d9a2be9_2cf53f95092cd96c710a9--


From nobody Wed Jul 24 07:09:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4788D120240 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 07:09:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vZqqqfAbteLn for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 07:09: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 49E4A12017D for <quic-issues@ietf.org>; Wed, 24 Jul 2019 07:09:14 -0700 (PDT)
Date: Wed, 24 Jul 2019 07:09:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563977352; bh=M0UMF54Oq90BspBpKyB0XpvSMos7CgEtJE6MuVynGKs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y8Qs/qfODkOZOtVKD5ZLfgQpNDOeL3ePYMn0WFN5kTVInIEbhQOGU+Ni62vRqo5vQ ekNh5l+4g9sBjTGV8jvN/ib1q+CzceWCwFVT/2zS5tDmqvj71Y/41hGbvm9tXXdwxW 9T3IxkyB3EDgxku0uG3iTn8igtbEf/ITRNLWQhzg=
From: Robin Marx <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2W7CGFAFYEBHIQA4N3IWMQREVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514647866@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d386688cf19b_74223f9d216cd95c3068c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: rmarx
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6V0-y6gjkzuL4RrLK24j8-8pgto>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 14:09:16 -0000

----==_mimepart_5d386688cf19b_74223f9d216cd95c3068c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There was a side meeting on prioritization in general at IETF 105 in Montreal. My personal notes (subject to errors and misinterpretations) are attached.

My main takeaways: 
- Will probably drop H2's scheme (tbd in the HTTPbis meeting later)
- Will probably move to extension-based setup to de-couple priorities from H3's core text and to stop it from being a blocker to launch QUIC/H3
- Will add a new SETTINGS parameter or similar setup so endpoints can indicate which prioritization setup they are using / want to use
- Hope to have enough people implement one or more of the extensions before H3 launches. Proof of implementation is expected to help determine which extension "wins"
- There is some disagreement on whether a frame-based or header-based design is best
- Should look at potential interop / backporting issues and opportunities for HTTP/2 as well

[IETF105Montreal_sidemeeting_notes_24july2019.txt](https://github.com/quicwg/base-drafts/files/3427181/IETF105Montreal_sidemeeting_notes_24july2019.txt)


-- 
You are receiving 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/2924#issuecomment-514647866
----==_mimepart_5d386688cf19b_74223f9d216cd95c3068c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There was a side meeting on prioritization in general at IETF 105 in Montreal. My personal notes (subject to errors and misinterpretations) are attached.</p>
<p>My main takeaways:</p>
<ul>
<li>Will probably drop H2's scheme (tbd in the HTTPbis meeting later)</li>
<li>Will probably move to extension-based setup to de-couple priorities from H3's core text and to stop it from being a blocker to launch QUIC/H3</li>
<li>Will add a new SETTINGS parameter or similar setup so endpoints can indicate which prioritization setup they are using / want to use</li>
<li>Hope to have enough people implement one or more of the extensions before H3 launches. Proof of implementation is expected to help determine which extension "wins"</li>
<li>There is some disagreement on whether a frame-based or header-based design is best</li>
<li>Should look at potential interop / backporting issues and opportunities for HTTP/2 as well</li>
</ul>
<p><a href="https://github.com/quicwg/base-drafts/files/3427181/IETF105Montreal_sidemeeting_notes_24july2019.txt">IETF105Montreal_sidemeeting_notes_24july2019.txt</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/2924?email_source=notifications&amp;email_token=AFTOJKZSMXXCAXV6SN6YXXTQBBPARA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WOOOQ#issuecomment-514647866">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4K363Y5BO4LSOL2KTQBBPARANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK475Q2OEFQ6YN2XEZDQBBPARA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WOOOQ.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJKZSMXXCAXV6SN6YXXTQBBPARA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WOOOQ#issuecomment-514647866",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJKZSMXXCAXV6SN6YXXTQBBPARA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WOOOQ#issuecomment-514647866",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d386688cf19b_74223f9d216cd95c3068c2--


From nobody Wed Jul 24 08:02:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1DAF512006F for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:02:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZSR6QQuak-UX for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:02:42 -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 7057812001A for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:02:42 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:02:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563980561; bh=D6ut+GIhkh6SEZFhmfJmXLYLMp9/SnButZJNA8t+sEU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cbnxV8J7vKb1v2z2Yy+hJjIh+T4tCoNqxnbvqfA0sA8o9SCStHX19VPIgSnZsFhJJ iA6LOUM3GvwWG2x5KmAeZl/OBEy44oxg5kpSgnTA/1xVgH2lO7nenAQudKHliDlttX fDwRvlu8PM+m4qnGLwDVRFFE8q1FxZJkMH2NQtRc=
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK367LXME47YSSQNYTF3IWSZDEVBNHHBRWZGVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2496/514670140@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2496@github.com>
References: <quicwg/base-drafts/issues/2496@github.com>
Subject: Re: [quicwg/base-drafts] QUIC Version Ossification (#2496)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38731192cd5_415a3f80c52cd9602028d2"; 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/pWhfDU40Ldb0lhx2t-Or03GmQus>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:02:44 -0000

----==_mimepart_5d38731192cd5_415a3f80c52cd9602028d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal; EKR to lead a design team, reporting back at (or before) the next interim.

-- 
You are receiving 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/2496#issuecomment-514670140
----==_mimepart_5d38731192cd5_415a3f80c52cd9602028d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal; EKR to lead a design team, reporting back at (or before) the next interim.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2496?email_source=notifications&amp;email_token=AFTOJK5ZS5XOQ5KAPUAWQSTQBBVJDA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WT4PA#issuecomment-514670140">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XAAFSP2CYPTWBTXTQBBVJDANCNFSM4G3VHU4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGRIO6NRXVAWM6KCDQBBVJDA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WT4PA.gif" height="1" width="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/2496?email_source=notifications\u0026email_token=AFTOJK5ZS5XOQ5KAPUAWQSTQBBVJDA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WT4PA#issuecomment-514670140",
"url": "https://github.com/quicwg/base-drafts/issues/2496?email_source=notifications\u0026email_token=AFTOJK5ZS5XOQ5KAPUAWQSTQBBVJDA5CNFSM4G3VHU42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WT4PA#issuecomment-514670140",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38731192cd5_415a3f80c52cd9602028d2--


From nobody Wed Jul 24 08:07:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EC165120290 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:07:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PlXN3TD1PwR8 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:07:49 -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 78D4312013A for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:07:43 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:07:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563980863; bh=gIi7g8j7dvFgktRv3f5uLigGIo/GASU19mA7W1ROZNc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T27oUpE3nM6SGQpMGVUcI6zkWb9EM+Edgu6f27YhGJdLCqe1F49MuW7haUQYmhQjR nOgzRyZsDlhPxJZer4Qiua67bxNotBNOiz1+wwHE43WqT92Om+tIaibA6/hmyzh/58 btyLyRgtgKmyS3yacYeeZgn08MNIhcgjJVIg6r4U=
From: Subodh Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ7NP5LIZSSFF64DHV3IWTL5EVBNHHBTKL3ZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2593/issue_event/2506665569@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2593@github.com>
References: <quicwg/base-drafts/issues/2593@github.com>
Subject: Re: [quicwg/base-drafts] Persistent congestion interaction with app limited state (#2593)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38743eb56b1_7b5f3f9ec48cd960717a7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: siyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6Vhpgc73DPFAfHqW39wELxdOupI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:07:56 -0000

----==_mimepart_5d38743eb56b1_7b5f3f9ec48cd960717a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2593.

-- 
You are receiving 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/2593#event-2506665569
----==_mimepart_5d38743eb56b1_7b5f3f9ec48cd960717a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="430537673" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2593" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2593/hovercard" href="https://github.com/quicwg/base-drafts/issues/2593">#2593</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/2593?email_source=notifications&amp;email_token=AFTOJKYJ275RJOEMVWSJ4SLQBBV35A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVUK4YI#event-2506665569">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6CNOQ4GYUAKPZG3MLQBBV35ANCNFSM4HEKI6PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZR577SFWSCJIL2JVTQBBV35A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVUK4YI.gif" height="1" width="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/2593?email_source=notifications\u0026email_token=AFTOJKYJ275RJOEMVWSJ4SLQBBV35A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVUK4YI#event-2506665569",
"url": "https://github.com/quicwg/base-drafts/issues/2593?email_source=notifications\u0026email_token=AFTOJKYJ275RJOEMVWSJ4SLQBBV35A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVUK4YI#event-2506665569",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38743eb56b1_7b5f3f9ec48cd960717a7--


From nobody Wed Jul 24 08:08:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6883D1202DC for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:07:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.909
X-Spam-Level: 
X-Spam-Status: No, score=-6.909 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_16=1.092, 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 ekETU5azoNks for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:07: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 16EB5120288 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:07:45 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:07:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563980861; bh=EF3pBFLnuzKS7vUfNW2X04qPqeWtcA6CzFIdsSpvaVo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q6KF5gBifXw5YUZzwdT6HZhZUxNGPWTiwU7J4/92iwoFhdHKreIf5ECgbitHKc96T xLKSDa5bwBT27iDa33I3VlF6hmUkXC1Km4Vsw7K1YbFUSyD7/4EUkvKaqM0bL5SXpi RaRZQQhZnE0R49zO76yS78fwa/N7WpM4SXDRNLx0=
From: Subodh Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3HXS5O5J27MLHCNFN3IWTL3EVBNHHBTKL3ZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2593/514672221@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2593@github.com>
References: <quicwg/base-drafts/issues/2593@github.com>
Subject: Re: [quicwg/base-drafts] Persistent congestion interaction with app limited state (#2593)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38743d4f481_67e83fb77d8cd95c86780"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: siyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W0JdqJtdADu0dKYkcHcNhi8b5tU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:08:00 -0000

----==_mimepart_5d38743d4f481_67e83fb77d8cd95c86780
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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/issues/2593#issuecomment-514672221
----==_mimepart_5d38743d4f481_67e83fb77d8cd95c86780
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>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/issues/2593?email_source=notifications&amp;email_token=AFTOJK2D4U3QNXAJ3ALNNI3QBBV33A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WUMXI#issuecomment-514672221">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2AMAHVQNISFWCGVITQBBV33ANCNFSM4HEKI6PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK22IX4IVEV2CTOC7ZTQBBV33A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WUMXI.gif" height="1" width="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/2593?email_source=notifications\u0026email_token=AFTOJK2D4U3QNXAJ3ALNNI3QBBV33A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WUMXI#issuecomment-514672221",
"url": "https://github.com/quicwg/base-drafts/issues/2593?email_source=notifications\u0026email_token=AFTOJK2D4U3QNXAJ3ALNNI3QBBV33A5CNFSM4HEKI6PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WUMXI#issuecomment-514672221",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38743d4f481_67e83fb77d8cd95c86780--


From nobody Wed Jul 24 08:16:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 56E94120321 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:16:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id q5-Xirubyg5q for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:16: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 702D112013B for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:16:35 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:16:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563981394; bh=TYz8+1jsYGaeZKXTzbi56BJlEMLKck+BwVWmUwBSQbk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k7iC8Km0fPZhzu3pgyAVmeDNJM3tyRMJOWjyHjNUIWpGznP9X1RxXkLuqgcLhtN1q esLmfewU13Di7EPCj+cUC+eQjVymd1rIOKNzroykOFSj/0ZaJtf+FlOXEULuf5FmLa NgXN6FsS6aTQp6xc3eG4eanAGPTy+YwHax/1Yndc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFDP2CLAIFU7J7GRN3IWUNFEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514676082@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3876526c23b_8423fbc16ecd9688632d"; 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/a-eN4k3zUWiIltwNyTXCuNtGTVo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:16:37 -0000

----==_mimepart_5d3876526c23b_8423fbc16ecd9688632d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Will add a new SETTINGS parameter or similar setup so endpoints can indicate which prioritization setup they are using / want to use

This seems a little controversial.  Patrick expressed a desire to limit the number of potential schemes.  One of the source of the failings in h2 was the way that it enabled proliferation of schemes.  On the converse side of this, Alan said that if implementation is consistent across servers, then allowing variation in clients is fine.  I would add that this is not consistently implemented.

Meta-point: I do want to have a scheme, I just have low expectations of our ability to succeed in the time frame we aspire to.

-- 
You are receiving 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/2924#issuecomment-514676082
----==_mimepart_5d3876526c23b_8423fbc16ecd9688632d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Will add a new SETTINGS parameter or similar setup so endpoints can indicate which prioritization setup they are using / want to use</p>
</blockquote>
<p>This seems a little controversial.  Patrick expressed a desire to limit the number of potential schemes.  One of the source of the failings in h2 was the way that it enabled proliferation of schemes.  On the converse side of this, Alan said that if implementation is consistent across servers, then allowing variation in clients is fine.  I would add that this is not consistently implemented.</p>
<p>Meta-point: I do want to have a scheme, I just have low expectations of our ability to succeed in the time frame we aspire to.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2924?email_source=notifications&amp;email_token=AFTOJK4AGWTASUIVJO54V6TQBBW5FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WVK4Q#issuecomment-514676082">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2SEOWS33M4IXHSYW3QBBW5FANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK62PPWXHTIEO7LFBMDQBBW5FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WVK4Q.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK4AGWTASUIVJO54V6TQBBW5FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WVK4Q#issuecomment-514676082",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK4AGWTASUIVJO54V6TQBBW5FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WVK4Q#issuecomment-514676082",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3876526c23b_8423fbc16ecd9688632d--


From nobody Wed Jul 24 08:26:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1370A120403 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:26:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id epFaM-p3IeLq for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:26: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 2951212044E for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:26:29 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:26:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563981988; bh=uZzXHitpUz/AqB8sN05OuQNCTRP3uTVpF/z1VYcYm18=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=h3m/RpMPkRZauzr6IizCwfCnV6vWWj3SG4Dcfd2J6Ud3syWa6dT3An6xoz8sQlBoM WEsejhES9V+YS4hwxck7b2MtIyzhoI1lBZQF4oqGEzsvgRFcHZqZ11L8ganHx4g+N9 5PiDMuZunwBFNz6QGKYR5nv/MCYbWVc+MlLe0hKA=
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJMKWFMHENXLRRWOF3IWVSJEVBNHHBWLLVNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2789/514680143@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2789@github.com>
References: <quicwg/base-drafts/issues/2789@github.com>
Subject: Re: [quicwg/base-drafts] Use a higher seed RTT for new paths (#2789)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3878a45b195_8c53fab1d6cd95c29394a"; 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/CiFVxc7P561bZ6RRMV-zNICKZHA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:26:35 -0000

----==_mimepart_5d3878a45b195_8c53fab1d6cd95c29394a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal; editors to prepare 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/2789#issuecomment-514680143
----==_mimepart_5d3878a45b195_8c53fab1d6cd95c29394a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal; editors to prepare 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/2789?email_source=notifications&amp;email_token=AFTOJK6JGGHIUPSZ2PAZO43QBBYCJA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WWKTY#issuecomment-514680143">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6FCGHAGHP577ETFV3QBBYCJANCNFSM4HX7UTKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RGW6P7VJVZT43LMTQBBYCJA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WWKTY.gif" height="1" width="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/2789?email_source=notifications\u0026email_token=AFTOJK6JGGHIUPSZ2PAZO43QBBYCJA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WWKTY#issuecomment-514680143",
"url": "https://github.com/quicwg/base-drafts/issues/2789?email_source=notifications\u0026email_token=AFTOJK6JGGHIUPSZ2PAZO43QBBYCJA5CNFSM4HX7UTKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WWKTY#issuecomment-514680143",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3878a45b195_8c53fab1d6cd95c29394a--


From nobody Wed Jul 24 08:38:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C61051202E9 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:38:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nop5SvDCVPSN for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:38: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 45B5F1202AE for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:38:21 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:38:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563982700; bh=UGqI7X3ZWkMiP0unFDW7uW8sjP0g+/Zca/bJVbMqEb0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1t2HssBmERYpb+cSHEnOFYHnpWIGdx52h7pq+lpLrxGa3+hT2i+TjwJXVKfjNM2Mp HQqA0vjLbqxocZ9l+O0uFE3TUE6bd245YJi7WSy5iwQcDRPZPQ/aT4QeLMWslivKza tgRsYLWmvwcNWXNol5gelLbyICMNLKMTqhO2zSGI=
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56DOC7ST3NBIWNGSV3IWW6ZEVBNHHBSW4UGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2556/514685056@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2556@github.com>
References: <quicwg/base-drafts/issues/2556@github.com>
Subject: Re: [quicwg/base-drafts] Should kPersistentCongestionThreshold be 2 or 3? (#2556)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d387b6c2001b_1e7d3fc7d22cd95c95951"; 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/3PbO5-h3Ym7_fQPHQNgoUmdZLCY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:38:23 -0000

----==_mimepart_5d387b6c2001b_1e7d3fc7d22cd95c95951
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Montreal: close 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/2556#issuecomment-514685056
----==_mimepart_5d387b6c2001b_1e7d3fc7d22cd95c95951
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Montreal: close 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/2556?email_source=notifications&amp;email_token=AFTOJK7CIDBCDJNEA5KBD6DQBBZOZA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXRAA#issuecomment-514685056">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52VVAM7DBHO3G5IMDQBBZOZANCNFSM4HBOAN3A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4HP4C6QXS73TQBCCLQBBZOZA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXRAA.gif" height="1" width="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/2556?email_source=notifications\u0026email_token=AFTOJK7CIDBCDJNEA5KBD6DQBBZOZA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXRAA#issuecomment-514685056",
"url": "https://github.com/quicwg/base-drafts/issues/2556?email_source=notifications\u0026email_token=AFTOJK7CIDBCDJNEA5KBD6DQBBZOZA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXRAA#issuecomment-514685056",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d387b6c2001b_1e7d3fc7d22cd95c95951--


From nobody Wed Jul 24 08:40:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C5211120460 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:40:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pBGKsqNUeCdw for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:40: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 26FC9120457 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:40:00 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:39:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563982799; bh=EtFJOvQtTxykSnlkkehwb5vUPz++WRMmVau1WxTFnX4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vFBlzV6bp6TrNMhmQEwPrcscQDz5NEVMauKxopejsMuqZ3coXXoETQ1KBSBpUciuM iWJNnn6U423PnFnymh6/1B1WmdmuEGJIqLl68Mx5kYHhs9/cIGVbu4h/O1uHaVn7ea 6DgSJBsBCcUzTI0ZfEz5uakF4x+wNEkV1KJ1OryE=
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5CWQISADGM5XL7UN3IWXE7EVBNHHBSW3B4A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2555/514685721@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2555@github.com>
References: <quicwg/base-drafts/issues/2555@github.com>
Subject: Re: [quicwg/base-drafts] Define idle period for congestion control (#2555)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d387bcf386aa_63563f9b288cd96463131"; 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/mohXYTEsl06dUOrxwYBNml81Sws>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:40:06 -0000

----==_mimepart_5d387bcf386aa_63563f9b288cd96463131
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussed in Montreal; people to review the 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/2555#issuecomment-514685721
----==_mimepart_5d387bcf386aa_63563f9b288cd96463131
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Discussed in Montreal; people to review the 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/2555?email_source=notifications&amp;email_token=AFTOJKYDVM2KQ37ZJLVW2XTQBBZU7A5CNFSM4HBNZO22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXWGI#issuecomment-514685721">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ43IPL2HF77VRW76DQBBZU7ANCNFSM4HBNZO2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK67VXE7EN4UQXVFERTQBBZU7A5CNFSM4HBNZO22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXWGI.gif" height="1" width="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/2555?email_source=notifications\u0026email_token=AFTOJKYDVM2KQ37ZJLVW2XTQBBZU7A5CNFSM4HBNZO22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXWGI#issuecomment-514685721",
"url": "https://github.com/quicwg/base-drafts/issues/2555?email_source=notifications\u0026email_token=AFTOJKYDVM2KQ37ZJLVW2XTQBBZU7A5CNFSM4HBNZO22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WXWGI#issuecomment-514685721",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d387bcf386aa_63563f9b288cd96463131--


From nobody Wed Jul 24 08:48:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD2971203D7 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:48:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id u5fIFqhMfwfI for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:48: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 450FA1203AA for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:48:24 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:48:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563983303; bh=jYRVPL9hVn1bSwFoFY9SQZbD6wtDPA/dtAgrJLDKzQg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HSIbtG/TSl9EmwNR/sePvQ+YlZXWaLx+53uryzba8itZ8/3xXBhuS+CAQyCJ3DwqV LSEZcmJhrCFXNyG6ddgDNZfkbJEEKZ+RR12lZlJcO5atVPlixZEDR7mJuDOvMIgwgH zPoii2YoNTMn37p5uLgO5dNxCL00y60+PZkQfbvE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CUQWMG5Y5XGAU5353IWYEPEVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514689022@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d387dc734905_4cfd3f90740cd96c1066ee"; 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/ztJj-9Fb4gJ1ZpXajEI8Iwt6yrc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:48:26 -0000

----==_mimepart_5d387dc734905_4cfd3f90740cd96c1066ee
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So if a client is forced to split the ClientHello into two datagrams, you can use Retry.  I don't think that this is crazy.  The only thing we know to be true is that the restriction is annoying.

-- 
You are receiving 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/2928#issuecomment-514689022
----==_mimepart_5d387dc734905_4cfd3f90740cd96c1066ee
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So if a client is forced to split the ClientHello into two datagrams, you can use Retry.  I don't think that this is crazy.  The only thing we know to be true is that the restriction is annoying.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2928?email_source=notifications&amp;email_token=AFTOJKZXOU2TRJ7FBXLTGC3QBB2UPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYP7Q#issuecomment-514689022">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK74OWVM6DOGH5S5XZ3QBB2UPANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2S2H5QEYZCNW3YXWTQBB2UPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYP7Q.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJKZXOU2TRJ7FBXLTGC3QBB2UPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYP7Q#issuecomment-514689022",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJKZXOU2TRJ7FBXLTGC3QBB2UPA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYP7Q#issuecomment-514689022",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d387dc734905_4cfd3f90740cd96c1066ee--


From nobody Wed Jul 24 08:49:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9E95E120468 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:49:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MVRF-sRRZaPg for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 08:49:05 -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 65004120479 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 08:48:57 -0700 (PDT)
Date: Wed, 24 Jul 2019 08:48:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563983336; bh=gaobHD2h88ZP49AEkcZDWicvCz/2z9Rl/0kfI4TODgw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=b0qUH/gyPWf6IIEECw5xhc3dPsV9HRidqGle0wE1E+n0KHmb8gVfomHh08ybes9C5 XDXfCx/HiXndCaqfspxuQMjmVmmCE1EvLUyKTp0hrP44Zzc+wmYtHwBBJmGPV2/ge9 DgHs2p0Mnb0IaPjkOGo+JdNWUYMVUXxTd4qUA5io=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYD7XNNLAR6W7LWBXV3IWYGREVBNHHBYH45I4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2928/514689259@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2928@github.com>
References: <quicwg/base-drafts/issues/2928@github.com>
Subject: Re: [quicwg/base-drafts] Lift single-packet ClientHello requirement? (#2928)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d387de84dc02_71163fc733ccd960265990"; 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/47WPUuUnbayXGss3iXrSegAMJp8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 15:49:07 -0000

----==_mimepart_5d387de84dc02_71163fc733ccd960265990
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My mistake: late stage process means that only chairs mark things as design.  This is a design 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/2928#issuecomment-514689259
----==_mimepart_5d387de84dc02_71163fc733ccd960265990
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My mistake: late stage process means that only chairs mark things as design.  This is a design 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/2928?email_source=notifications&amp;email_token=AFTOJKZK7Z5DBSSMMFMGKDLQBB2WRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYR2Y#issuecomment-514689259">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2IIPWTXWDSJLACGHTQBB2WRANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3F5TLK4QAK5J2FYFTQBB2WRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYR2Y.gif" height="1" width="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/2928?email_source=notifications\u0026email_token=AFTOJKZK7Z5DBSSMMFMGKDLQBB2WRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYR2Y#issuecomment-514689259",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJKZK7Z5DBSSMMFMGKDLQBB2WRA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2WYR2Y#issuecomment-514689259",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d387de84dc02_71163fc733ccd960265990--


From nobody Wed Jul 24 11:23:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2E4F5120112 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 11:23:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8cDTPdZ9xw5d for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 11:23:03 -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 8F878120059 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 11:23:03 -0700 (PDT)
Date: Wed, 24 Jul 2019 11:23:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563992583; bh=ashFMwNDx3wCVyfzsYWBgz3pZUopI8vrYIzdSnUskdA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dqvLdnldkKvdXa990VltXobMOb6wcVm/JclR32BrXvqKFfDK4o1FrbxJteymKZGua XQ7mW0d+IIlQDNHOgF7q4BxBGkJ2w4LRxhmuB4wTkkz/boX1GuRkcqyJgij7aG/Yz5 CDL9nRPqKXI3e0sxaY7wqPabP5I8jFr5AdMmYGz8=
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRUBLC4DS6BHFINT53IXKINEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514744831@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38a206bfdb2_16783f9f88acd96c30344c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: RyanAtGoogle
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wdXycYT5MSK2h3qOMz_5h4aPAYY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 18:23:05 -0000

----==_mimepart_5d38a206bfdb2_16783f9f88acd96c30344c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

On Wed, Jul 24, 2019 at 8:16 AM Martin Thomson <notifications@github.com>
wrote:

> Meta-point: I do want to have a scheme, I just have low expectations of
> our ability to succeed in the time frame we aspire to.
>
> I completely agree about the desire to have a scheme that is part of the
core of HTTP/3 (even if there are extensions which offer a more powerful
scheme). Given the time pressure that you mention, I would be
strongly inclined to support a very basic scheme.

>


-- 
You are receiving 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/2924#issuecomment-514744831
----==_mimepart_5d38a206bfdb2_16783f9f88acd96c30344c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

On Wed, Jul 24, 2019 at 8:16 AM Martin Thomson &lt;notifications@github.com&gt;<br>
wrote:<br>
<br>
&gt; Meta-point: I do want to have a scheme, I just have low expectations of<br>
&gt; our ability to succeed in the time frame we aspire to.<br>
&gt;<br>
&gt; I completely agree about the desire to have a scheme that is part of the<br>
core of HTTP/3 (even if there are extensions which offer a more powerful<br>
scheme). Given the time pressure that you mention, I would be<br>
strongly inclined to support a very basic scheme.<br>
<br>
&gt;<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/2924?email_source=notifications&amp;email_token=AFTOJK7K4QS55EF6GSQIDNLQBCMYNA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XGD7Y#issuecomment-514744831">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3PQFZMJFYYPJ4D3RTQBCMYNANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NQOLW3STRP5WVLBTQBCMYNA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XGD7Y.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK7K4QS55EF6GSQIDNLQBCMYNA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XGD7Y#issuecomment-514744831",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK7K4QS55EF6GSQIDNLQBCMYNA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XGD7Y#issuecomment-514744831",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38a206bfdb2_16783f9f88acd96c30344c--


From nobody Wed Jul 24 12:00:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 685E21204EB for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 12:00:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zRZYO437bZFc for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 12:00: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 84267120656 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 12:00:38 -0700 (PDT)
Date: Wed, 24 Jul 2019 12:00:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563994837; bh=IQl6nvcIl+bMEKAPTJzWK8D0OVNBqdj5U/XXBym6Q88=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uQbrWDMeXiq/0nhHGLkHx+MW987WeWCS1LEJL2buiyNEv1byFLwHqLSPCLI/uVO28 LlQQyFpbktpsSSAN5xXY+JHSGiFInEos2zfOUfBTJoma027ODlg4zUxhf5SFuMpCsz beJ5xWLhmXwEMwX2nStArPqRsqamZiX2oQf42UN0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32EMO76FXPLCGU5AV3IXOVLEVBNHHBSW4UGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2556/issue_event/2507329287@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2556@github.com>
References: <quicwg/base-drafts/issues/2556@github.com>
Subject: Re: [quicwg/base-drafts] Should kPersistentCongestionThreshold be 2 or 3? (#2556)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38aad572003_60373fefa5ecd9649828e"; 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/3dQMZFaYQ1fliE1sCsb8B0goMGI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 19:00:46 -0000

----==_mimepart_5d38aad572003_60373fefa5ecd9649828e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2556.

-- 
You are receiving 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/2556#event-2507329287
----==_mimepart_5d38aad572003_60373fefa5ecd9649828e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="425432118" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2556" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2556/hovercard" href="https://github.com/quicwg/base-drafts/issues/2556">#2556</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/2556?email_source=notifications&amp;email_token=AFTOJK776KQJXRMVREAPC33QBCRFLA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVZM6BY#event-2507329287">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZGO6SFE2Q6V2FZQKTQBCRFLANCNFSM4HBOAN3A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZORMAUKC3ELT6T6HTQBCRFLA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVZM6BY.gif" height="1" width="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/2556?email_source=notifications\u0026email_token=AFTOJK776KQJXRMVREAPC33QBCRFLA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVZM6BY#event-2507329287",
"url": "https://github.com/quicwg/base-drafts/issues/2556?email_source=notifications\u0026email_token=AFTOJK776KQJXRMVREAPC33QBCRFLA5CNFSM4HBOAN3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSVZM6BY#event-2507329287",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38aad572003_60373fefa5ecd9649828e--


From nobody Wed Jul 24 12:28:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD462120494 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 12:28:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -5.881
X-Spam-Level: 
X-Spam-Status: No, score=-5.881 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URG_BIZ=0.573] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vXwo245Gcp3K for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 12:28: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 2F03612047F for <quic-issues@ietf.org>; Wed, 24 Jul 2019 12:28:52 -0700 (PDT)
Date: Wed, 24 Jul 2019 12:28:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563996531; bh=ezIt4PJsmKjqID1Pu3IIB/0mbUYWo4mflrJJWBpmp3A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=U3nEd4To90rhrFL4AtZ8pCkQPPCB2rIfK0M65ZvvTByBnbH+bhe7M3j6NrzxGM9RU uN1r0rW+3VADfiYJjA0PSbiPqRliQHvTlsArs2MTnaQYqLtyjE49A/q4dZw9us0WoL 43VsYhfIBjRKYxQ3Zppvr+PKwUrx5lhQFg/WYQIY=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYJYLTNSOYPLK7ZUV3IXR7FEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514767751@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38b172f0b4b_50c23fe9dd0cd9681033d4"; 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/vawYDnt7sU6gqR6aw7j0CriC1-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: Wed, 24 Jul 2019 19:28:54 -0000

----==_mimepart_5d38b172f0b4b_50c23fe9dd0cd9681033d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The most minimal scheme that comes to my mind is one that does FIFO based on request order and allows urgent requests to jump the queue.

-- 
You are receiving 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/2924#issuecomment-514767751
----==_mimepart_5d38b172f0b4b_50c23fe9dd0cd9681033d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The most minimal scheme that comes to my mind is one that does FIFO based on request order and allows urgent requests to jump the queue.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2924?email_source=notifications&amp;email_token=AFTOJK24OAR2DY22YFVEE5LQBCUPFA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XLXBY#issuecomment-514767751">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK43C35HPEHJYXZDXCTQBCUPFANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63S3AJM3PSFBX3HG3QBCUPFA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XLXBY.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK24OAR2DY22YFVEE5LQBCUPFA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XLXBY#issuecomment-514767751",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK24OAR2DY22YFVEE5LQBCUPFA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XLXBY#issuecomment-514767751",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38b172f0b4b_50c23fe9dd0cd9681033d4--


From nobody Wed Jul 24 12:33:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EB4B712049B for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 12:33:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6CsoSqURkDb3 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 12:33:08 -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 D56F0120614 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 12:33:07 -0700 (PDT)
Date: Wed, 24 Jul 2019 12:33:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1563996786; bh=qs4CO33O45RcMZMjIIrVPIMP1QR3b6hIjyRmx1p/7j8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QHRPWO8HP7WIk9U6jePu62Kb52D1ki0eImrjuzDBqsYurUzxTomtYg8zRcq+iV8qV 3YxBCuoHvsTKRBagTludQUjcZIuRDlfKPsT7HibZaDEmSy/WQ+rlX03OTmooQJXdLr RNfKYcjoLgF24I3CYS7QNSURoi2TMXr6+Y+JY9bo=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ENTL45S5GXCPYGJN3IXSPFEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514769079@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38b272c0abb_1b3b3faa8c4cd9686328e"; 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/XHw9axBGl4ZNNcySQIwTqtCrJD4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 19:33:14 -0000

----==_mimepart_5d38b272c0abb_1b3b3faa8c4cd9686328e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If it's to simple it is not very useful and might prevent something useful from happening.

I like the pmeenan scheme, it seems simple enough and can be negotiated for more advanced behaviour later on. This could easily be a header, and then it is fairly similar to @LPardue and @kazuho's proposal if I understand it right.

Basically: 7 priorities, and 1 concurrency bit in a header. Drop the lower bits if you have fewer levels. Future: use lower level bits for groups if you need it and can negotiate 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/2924#issuecomment-514769079
----==_mimepart_5d38b272c0abb_1b3b3faa8c4cd9686328e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If it's to simple it is not very useful and might prevent something useful from happening.</p>
<p>I like the pmeenan scheme, it seems simple enough and can be negotiated for more advanced behaviour later on. This could easily be a header, and then it is fairly similar to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=6571445" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LPardue">@LPardue</a> and <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>'s proposal if I understand it right.</p>
<p>Basically: 7 priorities, and 1 concurrency bit in a header. Drop the lower bits if you have fewer levels. Future: use lower level bits for groups if you need it and can negotiate 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/2924?email_source=notifications&amp;email_token=AFTOJK7A7ZTLPOT3VGIR453QBCU7FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XMBNY#issuecomment-514769079">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2NVEJKIY6DA6LOCX3QBCU7FANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK345AK6S4R7ZGO3JKTQBCU7FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XMBNY.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK7A7ZTLPOT3VGIR453QBCU7FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XMBNY#issuecomment-514769079",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK7A7ZTLPOT3VGIR453QBCU7FA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2XMBNY#issuecomment-514769079",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38b272c0abb_1b3b3faa8c4cd9686328e--


From nobody Wed Jul 24 14:12:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DB94B12063E for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 14:12:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, 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 X8W2pZqoWIZV for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 14:12: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 CA3841205D3 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 14:12:41 -0700 (PDT)
Date: Wed, 24 Jul 2019 14:12:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564002761; bh=MHJYnKgzF02T2UBxBnfQbwnVXc2atvZKbkw4Oe0GQ1c=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=1XSZGO4X1OzWeVFk9oh9X/k2Djfv3jlG9sJc5hAZtegkh4MmczoXKeDqoyRJDIpVQ EQ2WFkmJ+zMbfTmMD6PaQBT5AVz6h+s6ftPg+e8t6F759JGFCMKX5n4yVucyRIqnbo KtAA9ZqNdJgaX8Ts8I5mwDCj6TzYtKtFhUhLJKG8=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZDNLGI3TTT7FT5GJN3IX6ETEVBNHHBYKSFVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2930@github.com>
Subject: [quicwg/base-drafts] Fix typo in transport draft: eliciting (#2930)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38c9c9cf34_5c8f3f8455acd9602817e0"; 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/6dPano0x3qa3paMrc8v_YjBSXJ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 21:12:44 -0000

----==_mimepart_5d38c9c9cf34_5c8f3f8455acd9602817e0
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/2930

-- Commit Summary --

  * Fix typo in transport draft: eliciting

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2930.patch
https://github.com/quicwg/base-drafts/pull/2930.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/2930

----==_mimepart_5d38c9c9cf34_5c8f3f8455acd9602817e0
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/2930'>https://github.com/quicwg/base-drafts/pull/2930</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix typo in transport draft: eliciting</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2930/files#diff-0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2930.patch'>https://github.com/quicwg/base-drafts/pull/2930.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2930.diff'>https://github.com/quicwg/base-drafts/pull/2930.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/2930?email_source=notifications&amp;email_token=AFTOJK3WR6J3WO2LRXXPW7DQBDAUTA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBKIWUA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYALYIQ5YNMQJZDP53QBDAUTANCNFSM4IGUPOBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3AKRDSLLVAAIWCV73QBDAUTA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBKIWUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2930?email_source=notifications\u0026email_token=AFTOJK3WR6J3WO2LRXXPW7DQBDAUTA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBKIWUA",
"url": "https://github.com/quicwg/base-drafts/pull/2930?email_source=notifications\u0026email_token=AFTOJK3WR6J3WO2LRXXPW7DQBDAUTA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBKIWUA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d38c9c9cf34_5c8f3f8455acd9602817e0--


From nobody Wed Jul 24 16:16:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8707912006E for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 16:16:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AaY5u6h9StuA for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 16:16: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 D4ED01202C7 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 16:16:00 -0700 (PDT)
Date: Wed, 24 Jul 2019 16:15:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564010159; bh=xbY0Q6LVu/AeKDwqC6wewrG/uHM2boD8ipa+eaL9mpY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tsG8SevKJDyrLi1mK5CO22GrhZwuparkemOCW0yrYeSDyADGT22WVLbMuDzhNy2kr 7XB6416aNJeep4V0pTem8lJ95LReCdMk3Q/MJb7+koEF4Mmpmj0cXzHDh/X6a0pQPC W1CnXDurV45stc4AbM2XM1SAk2vUiwQ10KHlBxUU=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6JGYLQIL2MED3PAA53IYMS7EVBNHHBTZTRJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2632/514833409@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2632@github.com>
References: <quicwg/base-drafts/issues/2632@github.com>
Subject: Re: [quicwg/base-drafts] H3 GOAWAY should be symmetric and cover bidi and uni streams (#2632)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38e6afe4b16_8f43fdb3cecd9641222c8"; 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/Sg8dggihP2VvZ9UJ2hYRT9ge1aE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jul 2019 23:16:03 -0000

----==_mimepart_5d38e6afe4b16_8f43fdb3cecd9641222c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It was mentioned in Montreal that the HTTP WG was asked about this. Was the response reflected back in this ticket?

* apologies, this one completely popped off my stack

-- 
You are receiving 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/2632#issuecomment-514833409
----==_mimepart_5d38e6afe4b16_8f43fdb3cecd9641222c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It was mentioned in Montreal that the HTTP WG was asked about this. Was the response reflected back in this ticket?</p>
<ul>
<li>apologies, this one completely popped off my stack</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/2632?email_source=notifications&amp;email_token=AFTOJKY27R4AKHOHPC4BBQDQBDPC7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2X3YAI#issuecomment-514833409">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5B2CMN6UWGSTCFUWTQBDPC7ANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HE6RJ7YDKTMJI7ATQBDPC7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2X3YAI.gif" height="1" width="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/2632?email_source=notifications\u0026email_token=AFTOJKY27R4AKHOHPC4BBQDQBDPC7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2X3YAI#issuecomment-514833409",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJKY27R4AKHOHPC4BBQDQBDPC7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2X3YAI#issuecomment-514833409",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38e6afe4b16_8f43fdb3cecd9641222c8--


From nobody Wed Jul 24 17:12:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E50B41206FC for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:12:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7
X-Spam-Level: 
X-Spam-Status: No, score=-7 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 OwtYoRZZAvI3 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:12:10 -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 648941205F3 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 17:12:10 -0700 (PDT)
Date: Wed, 24 Jul 2019 17:12:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564013529; bh=o3ib3Glg30YA+NSwKjQGCLG8DCCLNWnBfxS+oWYCgoU=; h=Date:From:To:Subject:From; b=IY+GJi8BIq04ILBSKozcNAFGcqms9yZMqRegjoAsXMSvgnXR0PpPda7cC0C8ocnZ3 Fk4lTN6Et4S7nUQ5AaNP/6MhIAQFy7QY0xviY9aueknnl4rbwfcPV8RoYf6BFg5S2p 8QH5WMH2gvZOauVOBiLWaL+YYPIakjsmDfjYEnig=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/0d6841-928c22@github.com>
Subject: [quicwg/base-drafts] 182e05: Fix typo in transport draft: eliciting
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5y_yiWEFFhdkYgBk0upjk4swuug>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 00:12:16 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 182e05b6d1bdc2152bd47c47eeda40ae2589c7f9
      https://github.com/quicwg/base-drafts/commit/182e05b6d1bdc2152bd47c47eeda40ae2589c7f9
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2019-07-24 (Wed, 24 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix typo in transport draft: eliciting


  Commit: 928c223a073a27633d254cb55490aaa8c5866d05
      https://github.com/quicwg/base-drafts/commit/928c223a073a27633d254cb55490aaa8c5866d05
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-07-24 (Wed, 24 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2930 from dtikhonov/201907241710-fix-typo-eliciting

Fix typo in transport draft: eliciting


Compare: https://github.com/quicwg/base-drafts/compare/0d684171abcf...928c223a073a


From nobody Wed Jul 24 17:12:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 255DA1203F6 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:12:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3RkeJFnzTOQa for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:12: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 A2AAE1202B9 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 17:12:18 -0700 (PDT)
Date: Wed, 24 Jul 2019 17:12:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564013537; bh=g7YVQP5T3hsb5cjo/eR0Hf2j0C/7tngOWd57u5wnyxI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ih9I1qQqcjGyjRmdWlM17OdwjppCuiFUzLygaohB4jIyRNFeSU2IQB/LkyiZbG2w5 rA1GfDGuUo5dkrX3ujamxMt26eMY74G2kHxKwp+AB0Jwg2h4gtxWSJ37OwKF8Po1eT B8hrLJo5oIn+vDJycVVOP1kwAWhLkYgwK6xcyMX4=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6S3XNZYZ3RNBTCTKV3IYTGDEVBNHHBYKSFVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2930/issue_event/2507960565@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2930@github.com>
References: <quicwg/base-drafts/pull/2930@github.com>
Subject: Re: [quicwg/base-drafts] Fix typo in transport draft: eliciting (#2930)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d38f3e1e5fc9_1b7e3f8b344cd96c3408a0"; 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/DEG3DTqobJhvL_6MNRhfcGzvQUA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 00:12:20 -0000

----==_mimepart_5d38f3e1e5fc9_1b7e3f8b344cd96c3408a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2930 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/2930#event-2507960565
----==_mimepart_5d38f3e1e5fc9_1b7e3f8b344cd96c3408a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="472532392" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2930" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2930/hovercard" href="https://github.com/quicwg/base-drafts/pull/2930">#2930</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/2930?email_source=notifications&amp;email_token=AFTOJKZLFOSDMLKM2H5X3ITQBDVWDA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSV6HB5I#event-2507960565">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6DFDHTD5WNUJDTRULQBDVWDANCNFSM4IGUPOBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK44IILVDVX63K4I4YTQBDVWDA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSV6HB5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2930?email_source=notifications\u0026email_token=AFTOJKZLFOSDMLKM2H5X3ITQBDVWDA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSV6HB5I#event-2507960565",
"url": "https://github.com/quicwg/base-drafts/pull/2930?email_source=notifications\u0026email_token=AFTOJKZLFOSDMLKM2H5X3ITQBDVWDA5CNFSM4IGUPOB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSV6HB5I#event-2507960565",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d38f3e1e5fc9_1b7e3f8b344cd96c3408a0--


From nobody Wed Jul 24 17:13:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0EF051203E9 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:13:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QmipF_jX8V_f for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:13:27 -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 CB49B1206B3 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 17:13:27 -0700 (PDT)
Date: Wed, 24 Jul 2019 17:13:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564013606; bh=VVUIiNyXXdfPDN5MYtzSJZIbxu4YH8WA4a735n1i8LU=; h=Date:From:To:Subject:From; b=wrlHa9FVYChCjOsh/iWsn1rptPlyDKTmrAsVksQO+f7RnAX7yLAoi5L9sasNvSnG0 mRmBmdSy8DjndDq3+SBeX9txdhq7/DBM+OhLe00FadG26vRkOmlfHuV0c4/H+RaSX6 I+irUCkz/9xIT2p0CAAVWgD4cjCdVVN2VBCGPOCA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f472fa-03768a@github.com>
Subject: [quicwg/base-drafts] 03768a: Script updating gh-pages from 928c223a. [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/rgLhONhjsEtdaHGXTAQPSP8zXiE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 00:13:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 03768a0382c14076030d765b4678ccc9f1227cde
      https://github.com/quicwg/base-drafts/commit/03768a0382c14076030d765b4678ccc9f1227cde
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-25 (Thu, 25 Jul 2019)

  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 928c223a. [ci skip]



From nobody Wed Jul 24 17:15:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 11941120154 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:15:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hWrtiAybeGj9 for <quic-issues@ietfa.amsl.com>; Wed, 24 Jul 2019 17:15:36 -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 DAB561200B8 for <quic-issues@ietf.org>; Wed, 24 Jul 2019 17:15:36 -0700 (PDT)
Date: Wed, 24 Jul 2019 17:15:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564013736; bh=AKPHyArq0l1qOKyRvo5kpx4pGgu3FHxpDNlUmVgajhk=; h=Date:From:To:Subject:From; b=pLHKIRXYKM7E6wX1nLztZq1a4hrxmBoLNt1eFyc373JfZXapQLqU2nrJCvzfvJj64 rqAtzFCqlE+Il6lN+OUIEt/lhbqawmTotErDSFMCzStuMmSjm2rLCFe97pbdrcMRpg WnE9ARBxa3/hDcXhYioGa6s8yGVXxnKCi0lgvZ64=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/03768a-9db8ca@github.com>
Subject: [quicwg/base-drafts] 9db8ca: Script updating issues at 2019-07-25T00:15:29Z. [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/o4qxtohQlx1iXK8c6uMBUXxd9uY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 00:15:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9db8cade6373ad1bb7c70b1ff3ac8257da4fc6ac
      https://github.com/quicwg/base-drafts/commit/9db8cade6373ad1bb7c70b1ff3ac8257da4fc6ac
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-25 (Thu, 25 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-25T00:15:29Z. [ci skip]



From nobody Thu Jul 25 02:53:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AF12A1205D4 for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 02:53:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, 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 PWrLEq0CF9P7 for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 02:53: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 42C9F1200F9 for <quic-issues@ietf.org>; Thu, 25 Jul 2019 02:53:09 -0700 (PDT)
Date: Thu, 25 Jul 2019 02:53:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564048388; bh=XHOWSzvK2R3yr4eosXwvbxaW/T5zyFvIYemd1i+7ViY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MMaQDnB+LMkA7uznyB5SUFv6thsIO/nVpK+FV2X4DD2MhzoOmKxR0bdW4If5QbjK8 x2eMmiIObB+r2AajIikRnnsOxSkRm+OQbzWGJhpzcmNBHRjnp4qh08nKm5Wl4cvCNO 1N1uoiVEMoWH3SqiS1Hgp22y+Uf2f7z3E3CwgYro=
From: Robin Marx <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJMRSIGSI4AFPD5DF3I2XIJEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/514978982@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d397c04557d2_66ea3f80dc2cd96c937d2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: rmarx
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yFjBaMcPXf22hMzV3ZFMbLyRUuQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 09:53:12 -0000

----==_mimepart_5d397c04557d2_66ea3f80dc2cd96c937d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> This seems a little controversial. Patrick expressed a desire to limit the number of potential schemes. One of the source of the failings in h2 was the way that it enabled proliferation of schemes. 

I understand the argument, but I don't see how we could move prioritization to an extension (and mainly: allow more than one extension) and not add some kind of negotiation/setting to specify what is supported/will be used. I am a big proponent of adding this in if we decide not to fix priorities in H3 core **properly** (which is very much looking like it will be the case). Even if the SETTING ends up being moot down the line (e.g., all browsers decided to just support 1 approach), it will still be very useful for testing various extension proposals in the mean time (see it as a prioritization ALPN). I am interested in working on the design of such a setting. 

> Given the time pressure that you mention, I would be strongly inclined to support a very basic scheme.

This seems to be the most sensible way forward at this point. I would suggest to use the scheme proposed by Kazuho and Lucas (https://tools.ietf.org/html/draft-kazuho-httpbis-priority-01). It uses 8 different semantic prioritization levels ("urgency") and a progressive/non-progressive indicator. It could be seen as a simple variation on both Patrick Meenan's proposal and the original SPDY approach, while still allowing enough flexibility to represent some of the more subtle peculiarities of resource loading semantics. As I feel the best way to "finally fix" priorities down the line is to add a lot more semantic information with each request (see https://github.com/kazuho/draft-kazuho-httpbis-priority/issues/28), I feel this simpler approach is a good foundation for that, that will also make "upgrading" easier down the line.

Concretely, I would suggest **adding the 8 urgencies and progressive boolean to the core H3 draft** (making a note that it's not perfect, but not awful either, and that they remain "hints") and to use (an) H3 frame(s) to transport them. Kazuho's and Lucas' proposal of using an HTTP-header to transmit the same information, can be done as an extension (hopefully to be implemented by most of us as well, especially the browsers). Patrick Meenan's setup can also be an extension, which people can use for experimentation. The "final fix" (whatever it may be) can start as a relatively simple extension, can be implemented by a subset of stacks to get some experience, and then grow organically. 






-- 
You are receiving 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/2924#issuecomment-514978982
----==_mimepart_5d397c04557d2_66ea3f80dc2cd96c937d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<blockquote>
<p>This seems a little controversial. Patrick expressed a desire to limit=
 the number of potential schemes. One of the source of the failings in h2=
 was the way that it enabled proliferation of schemes.</p>
</blockquote>
<p>I understand the argument, but I don't see how we could move prioritiz=
ation to an extension (and mainly: allow more than one extension) and not=
 add some kind of negotiation/setting to specify what is supported/will b=
e used. I am a big proponent of adding this in if we decide not to fix pr=
iorities in H3 core <strong>properly</strong> (which is very much looking=
 like it will be the case). Even if the SETTING ends up being moot down t=
he line (e.g., all browsers decided to just support 1 approach), it will =
still be very useful for testing various extension proposals in the mean =
time (see it as a prioritization ALPN). I am interested in working on the=
 design of such a setting.</p>
<blockquote>
<p>Given the time pressure that you mention, I would be strongly inclined=
 to support a very basic scheme.</p>
</blockquote>
<p>This seems to be the most sensible way forward at this point. I would =
suggest to use the scheme proposed by Kazuho and Lucas (<a href=3D"https:=
//tools.ietf.org/html/draft-kazuho-httpbis-priority-01" rel=3D"nofollow">=
https://tools.ietf.org/html/draft-kazuho-httpbis-priority-01</a>). It use=
s 8 different semantic prioritization levels ("urgency") and a progressiv=
e/non-progressive indicator. It could be seen as a simple variation on bo=
th Patrick Meenan's proposal and the original SPDY approach, while still =
allowing enough flexibility to represent some of the more subtle peculiar=
ities of resource loading semantics. As I feel the best way to "finally f=
ix" priorities down the line is to add a lot more semantic information wi=
th each request (see <a class=3D"issue-link js-issue-link" data-error-tex=
t=3D"Failed to load issue title" data-id=3D"465781899" data-permission-te=
xt=3D"Issue title is private" data-url=3D"https://github.com/kazuho/draft=
-kazuho-httpbis-priority/issues/28" data-hovercard-type=3D"issue" data-ho=
vercard-url=3D"/kazuho/draft-kazuho-httpbis-priority/issues/28/hovercard"=
 href=3D"https://github.com/kazuho/draft-kazuho-httpbis-priority/issues/2=
8">kazuho/draft-kazuho-httpbis-priority#28</a>), I feel this simpler appr=
oach is a good foundation for that, that will also make "upgrading" easie=
r down the line.</p>
<p>Concretely, I would suggest <strong>adding the 8 urgencies and progres=
sive boolean to the core H3 draft</strong> (making a note that it's not p=
erfect, but not awful either, and that they remain "hints") and to use (a=
n) H3 frame(s) to transport them. Kazuho's and Lucas' proposal of using a=
n HTTP-header to transmit the same information, can be done as an extensi=
on (hopefully to be implemented by most of us as well, especially the bro=
wsers). Patrick Meenan's setup can also be an extension, which people can=
 use for experimentation. The "final fix" (whatever it may be) can start =
as a relatively simple extension, can be implemented by a subset of stack=
s to get some experience, and then grow organically.</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/2924?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK47LVHURLIR2JEWXMLQBFZYJA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Y7JJQ#issuecomment-514978982">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK45QP6SZS23R3LN5MTQBFZYJANCNFSM4IF5GTWQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK4JQHU2E3NHTLBO3FLQ=
BFZYJA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD2Y7JJQ.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/issues/2924?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK47LVHURLIR2JEWXMLQBFZYJA5CNFSM4=
IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Y7JJ=
Q#issuecomment-514978982",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=3D=
notifications\u0026email_token=3DAFTOJK47LVHURLIR2JEWXMLQBFZYJA5CNFSM4IF5=
GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2Y7JJQ#i=
ssuecomment-514978982",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d397c04557d2_66ea3f80dc2cd96c937d2--


From nobody Thu Jul 25 06:33:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 86451120024 for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 06:33:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uyW8HKvr9O4B for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 06:33:52 -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 A34F8120043 for <quic-issues@ietf.org>; Thu, 25 Jul 2019 06:33:52 -0700 (PDT)
Date: Thu, 25 Jul 2019 06:33:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564061631; bh=YPZ8Yt+q2DWjX9kpo95jGKYtZJWsV0Z9EBJJyYE1Rnc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1ya5huTcG5inbFpGtp22CuVZTyoMno3H/EI65jYA/5CqgQE2Q1lMHELe7sWaMMH4Z Yn66sOOFeKrQ7SImzvKoKpFP4UIxi8Jp7wCDRcOcxY+NMkb4ztFdbHZCBwSMwcCclu yGCp25Lg88504XMKCGM4l1rFu4SoDpKQ1HhQfYPc=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ4KD757FQRIVUNCVV3I3RD7EVBNHHBTZTRJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2632/515045178@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2632@github.com>
References: <quicwg/base-drafts/issues/2632@github.com>
Subject: Re: [quicwg/base-drafts] H3 GOAWAY should be symmetric and cover bidi and uni streams (#2632)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d39afbf98495_19a83fa97e4cd9684296d"; 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/lvWbi3YJBFx9LyW7ng9HjqoDqNA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 13:33:55 -0000

----==_mimepart_5d39afbf98495_19a83fa97e4cd9684296d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

To summarize the discussion on the HTTP list:

* H2 GOAWAY is symmetric
* A GOAWAY sent by the client will prevent any pushes higher than the last-stream-id in the GOAWAY
* Martin feels like this behavior is wrong, and it shouldn't be carried over into H3.

Do we need to build consensus from the HTTP working group that it is OK to deviate from H2 semantics in H3, like we are now planning to do for priorities? 

-- 
You are receiving 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/2632#issuecomment-515045178
----==_mimepart_5d39afbf98495_19a83fa97e4cd9684296d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>To summarize the discussion on the HTTP list:</p>
<ul>
<li>H2 GOAWAY is symmetric</li>
<li>A GOAWAY sent by the client will prevent any pushes higher than the last-stream-id in the GOAWAY</li>
<li>Martin feels like this behavior is wrong, and it shouldn't be carried over into H3.</li>
</ul>
<p>Do we need to build consensus from the HTTP working group that it is OK to deviate from H2 semantics in H3, like we are now planning to do for priorities?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2632?email_source=notifications&amp;email_token=AFTOJK3U3JA5TZR2BJP5TNTQBGTT7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ZPOOQ#issuecomment-515045178">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24UG7OSNN5LO6MFLDQBGTT7ANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4Z4HN6RL2HERGUD6TQBGTT7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ZPOOQ.gif" height="1" width="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/2632?email_source=notifications\u0026email_token=AFTOJK3U3JA5TZR2BJP5TNTQBGTT7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ZPOOQ#issuecomment-515045178",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK3U3JA5TZR2BJP5TNTQBGTT7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2ZPOOQ#issuecomment-515045178",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d39afbf98495_19a83fa97e4cd9684296d--


From nobody Thu Jul 25 10:47:24 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F3CCE12017F for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 10:47:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.353
X-Spam-Level: 
X-Spam-Status: No, score=-6.353 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QfCeSMQ0Hr_w for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 10:47: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 812DA120179 for <quic-issues@ietf.org>; Thu, 25 Jul 2019 10:47:20 -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 781B51C03BF for <quic-issues@ietf.org>; Thu, 25 Jul 2019 10:47:19 -0700 (PDT)
Date: Thu, 25 Jul 2019 10:47:19 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5OY7C4GWM3E7ST6EV3I4O2PEVBNHHBTZTRJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2632/515144737@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2632@github.com>
References: <quicwg/base-drafts/issues/2632@github.com>
Subject: Re: [quicwg/base-drafts] H3 GOAWAY should be symmetric and cover bidi and uni streams (#2632)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d39eb27697ca_421b3fa7854cd96810494e"; 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/0-Y39cBcgg5B88khjJNROgJ0S20>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 17:47:22 -0000

----==_mimepart_5d39eb27697ca_421b3fa7854cd96810494e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Martin feels like this behavior is wrong, and it shouldn't be carried over into H3.

While this is true, we have - as a working group - previously discussed the principles underlying this and agreed that the unit we should care about is the request.

However, I agree that this is something we should discuss at the HTTP working group.  Where we can each put on a different set of hats.

-- 
You are receiving 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/2632#issuecomment-515144737
----==_mimepart_5d39eb27697ca_421b3fa7854cd96810494e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Martin feels like this behavior is wrong, and it shouldn't be carried over into H3.</p>
</blockquote>
<p>While this is true, we have - as a working group - previously discussed the principles underlying this and agreed that the unit we should care about is the request.</p>
<p>However, I agree that this is something we should discuss at the HTTP working group.  Where we can each put on a different set of hats.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2632?email_source=notifications&amp;email_token=AFTOJK6E3MBTZDYCFHXXGYLQBHRKPA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22HYII#issuecomment-515144737">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK23IIPTIUXD55WMMCDQBHRKPANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55S3WYZL7HY2I2G6TQBHRKPA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22HYII.gif" height="1" width="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/2632?email_source=notifications\u0026email_token=AFTOJK6E3MBTZDYCFHXXGYLQBHRKPA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22HYII#issuecomment-515144737",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK6E3MBTZDYCFHXXGYLQBHRKPA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22HYII#issuecomment-515144737",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d39eb27697ca_421b3fa7854cd96810494e--


From nobody Thu Jul 25 10:52:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B624120176 for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 10:52:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 1M9rxChyKKm1 for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 10:52: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 A93BA12016C for <quic-issues@ietf.org>; Thu, 25 Jul 2019 10:52:17 -0700 (PDT)
Date: Thu, 25 Jul 2019 10:52:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564077136; bh=92q/qC21+DcfzsAsQs5e+OfI8iRyk8oYQB/NdjiOTNI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZRozbegKdqXgWXHNqzzs1HDT7zkWloDDmcrdww5nJnGQk1GM8jrPjm81xP9yd9yPU 8N8eQawfRFrQbHxb2LN0kAiFs1XJusbu6hDXos+PXjVY2n5k0z9QRiUV+37ge1UJ90 A8vMYHsWr4FTmH9+yrNGaOQASgIx/LCt0pbF00z8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYT3ITWKV576US2R4V3I4PNBEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/515146732@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d39ec50d274d_664c3f8a464cd9604198f"; 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/mrGEousqVtq9hUHmUsvHC4pzGJg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 17:52:20 -0000

----==_mimepart_5d39ec50d274d_664c3f8a464cd9604198f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The agreed option requires no action, so this is ready for a 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/2670#issuecomment-515146732
----==_mimepart_5d39ec50d274d_664c3f8a464cd9604198f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The agreed option requires no action, so this is ready for a 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/2670?email_source=notifications&amp;email_token=AFTOJK3M2I4YDB34QIFGCZDQBHR5BA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IH3A#issuecomment-515146732">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6FRSNUQQBIOWFRM2LQBHR5BANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4R4YCKFC6ZJQ35HNDQBHR5BA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IH3A.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK3M2I4YDB34QIFGCZDQBHR5BA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IH3A#issuecomment-515146732",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK3M2I4YDB34QIFGCZDQBHR5BA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IH3A#issuecomment-515146732",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d39ec50d274d_664c3f8a464cd9604198f--


From nobody Thu Jul 25 10:55:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4DFA6120183 for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 10:55:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id g35sNiwmco8o for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 10:55: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 6A5CB120176 for <quic-issues@ietf.org>; Thu, 25 Jul 2019 10:55:50 -0700 (PDT)
Date: Thu, 25 Jul 2019 10:55:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564077349; bh=fNLh6NRQvIrq6Hahmll5cXsIoRepTxW+BZrW2dHYhps=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ImcbUv8g7Er61zUy7138kaEIrq6RkwxiYDgujrnCD1hQbxgfu2lyrVHR/YSenUqsn vz6tro1L6rnVAqdFZqefyD0eEDGrG7wxwCTY3EWffQBlpHNfZy5ixOXCT6abVTSSNE VlDtdCoHgzFgqWzyGYS5cu7hH9d7+2MC88VCopwM=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OAUD2ESAS4WGMYJN3I4P2LEVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/515148389@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d39ed259f7bc_48ee3fdc5a4cd968848f6"; 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/9FiBrfiR_DZZmr4iKa9PUKKs7IU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 17:55:53 -0000

----==_mimepart_5d39ed259f7bc_48ee3fdc5a4cd968848f6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> The agreed option requires no action, so this is ready for a consensus call.

How so - isn't option B about a multiplier TP - that would require a PR no?

-- 
You are receiving 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/2670#issuecomment-515148389
----==_mimepart_5d39ed259f7bc_48ee3fdc5a4cd968848f6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>The agreed option requires no action, so this is ready for a consensus call.</p>
</blockquote>
<p>How so - isn't option B about a multiplier TP - that would require a PR no?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2670?email_source=notifications&amp;email_token=AFTOJK6IBJEKKVVOPSJXU4TQBHSKLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IUZI#issuecomment-515148389">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3SXBTN6ULEMYXGDH3QBHSKLANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYEOCP5R5PFAFNTLQTQBHSKLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IUZI.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK6IBJEKKVVOPSJXU4TQBHSKLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IUZI#issuecomment-515148389",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK6IBJEKKVVOPSJXU4TQBHSKLA5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22IUZI#issuecomment-515148389",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d39ed259f7bc_48ee3fdc5a4cd968848f6--


From nobody Thu Jul 25 11:05:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4236512018A for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 11:05:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YIHZAwjMMi6X for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 11:05: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 774E3120183 for <quic-issues@ietf.org>; Thu, 25 Jul 2019 11:05:02 -0700 (PDT)
Date: Thu, 25 Jul 2019 11:05:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564077901; bh=x011nyA3Ph4PBruAcWTNlpY0r4u2sX8FLgg2Qn4h38A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F8fPWQmtB0rODA33gtUfvxtgX2i3Htcq/f1kdzdYgrQbxAMqzPl3+Y49umqSjKvEn 0rSxdHXxv7i3SR0HtCZpNNd975YZ6wkaPwZys0hPOBYWLlzf+M+8TZdq6ayLiJA2UH oswahI7ZOC566BlHp5+CrVROkt/BGFaAP8Sdzn30=
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYEXSQDMTOOMRZ6FO53I4Q43EVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/515152210@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d39ef4da01fa_46353fa8c76cd964334925"; 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/R3sMda3_kO2Gz3rFBRGttTNilTQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 18:05:05 -0000

----==_mimepart_5d39ef4da01fa_46353fa8c76cd964334925
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mikkelfj The "option B" discussed during the WG meeting was to effectively keep the text 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/issues/2670#issuecomment-515152210
----==_mimepart_5d39ef4da01fa_46353fa8c76cd964334925
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=193335" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mikkelfj">@mikkelfj</a> The "option B" discussed during the WG meeting was to effectively keep the text 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/issues/2670?email_source=notifications&amp;email_token=AFTOJK34VJMWS22WV22A3ELQBHTM3A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JSUQ#issuecomment-515152210">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2MSGIY3C6F4SQU6LQBHTM3ANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SMNTY4NJPJRSTZ3LQBHTM3A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JSUQ.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK34VJMWS22WV22A3ELQBHTM3A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JSUQ#issuecomment-515152210",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK34VJMWS22WV22A3ELQBHTM3A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JSUQ#issuecomment-515152210",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d39ef4da01fa_46353fa8c76cd964334925--


From nobody Thu Jul 25 11:06:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8690112019D for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 11:06:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.909
X-Spam-Level: 
X-Spam-Status: No, score=-6.909 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_16=1.092, 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 ZQ30NedV0xxP for <quic-issues@ietfa.amsl.com>; Thu, 25 Jul 2019 11:06: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 3FEA4120229 for <quic-issues@ietf.org>; Thu, 25 Jul 2019 11:06:24 -0700 (PDT)
Date: Thu, 25 Jul 2019 11:06:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564077983; bh=JvjZEIHobPZIREJBVHCMiC9SR092mMAbbJlY364XGc4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lEbK5UDdkr/YwTs1WZllX+RQUvcxMkQtWSJfJYyyImtqf7dwuDw9DTva71VWsA+eC Esi/4Y4h4UO42VfRxEai5EMq6YSVPoTZxGJJL3gtMUB/iG+25R5l6MtIh3+KszIQ4c ragSHA/fMwL8FdrtEJWLGGklgW1FPDbRbcqtZhrk=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4Z3JEKVQ7KDNPZK353I4RB7EVBNHHBUTIZ2M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2670/515152751@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2670@github.com>
References: <quicwg/base-drafts/issues/2670@github.com>
Subject: Re: [quicwg/base-drafts] Remove ack_delay_exponent TP (#2670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d39ef9f6afd0_51cd3feb576cd96416597b"; 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/1rZ3TNJh1VKxVMewp2Bowtx6tkI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 25 Jul 2019 18:06:27 -0000

----==_mimepart_5d39ef9f6afd0_51cd3feb576cd96416597b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

OK, 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/2670#issuecomment-515152751
----==_mimepart_5d39ef9f6afd0_51cd3feb576cd96416597b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>OK, 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/2670?email_source=notifications&amp;email_token=AFTOJK3NR5I26MGEP4VXR6LQBHTR7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JW3Y#issuecomment-515152751">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5HJ3LFWVK55BWFSDDQBHTR7ANCNFSM4HLJKNXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZCSEAAEDI63JDWULQBHTR7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JW3Y.gif" height="1" width="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/2670?email_source=notifications\u0026email_token=AFTOJK3NR5I26MGEP4VXR6LQBHTR7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JW3Y#issuecomment-515152751",
"url": "https://github.com/quicwg/base-drafts/issues/2670?email_source=notifications\u0026email_token=AFTOJK3NR5I26MGEP4VXR6LQBHTR7A5CNFSM4HLJKNXKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD22JW3Y#issuecomment-515152751",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d39ef9f6afd0_51cd3feb576cd96416597b--


From nobody Fri Jul 26 06:14:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 321C1120139 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 06:14:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1M-T_wviC8Kg for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 06:14: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 551C112012B for <quic-issues@ietf.org>; Fri, 26 Jul 2019 06:14:35 -0700 (PDT)
Date: Fri, 26 Jul 2019 06:14:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564146874; bh=N9CejCCOcGm9ianWP+xVDjII60UFnPPe2muwT5Jy3iw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DHm/EZBdBAom36luAyCWgpgrY3WitdJ0r9Xc6LJBUc8Q4ZX4WksLoLA6WjsYFXnV/ NQEFLCa/kCanWDvgJrO9JNAWNlRUZd/JQwUSG5Spn+02hOFZME+mw9Hedw1bE2dizx GLks8uGaM2Rlhmgs+N6ugVf69vM9B/B02Rd50Lyw=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64QCSICD45I525MOV3JAXTVEVBNHHBYGSUE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925/review/267178804@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2925@github.com>
References: <quicwg/base-drafts/pull/2925@github.com>
Subject: Re: [quicwg/base-drafts] Add initial threat model appendix (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3afcba62a62_14b73fd5e82cd960205295"; 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/TAPfOetbFDUyPLootTHiZvDR1BE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 13:14:37 -0000

----==_mimepart_5d3afcba62a62_14b73fd5e82cd960205295
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

dtikhonov commented on this pull request.



> @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.

I'd drop the use of "we."  In the whole `draft-ietf-quic-transport-22`, for instance, the word "we" is encountered only once, while RFC 7540 and 7541 contain no instances of this pronoun.

I suggest instead:
- _This appendix provides and informal description..._; and
- _Handshake, ...etc. are covered 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/2925#pullrequestreview-267178804
----==_mimepart_5d3afcba62a62_14b73fd5e82cd960205295
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@dtikhonov</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r307736342">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
</pre>
<p>I'd drop the use of "we."  In the whole <code>draft-ietf-quic-transport-22</code>, for instance, the word "we" is encountered only once, while RFC 7540 and 7541 contain no instances of this pronoun.</p>
<p>I suggest instead:</p>
<ul>
<li><em>This appendix provides and informal description...</em>; and</li>
<li><em>Handshake, ...etc. are covered separately</em>.</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/2925?email_source=notifications&amp;email_token=AFTOJK6DRPAISZJSXSQGSJDQBL2DVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7WNGNA#pullrequestreview-267178804">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5CSKXIJJ6REXIFUYDQBL2DVANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK37F3ZZCZFCYYRIGY3QBL2DVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7WNGNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK6DRPAISZJSXSQGSJDQBL2DVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7WNGNA#pullrequestreview-267178804",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK6DRPAISZJSXSQGSJDQBL2DVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB7WNGNA#pullrequestreview-267178804",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3afcba62a62_14b73fd5e82cd960205295--


From nobody Fri Jul 26 08:18:23 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5D6E612013B for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 08:18:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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_RK2UQSsO6v for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 08:18:18 -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 A082312011F for <quic-issues@ietf.org>; Fri, 26 Jul 2019 08:18:18 -0700 (PDT)
Date: Fri, 26 Jul 2019 08:18:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564154297; bh=+sfj9BlxapL6JdQ+QRWulQJtt2B1ldhXpuZuSgJd2Hk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RPOjohyrykrrz2hqjoPnxaydYzYDVE4CHyX37EHQDnhmK55VAbhVBpO0UW4U2jZ5k 8+/D138qlAa7sgL4vhZ+74aNs55FvYpjOPc+slgqaY+X6CuNkoZA2ls6XeZQm5YTS4 K/vt4/6fckrCaOkdaqsjAIA5CibLgjrHgQRtdskU=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XYUAFZ2YMPL5I4IF3JBGDTEVBNHHBTZTRJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2632/515494152@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2632@github.com>
References: <quicwg/base-drafts/issues/2632@github.com>
Subject: Re: [quicwg/base-drafts] H3 GOAWAY should be symmetric and cover bidi and uni streams (#2632)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b19b9a2cfa_45b13fd66d2cd96c26753a"; 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/5DLUwSDSncLapFudAIPJhSYsqw0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 15:18:20 -0000

----==_mimepart_5d3b19b9a2cfa_45b13fd66d2cd96c26753a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> While this is true, we have - as a working group - previously discussed the principles underlying this and agreed that the unit we should care about is the request.

What's ill defined is whether the pushes that come on a request are part of the request or not. I think a reasonable argument can be made for either interpretation.

-- 
You are receiving 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/2632#issuecomment-515494152
----==_mimepart_5d3b19b9a2cfa_45b13fd66d2cd96c26753a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>While this is true, we have - as a working group - previously discussed the principles underlying this and agreed that the unit we should care about is the request.</p>
</blockquote>
<p>What's ill defined is whether the pushes that come on a request are part of the request or not. I think a reasonable argument can be made for either interpretation.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2632?email_source=notifications&amp;email_token=AFTOJK7H3UAHD2KYUZHFGUDQBMITTA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD245CCA#issuecomment-515494152">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JKLWVUYCVDHTKJODQBMITTANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZL7DOFWQ7CS7A3TMTQBMITTA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD245CCA.gif" height="1" width="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/2632?email_source=notifications\u0026email_token=AFTOJK7H3UAHD2KYUZHFGUDQBMITTA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD245CCA#issuecomment-515494152",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK7H3UAHD2KYUZHFGUDQBMITTA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD245CCA#issuecomment-515494152",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b19b9a2cfa_45b13fd66d2cd96c26753a--


From nobody Fri Jul 26 10:27:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 22A2912036F for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 10:26:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 Zz0_Gr0bfnt7 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 10:26: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 9A2441203B3 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 10:26:57 -0700 (PDT)
Date: Fri, 26 Jul 2019 10:26:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564162016; bh=Vz6v+MUZ5KZ4PbfXsdP9cx7BD+bahxvflSTKmxA8vec=; h=Date:From:To:Subject:From; b=yg+JvfIoPUdho9Vo3+r46vPPJ0Fx3WK5QQd2wero3ANKsO6r5iN4ucGj4dQJDqhre mkpqKtYsAmxdhsXKpBota0aJIkZfWeAvJ8QVn/uw5N6cOU4GcyhZWzTLrNcxmMn+7I 2nrttcugLxSXwASHSYj2DLjv6vXTFNETHt+1KWh4=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/125735-367b67@github.com>
Subject: [quicwg/wg-materials] 367b67: update with raw thursday minutes
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GJyVPFfvKTV62H_HMM5szklBa-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: Fri, 26 Jul 2019 17:26:59 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: 367b679b093685f083473dcea38fe3e6c41f16df
      https://github.com/quicwg/wg-materials/commit/367b679b093685f083473dcea38fe3e6c41f16df
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-07-26 (Fri, 26 Jul 2019)

  Changed paths:
    M ietf105/minutes.md

  Log Message:
  -----------
  update with raw thursday minutes



From nobody Fri Jul 26 11:27:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9DA4312046E for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 11:27:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DQ6Q5bTansCU for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 11:27:15 -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 8ABE112034E for <quic-issues@ietf.org>; Fri, 26 Jul 2019 11:26:51 -0700 (PDT)
Date: Fri, 26 Jul 2019 11:26:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564165610; bh=kgEX/Q9C/7iRf3rEnYlJFjM93h7q34h3oz12pDKDJqE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=og0EtzsmtwCqSVnE2wft4SBdSCjre8TN9UQFDNonU0mzCI6rmNFJJnPY6H3HXj+xY DRnJtkRhVOFcj8kTKg3yEIimiK+JeIyuXbkH1j2nGOVWpOotpXQcUWJ480ynUzgBVz 0gwQq+cuNhmZaDhpupsQdj33efqg+FTS6Tj/yNng=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5DAWEX2O4NV7PFO2V3JB4GVEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515554237@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b45ea7dd88_76d23ff0a5acd96c228540"; 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/AhQKCAFEfIG-tT7Q5E7Vuy5sbV8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 18:27:17 -0000

----==_mimepart_5d3b45ea7dd88_76d23ff0a5acd96c228540
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke I agree that there are two separate issues.

My opinion is that we should require servers to support clients multiplexing multiple connections on the same port. It's OK if your routing infrastructure only looks at the four-tuple, but the end-server than receives the packet needs to demultiplex based on the server 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/issues/2844#issuecomment-515554237
----==_mimepart_5d3b45ea7dd88_76d23ff0a5acd96c228540
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=24398865" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinduke">@martinduke</a> I agree that there are two separate issues.</p>
<p>My opinion is that we should require servers to support clients multiplexing multiple connections on the same port. It's OK if your routing infrastructure only looks at the four-tuple, but the end-server than receives the packet needs to demultiplex based on the server connection 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/issues/2844?email_source=notifications&amp;email_token=AFTOJK2WHS4BVHDQJJAWIODQBM6WVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25LXPI#issuecomment-515554237">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QH5HQLXQCRENDUZ3QBM6WVANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK27NYFW7C4HUAVFKJDQBM6WVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25LXPI.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK2WHS4BVHDQJJAWIODQBM6WVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25LXPI#issuecomment-515554237",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK2WHS4BVHDQJJAWIODQBM6WVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25LXPI#issuecomment-515554237",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b45ea7dd88_76d23ff0a5acd96c228540--


From nobody Fri Jul 26 12:03:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6EF4312044F for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:03:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F4LmfWHR_-Y4 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:03:48 -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 029F3120431 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 12:03:38 -0700 (PDT)
Date: Fri, 26 Jul 2019 12:03:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564167818; bh=AGU6n9eiam2IRKsbnYebfijRpfIbRtatQt7Qt1Mw304=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bog9R4WObrGvP6/+Mm4Fk03b+2JupcIU1PqL/QlNPto8OtgPiKgkyyUdEr1ndxx7o enLialbNCrDwWs5O9vLGICbTKJ3iAFI0DCbW82Khe5CYct5+sMGaI7sii5094cVBqy JEir11Sy9CAFxKoU2BEgsikJSlixAsLXTHlKpses=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5O456CUAH7BFSPRHF3JCAQVEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515565411@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b4e8a12aef_1df13ff792acd964531d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iSpbR3YYR7lpbd228U7OboQY91E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 19:03:50 -0000

----==_mimepart_5d3b4e8a12aef_1df13ff792acd964531d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi Note that supporting multiplexing clients does not mean always using a server CID. A server that does not support client migration may decide to use a CID only if the client is using non-zero-length CID. (And there is little reason for a client CID other than for multiplexing.)

-- 
You are receiving 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/2844#issuecomment-515565411
----==_mimepart_5d3b4e8a12aef_1df13ff792acd964531d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=5599133" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> Note that supporting multiplexing clients does not mean always using a server CID. A server that does not support client migration may decide to use a CID only if the client is using non-zero-length CID. (And there is little reason for a client CID other than for multiplexing.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK432LV4ARSNJJNW4M3QBNDAVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OOYY#issuecomment-515565411">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VBZQXJ4PTLE43SFTQBNDAVANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RIUUQLSUBVQKJTV3QBNDAVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OOYY.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK432LV4ARSNJJNW4M3QBNDAVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OOYY#issuecomment-515565411",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK432LV4ARSNJJNW4M3QBNDAVA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OOYY#issuecomment-515565411",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b4e8a12aef_1df13ff792acd964531d5--


From nobody Fri Jul 26 12:08:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9186E120181 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:08:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7vWI7iT68b-x for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:08:08 -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 D703612017F for <quic-issues@ietf.org>; Fri, 26 Jul 2019 12:08:07 -0700 (PDT)
Date: Fri, 26 Jul 2019 12:08:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564168087; bh=gEhOV9CG+Hvb61THb+EmdK2t6l0dQwfCJ2zP4SB31Ls=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cZijwQsPdyzuPK5KgBGE1q1B7BYldzsL+ZfY48DJG/ZAKRE9SFlHvlt2WAYSwpOLz W9zxsAEMeHyZOG2NF7N2Tv8YwWoB6G2+c3xPlLZ07LL/BuRdDaKpPk9x7qvheeKQQz eYbhzB2+QZsV01Tjy1Y7SZtGeGgN+y103f8bIbo0=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYLGMQWG5NUZH2DW5N3JCBBNEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515566614@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b4f9734f_42063fe6308cd95c7047f"; 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/1X8NhbhZBEqsh4U2QqYghwtBB7s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 19:08:10 -0000

----==_mimepart_5d3b4f9734f_42063fe6308cd95c7047f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igorlord As a server you should not use zero-length connection IDs unless you can demultiplex locally based on your own IP and port. Violating that breaks several protocol features - see #2851 .

-- 
You are receiving 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/2844#issuecomment-515566614
----==_mimepart_5d3b4f9734f_42063fe6308cd95c7047f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=25256216" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/igorlord">@igorlord</a> As a server you should not use zero-length connection IDs unless you can demultiplex locally based on your own IP and port. Violating that breaks several protocol features - see <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461188950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2851" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2851/hovercard" href="https://github.com/quicwg/base-drafts/pull/2851">#2851</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/2844?email_source=notifications&amp;email_token=AFTOJK7ZYRLJXALI4AR72ILQBNDRNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OYFQ#issuecomment-515566614">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZS4ZP5GHDL2MUPSHTQBNDRNANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYKV5UB667KINFNX4LQBNDRNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OYFQ.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK7ZYRLJXALI4AR72ILQBNDRNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OYFQ#issuecomment-515566614",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK7ZYRLJXALI4AR72ILQBNDRNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25OYFQ#issuecomment-515566614",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b4f9734f_42063fe6308cd95c7047f--


From nobody Fri Jul 26 12:33:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DE94C120090 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:33:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7b1S1efujzn3 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:33: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 37DC5120071 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 12:33:46 -0700 (PDT)
Date: Fri, 26 Jul 2019 12:33:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564169625; bh=BJyYcj6AvTiPNHPoD7yanx3gwitcpBXveCftEAYUFWA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nvFS7ieubR3RoyYct6Q8RrOMqkU787WXt31RTorkNqmxQVmTtONS5ntitx6hFxMLT 2nSMNc1LywXbJLPBWwaKEByCmXq1uJnvkskRmSoVmbGX7iQyH7JfL+OE0O0aUOuocn Aya2sAXkeLZHg6DQxyAflP+kSnlAv2zF0XeDAL3c=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK22HTSXUPL6QR4SRKV3JCEBTEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515573666@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b55995ef4e_40583ff1bbccd96c96069"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Qf0EM5DMpF58ho8qoPNURr_eAsQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 19:33:48 -0000

----==_mimepart_5d3b55995ef4e_40583ff1bbccd96c96069
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi I obviously disagree with this (and we had a discussion about this in Montreal). Support for connection migration is optional. Hence, if the server does not support connection migration or knows that a particular client will not migrate, there is no need for a server to supply a non-zero-length CID, when such a client supplies a zero-length CID.

Which protocol feature is missing when the client will not migrate, if the server is using a 4-tuple to demux and there is a zero-length client and server CID?

-- 
You are receiving 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/2844#issuecomment-515573666
----==_mimepart_5d3b55995ef4e_40583ff1bbccd96c96069
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=5599133" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> I obviously disagree with this (and we had a discussion about this in Montreal). Support for connection migration is optional. Hence, if the server does not support connection migration or knows that a particular client will not migrate, there is no need for a server to supply a non-zero-length CID, when such a client supplies a zero-length CID.</p>
<p>Which protocol feature is missing when the client will not migrate, if the server is using a 4-tuple to demux and there is a zero-length client and server CID?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJKYVYO6DWACNNHJO6R3QBNGRTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25QPIQ#issuecomment-515573666">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK23A5SOOZM6Z4MU3RTQBNGRTANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGIK6YWFHDXYSIDOTQBNGRTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25QPIQ.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJKYVYO6DWACNNHJO6R3QBNGRTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25QPIQ#issuecomment-515573666",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJKYVYO6DWACNNHJO6R3QBNGRTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25QPIQ#issuecomment-515573666",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b55995ef4e_40583ff1bbccd96c96069--


From nobody Fri Jul 26 12:50:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 558C112034E for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:49:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X4S_le96pgL4 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:49: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 92B75120347 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 12:49:56 -0700 (PDT)
Date: Fri, 26 Jul 2019 12:49:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564170595; bh=yep8ht++JEXR3AFJEt9Kxt4t7hr+u8wcK5QWhbluaFw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0W/zH1YgpKkaMWFASEoyGMz0T95UhU7jTwgd6vF80lfpE9kytpQV1dejDKBy+o1y6 fWnyruxmTbtVwpCzk/wiNmPtiHdug2Cr0PDbfTdn1JjcBhCLRHISzC9UF2IwB9dB+7 aaRER6FBe6m4UkKFHnjfFJR5RpXsc3hjP0fUcPnA=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYPN2DPUDIX5MSCP3N3JCF6HEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515578003@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b596385e56_17283f8e162cd95c185220"; 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/okLL-xXrXa-2cLX-vv-LpRtCOUk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 19:49:59 -0000

----==_mimepart_5d3b596385e56_17283f8e162cd95c185220
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@igorlord A client that is using a single UDP connection would not be abl=
e two establish two connections to such a server at the same time. Even w=
orse, it would have no way of knowing if it=E2=80=99s safe to dial two co=
nnections concurrently.=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/2844#issuecomment-515578003=

----==_mimepart_5d3b596385e56_17283f8e162cd95c185220
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/hovercards?user_id=3D25256216" data-octo-click=3D"hovercard-link-=
click" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com=
/igorlord">@igorlord</a> A client that is using a single UDP connection w=
ould not be able two establish two connections to such a server at the sa=
me time. Even worse, it would have no way of knowing if it=E2=80=99s safe=
 to dial two connections concurrently.</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/2844?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK2UXFUQR7BX666K7YTQBNIOHA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25RREY#issuecomment-515578003">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJKZ3MLNXTIB5WDEDKITQBNIOHANCNFSM4H3LQX5A">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK2R3EZ6UCPZELBPIM3Q=
BNIOHA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD25RREY.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/issues/2844?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK2UXFUQR7BX666K7YTQBNIOHA5CNFSM4=
H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25RRE=
Y#issuecomment-515578003",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=3D=
notifications\u0026email_token=3DAFTOJK2UXFUQR7BX666K7YTQBNIOHA5CNFSM4H3L=
QX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25RREY#i=
ssuecomment-515578003",=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_5d3b596385e56_17283f8e162cd95c185220--


From nobody Fri Jul 26 12:57:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9BFB81201B0 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:57:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QQ-YojjNFcuV for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 12:57: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 6EDB8120047 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 12:57:38 -0700 (PDT)
Date: Fri, 26 Jul 2019 12:57:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564171057; bh=qiSBhlfRgRLVwtyP+hSpSIg3jH/nRbTBPM1KS4Qjn7w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wFkONAOGhBbXDPXn5/m4osN1dqqeJ/DI/zxlFD3aLd2HN+pMIXdXYfWPCpt1ydlaU A2oYS8Ab0shF0xP4cbufDwgBxQ8oyTwWpM97+P1lMSZC987D9p7qX3+nT3zRbtvwTa 5/Eqb7Hll0on/Mu8eH1QJUDby1Lxb1VMiDvDbVjA=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4MV4TI5CAQNILZCZV3JCG3DEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515580181@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b5b3181873_4a083ffd17acd95c21587a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/356y-ndu6Ops_JUA9ENAGibdRXI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 19:57:41 -0000

----==_mimepart_5d3b5b3181873_4a083ffd17acd95c21587a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann such client would not use a zero-length client CID, do the argument is moot.

-- 
You are receiving 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/2844#issuecomment-515580181
----==_mimepart_5d3b5b3181873_4a083ffd17acd95c21587a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a> such client would not use a zero-length client CID, do the argument is moot.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJKZIKKOXBLVS7VGXDZLQBNJLDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25SCFI#issuecomment-515580181">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XIWUYLCQTH6D4C4DQBNJLDANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CZ22BCZDQ6ED6HJTQBNJLDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25SCFI.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJKZIKKOXBLVS7VGXDZLQBNJLDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25SCFI#issuecomment-515580181",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJKZIKKOXBLVS7VGXDZLQBNJLDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25SCFI#issuecomment-515580181",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b5b3181873_4a083ffd17acd95c21587a--


From nobody Fri Jul 26 13:15:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AAE1B1201D5 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 13:15:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ibvCyBEUCDbV for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 13:15: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 ACAD81201CF for <quic-issues@ietf.org>; Fri, 26 Jul 2019 13:15:34 -0700 (PDT)
Date: Fri, 26 Jul 2019 13:15:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564172133; bh=IBkTWqSnRMBDAG0n/ox9Zj+UwgrkcHCSM7b5T449qFo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Fd/6K5coRw9+smwZPzXx8fNkyDE9pHGm6sSEpWC7fX1bLlDlKJn3HcgUSKXlEfPD6 KROib3hrxYR8/oMlCQb1rFpz5bH9mLVSX/FRz2AHDX8PYOYlBEkuHjZC38pI1jiQks X+9mk+iYbPXLCUrXl7S4phL5r+N9f0AqnDgWFKJc=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4PR5ZJQTE5D4SOHON3JCI6LEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515585239@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b5f65a7e07_28163fe52bccd9681363cd"; 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/wyoWYpZfuIIGJ_iYnnflzR3DO6Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 20:15:37 -0000

----==_mimepart_5d3b5f65a7e07_28163fe52bccd9681363cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igorlord The client would not use zero-length CIDs for *receiving* packets. The problem occurs when the server uses zero-length CIDs, since it won't be able to distinguish between the two connections.

-- 
You are receiving 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/2844#issuecomment-515585239
----==_mimepart_5d3b5f65a7e07_28163fe52bccd9681363cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=25256216" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/igorlord">@igorlord</a> The client would not use zero-length CIDs for <em>receiving</em> packets. The problem occurs when the server uses zero-length CIDs, since it won't be able to distinguish between the two connections.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK5SWCFVRZJWXYF73MDQBNLOLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TJVY#issuecomment-515585239">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7CH26QHM7BBHTKL6TQBNLOLANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTEIXRPUCCCBY23H3QBNLOLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TJVY.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK5SWCFVRZJWXYF73MDQBNLOLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TJVY#issuecomment-515585239",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK5SWCFVRZJWXYF73MDQBNLOLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TJVY#issuecomment-515585239",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b5f65a7e07_28163fe52bccd9681363cd--


From nobody Fri Jul 26 13:22:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F411E120052 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 13:22:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Hs4K4IGEYRkR for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 13:22: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 6C314120047 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 13:22:04 -0700 (PDT)
Date: Fri, 26 Jul 2019 13:22:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564172523; bh=xTB/t5UNT++GlGohlLZGABADumajy70tT4GuggO+6pM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QCKaJbvBJLqL860tP/LPoGznm8zfuB5/AvrEM2Li27p1R6GweH7dKDFlRymGgJ9SB t3oujm0Ijec7igrlWsRSj7HgvqbaPono+95QdIukwAbpkW59RLXHUqK1gY3rnleXU5 67WAoh4iDxMVEvp5g3+dMdiMC7PBHoWPfbzQ6R8k=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56BMZ3BA2KV3ZNJ5N3JCJWXEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515587290@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b60eb2a737_5783fb6ff8cd96c1032c9"; 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/oyDOS1w2aA8tyHF2cIweUuftzTY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 20:22:10 -0000

----==_mimepart_5d3b60eb2a737_5783fb6ff8cd96c1032c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

+1 to what @marten-seemann 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/issues/2844#issuecomment-515587290
----==_mimepart_5d3b60eb2a737_5783fb6ff8cd96c1032c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>+1 to what <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a> 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/issues/2844?email_source=notifications&amp;email_token=AFTOJK7P2P45TTKC4WX56TTQBNMGXA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TZWQ#issuecomment-515587290">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYACFGYZ6XIOIODFCDQBNMGXANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZRCCKRJ7YFU2JMLRLQBNMGXA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TZWQ.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK7P2P45TTKC4WX56TTQBNMGXA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TZWQ#issuecomment-515587290",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK7P2P45TTKC4WX56TTQBNMGXA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD25TZWQ#issuecomment-515587290",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b60eb2a737_5783fb6ff8cd96c1032c9--


From nobody Fri Jul 26 13:50:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E651F12012D for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 13:50:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7UYSkqFXFpYP for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 13:50: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 32A0C12011B for <quic-issues@ietf.org>; Fri, 26 Jul 2019 13:50:24 -0700 (PDT)
Date: Fri, 26 Jul 2019 13:50:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564174223; bh=Tubgw3cda16kbeSpyMnwFY2EseMteAi7bmloQ5PrS7g=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=foi91XJvveYvkzsNaXfNM9cQ7EnY7Ww6fuVaZmawelGVGAdFLz4ogUpyds33aDFuD b1UKBTfQJ1naMxLwHcgVpP5mxwyDWbVuanGlQ/MQkUCSpW1ec1qCc++r6BdjoDCwiq 8gw9/UO6S5j4e4ei435gFLjr/m33isoYmFztySCQ=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYW6VQRYR4B4ROADPN3JCNA7EVBNHHBYOMBYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2931@github.com>
Subject: [quicwg/base-drafts] Non-ACK-eliciting packets never need to be ACKed (#2931)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b678f46694_749e3fc21fecd9683031a5"; 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/8cNBvoeVCOAIAgwZtobjtshYSGE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 20:50:26 -0000

----==_mimepart_5d3b678f46694_749e3fc21fecd9683031a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

By definition, non-ACK-eliciting packets never need to be ACKed.  Verbiage introduced in PR #2794 states:

> When only non-ACK-eliciting packets need to be acknowledged, ...

I am not sure what the intended meaning was.  Perhaps what was meant is "when only non-ACK-eliciting packets have not been acked,..."  We could try to find a more graceful way to 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/issues/2931
----==_mimepart_5d3b678f46694_749e3fc21fecd9683031a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>By definition, non-ACK-eliciting packets never need to be ACKed.  Verbiage introduced in PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="456489392" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2794" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2794/hovercard" href="https://github.com/quicwg/base-drafts/pull/2794">#2794</a> states:</p>
<blockquote>
<p>When only non-ACK-eliciting packets need to be acknowledged, ...</p>
</blockquote>
<p>I am not sure what the intended meaning was.  Perhaps what was meant is "when only non-ACK-eliciting packets have not been acked,..."  We could try to find a more graceful way to 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/issues/2931?email_source=notifications&amp;email_token=AFTOJKYBTDCMI2SMIZZ6EXLQBNPQ7A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBZQHDA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4IY4N7NO6JA33Z33QBNPQ7ANCNFSM4IHHCUOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5H5XHV4GPGDXSG23LQBNPQ7A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBZQHDA.gif" height="1" width="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/2931?email_source=notifications\u0026email_token=AFTOJKYBTDCMI2SMIZZ6EXLQBNPQ7A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBZQHDA",
"url": "https://github.com/quicwg/base-drafts/issues/2931?email_source=notifications\u0026email_token=AFTOJKYBTDCMI2SMIZZ6EXLQBNPQ7A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HBZQHDA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b678f46694_749e3fc21fecd9683031a5--


From nobody Fri Jul 26 15:18:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7CEA2120188 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:18:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ck5ByuPAUknb for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:18: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 61908120181 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 15:18:37 -0700 (PDT)
Date: Fri, 26 Jul 2019 15:18:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564179516; bh=gUCUsIaYE0Hww/ZwK/E+WQgdEabZ1jA2axCCn9227P0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v5xIWDzdeC2YwD2SPi4oIZq+Z7wADRGMCJHZNy5/aAM/gsEWEEP7uaP8Os71abzUd jFUxQOhJZbcfP9u5eB84wFzcCzlIl1mzggGkIO/6nsR9PxQeL6Am+itmtryL7cN37L 0jAq7wMZSlg7IbmcxZ8v2TWUd17rwLHe6mP1/6BU=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2IHPZFRKQORYDSXGF3JCXLZEVBNHHBYOMBYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2931/515615954@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2931@github.com>
References: <quicwg/base-drafts/issues/2931@github.com>
Subject: Re: [quicwg/base-drafts] Non-ACK-eliciting packets never need to be ACKed (#2931)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b7c3c896a2_8a23fcf90acd95c75637"; 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/9s4TNkM8Lsosgwc9yZtIDGxOdSI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 22:18:39 -0000

----==_mimepart_5d3b7c3c896a2_8a23fcf90acd95c75637
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Non-ack-eliciting packets do need to be ack'ed, they just don't trigger 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/2931#issuecomment-515615954
----==_mimepart_5d3b7c3c896a2_8a23fcf90acd95c75637
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Non-ack-eliciting packets do need to be ack'ed, they just don't trigger 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/2931?email_source=notifications&amp;email_token=AFTOJK7EGGHF2H5IL2DIPGTQBNZ3ZA5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD252ZUQ#issuecomment-515615954">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZV5CD4A2TOWVQDX5LQBNZ3ZANCNFSM4IHHCUOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EV6AUK5NNDS5JISDQBNZ3ZA5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD252ZUQ.gif" height="1" width="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/2931?email_source=notifications\u0026email_token=AFTOJK7EGGHF2H5IL2DIPGTQBNZ3ZA5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD252ZUQ#issuecomment-515615954",
"url": "https://github.com/quicwg/base-drafts/issues/2931?email_source=notifications\u0026email_token=AFTOJK7EGGHF2H5IL2DIPGTQBNZ3ZA5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD252ZUQ#issuecomment-515615954",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b7c3c896a2_8a23fcf90acd95c75637--


From nobody Fri Jul 26 15:26:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9862D120191 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:26:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oAOrLj9E8uOc for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:26:43 -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 9F1CF120222 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 15:26:43 -0700 (PDT)
Date: Fri, 26 Jul 2019 15:26:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564180002; bh=yNII6BFuj42ewuxQ2bfWwhV2S8ZrLRUDfU/H1KhOKoA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=e1ZeBpEuu8TaPnxtxeapTRwn9FLnBLRbfATYZFmUpenAzDuedXUYQHvI4r2G6trok q4YTils1D0UW0pYnR4q53556/n+LrNTnVtEMQ/B/e0GDbdjfBt+o0LBU0tWLGVO/HT giw5zH/oEzG+wZVHdhpd1w9u8Wi9NIlD1vvInmRE=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPM5NMCIQLH6LN44N3JCYKFEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515617560@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b7e22aa85f_cb93f9fbeccd95c1346a0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4DkM6OqMwuDwoR64j9NDttSB6cA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 22:26:58 -0000

----==_mimepart_5d3b7e22aa85f_cb93f9fbeccd95c1346a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann So we are saying the same thing. I do not see where you are disagreeing.  I said, verbatim:

> if the server does not support connection migration or knows that a particular client will not migrate, there is no need for a server to supply a non-zero-length CID, *when such a client supplies a zero-length CID*.

Both of us are agreeing that a client who is interested in multiplexing will *not* chose to use a zero-length client CID. Hence the server will also not use a zero-length server CID.

But when clients chose a zero-length client CID (making they will not multiplex on that 4-tuple), the server should be free to choose a zero-length server CID, if it does not support connection 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/2844#issuecomment-515617560
----==_mimepart_5d3b7e22aa85f_cb93f9fbeccd95c1346a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a> So we are saying the same thing. I do not see where you are disagreeing.  I said, verbatim:</p>
<blockquote>
<p>if the server does not support connection migration or knows that a particular client will not migrate, there is no need for a server to supply a non-zero-length CID, <em>when such a client supplies a zero-length CID</em>.</p>
</blockquote>
<p>Both of us are agreeing that a client who is interested in multiplexing will <em>not</em> chose to use a zero-length client CID. Hence the server will also not use a zero-length server CID.</p>
<p>But when clients chose a zero-length client CID (making they will not multiplex on that 4-tuple), the server should be free to choose a zero-length server CID, if it does not support connection 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/2844?email_source=notifications&amp;email_token=AFTOJK2CXS7JJW6AT6AEBATQBN22FA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD253GGA#issuecomment-515617560">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FFI4YAXZCTFV3ZIDQBN22FANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ53N3SHIYJ6PHVNLTQBN22FA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD253GGA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK2CXS7JJW6AT6AEBATQBN22FA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD253GGA#issuecomment-515617560",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK2CXS7JJW6AT6AEBATQBN22FA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD253GGA#issuecomment-515617560",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b7e22aa85f_cb93f9fbeccd95c1346a0--


From nobody Fri Jul 26 15:43:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CB50C12019D for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:43:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CQXSS9tZBLA6 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:43: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 4A5F912019C for <quic-issues@ietf.org>; Fri, 26 Jul 2019 15:43:01 -0700 (PDT)
Date: Fri, 26 Jul 2019 15:43:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564180980; bh=WLedeLCrhY3tzesTlV03TWncWqCJhyAsmVZISkEvfes=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RmBPRdr/CDX2XHAWufta4QGhnh6Tf2xNdf+wHhf1d9uek6gETY4i23NrIiffV0jvz NRRiG+c3RuLOD8jy8ntd1nU9YOsJpDvANJeiYAoEL4CeVNiis2bCerxSLhwRyrMNGX zgMWHkOkMi8B5HExsJrcqfSbu1t4uuo8OnLjD5i8=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZDZIMYASYBVPIH5CV3JC2HJEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515620497@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b81f480aaa_4aa93f9f024cd96c586ef"; 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/Llg8XmvEABVrk_S49WgL6aNke0o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 22:43:03 -0000

----==_mimepart_5d3b81f480aaa_4aa93f9f024cd96c586ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igorlord How does that work in practice? You can't use both zero-length and non-zero-length connection IDs on the same server without trial decryption. What happens when your first client uses zero-length-client-CIDs and you second one doesn't?

-- 
You are receiving 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/2844#issuecomment-515620497
----==_mimepart_5d3b81f480aaa_4aa93f9f024cd96c586ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=25256216" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/igorlord">@igorlord</a> How does that work in practice? You can't use both zero-length and non-zero-length connection IDs on the same server without trial decryption. What happens when your first client uses zero-length-client-CIDs and you second one doesn't?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK6ATUZZTLK2YTSPQPTQBN4XJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2535EI#issuecomment-515620497">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4GOLGPM6AOFN77OS3QBN4XJANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK64BD6SRW4U6ME73F3QBN4XJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2535EI.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK6ATUZZTLK2YTSPQPTQBN4XJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2535EI#issuecomment-515620497",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK6ATUZZTLK2YTSPQPTQBN4XJA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2535EI#issuecomment-515620497",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b81f480aaa_4aa93f9f024cd96c586ef--


From nobody Fri Jul 26 15:57:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1569E12019D for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:57:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EApKRTOoi_9E for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 15:57:18 -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 5821B12019C for <quic-issues@ietf.org>; Fri, 26 Jul 2019 15:57:18 -0700 (PDT)
Date: Fri, 26 Jul 2019 15:57:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564181837; bh=FHXxAGpG5LgSi8JVOJc1dbtqguARLZtaPUHajlpEd5k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=snzfy0JdohO/9qJPOOBmG7gzfI1z1MdA++D+u/VOm0KHT7DFJDO2mrT9dHWNXS2Rc 20dtzk/+4XSppSIbDKyTxmhpqX5JIagRr0mcVA+uItH7lh7AV/9FyyMO3/BG/Y41Vp 8MuQA6d1XUjqoke4U8F3IMLcY0lWw5JkwyZgwPEk=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2RTS67EHE7DIJYJR53JC343EVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515622963@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b854d63ed9_30dd3fe7462cd9648963d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Jc1lOhIadQd7zGjMwy6bvPfkUxk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 22:57:20 -0000

----==_mimepart_5d3b854d63ed9_30dd3fe7462cd9648963d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi You can use both on the same server, and no trial decryption is required.

```
Map < 4-tuple , connection_ctx > no_cid_connections_by_4_tuple;
Map < CID , connection_ctx > connections_by_cid;
```

The the incoming 4-tuple is found in `no_cid_connections_by_4_tuple`, use that connection_ctx.  Otherwise, assume there is a CID and look up in `connections_by_cid`.  That's 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/2844#issuecomment-515622963
----==_mimepart_5d3b854d63ed9_30dd3fe7462cd9648963d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=5599133" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> You can use both on the same server, and no trial decryption is required.</p>
<pre><code>Map &lt; 4-tuple , connection_ctx &gt; no_cid_connections_by_4_tuple;
Map &lt; CID , connection_ctx &gt; connections_by_cid;
</code></pre>
<p>The the incoming 4-tuple is found in <code>no_cid_connections_by_4_tuple</code>, use that connection_ctx.  Otherwise, assume there is a CID and look up in <code>connections_by_cid</code>.  That's all.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJKZJRFR56USPIDZKQJTQBN6M3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254QMY#issuecomment-515622963">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3364BLGKVK456LHQ3QBN6M3ANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK773QD6QOYB33PYRJLQBN6M3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254QMY.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJKZJRFR56USPIDZKQJTQBN6M3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254QMY#issuecomment-515622963",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJKZJRFR56USPIDZKQJTQBN6M3A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254QMY#issuecomment-515622963",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b854d63ed9_30dd3fe7462cd9648963d--


From nobody Fri Jul 26 16:01:51 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0755C12019C for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 16:01:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YRTLSvDTBzGx for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 16:01:48 -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 BA49C120191 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 16:01:48 -0700 (PDT)
Date: Fri, 26 Jul 2019 16:01:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564182108; bh=461Mu9MEJmVcd2jXFa3tdeUFT5/JLrMxxFzljpsdII4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cx3GSc+7fR6t1iTB8sgRy8SUtgyPjitY4oFPyIUaNYui5BW1KSNtOD1px1W3Y+yGf 3873Uw7gvdsnE5slGmHVcgzf7PGkbsAOgkcQdKQE7GJ86MFqX7olvZmueRpajgt/3j bE0rTD0kNJj/JsWnqKsZiGEwPfuQNrXwrk75cemY=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57MWZ5SVDZB2DNYZV3JC4NXEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515623740@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b865c2365_33293f8a478cd960212621"; 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/2kBcDefiRFK2HLeYX5rQQvPA7HA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 23:01:50 -0000

----==_mimepart_5d3b865c2365_33293f8a478cd960212621
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igorlord thanks for clarifying. I have to admit this approach does seem convoluted. What's the benefit of this over non-zero-length server connection IDs? (they have the advantage of surviving NAT rebinding)

-- 
You are receiving 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/2844#issuecomment-515623740
----==_mimepart_5d3b865c2365_33293f8a478cd960212621
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=25256216" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/igorlord">@igorlord</a> thanks for clarifying. I have to admit this approach does seem convoluted. What's the benefit of this over non-zero-length server connection IDs? (they have the advantage of surviving NAT rebinding)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK6H436BUJVSZV76WJ3QBN65ZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254WPA#issuecomment-515623740">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4GDPKUNERRV6ZVCFDQBN65ZANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XHSBLR66JK5ERYO3QBN65ZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254WPA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK6H436BUJVSZV76WJ3QBN65ZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254WPA#issuecomment-515623740",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK6H436BUJVSZV76WJ3QBN65ZA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD254WPA#issuecomment-515623740",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b865c2365_33293f8a478cd960212621--


From nobody Fri Jul 26 16:16:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9EF6C1201CF for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 16:16:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RUeXrJqslQjv for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 16:16: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 C571C1201C6 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 16:16:34 -0700 (PDT)
Date: Fri, 26 Jul 2019 16:16:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564182993; bh=3fiBMFRcKZCXBGKWD9h/HgPymuUlQR/NwjR+e+Lf47c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AahSVZoCB4oiZKdE4ZV+Vq95vWiZWRzpL1BqPNKAFyXU8Tb8v3zUdDQ73u66cHQxS 67tQwqN/ltdJduOcRksuKwfiFZqriFmYVziHjiZrEFRjGO8QOxvcKS/tVfNNAlfZP5 AYR2qasPJonwoUHoOVf5upzb0GEJDGFUAHCjeP44=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6FOZVPRGAE5LC46YV3JC6FDEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515626185@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b89d1b08ef_50843fc8508cd964798b1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KvPBKss5Vrrq-nGgbDFJhiOxxJQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 26 Jul 2019 23:16:37 -0000

----==_mimepart_5d3b89d1b08ef_50843fc8508cd964798b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi **Short answer**: saving bytes on the wire.

**Long answer**:

A server may need to support both regular clients (so using a server CID) as well as peer servers in the datacenter (or some SDN). It may be trivial to identify such peers (anyone using 10.0.0.0/8), so why waste CID in each packet when talking to 10.0.0.0/8 machines?  Moreover, QUIC now supports huge Server CIDs (up to 20 bytes), and if that's what's needed for regular clients, that's wasting 20 bytes per packet on internal communications.

-- 
You are receiving 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/2844#issuecomment-515626185
----==_mimepart_5d3b89d1b08ef_50843fc8508cd964798b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=5599133" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> <strong>Short answer</strong>: saving bytes on the wire.</p>
<p><strong>Long answer</strong>:</p>
<p>A server may need to support both regular clients (so using a server CID) as well as peer servers in the datacenter (or some SDN). It may be trivial to identify such peers (anyone using 10.0.0.0/8), so why waste CID in each packet when talking to 10.0.0.0/8 machines?  Moreover, QUIC now supports huge Server CIDs (up to 20 bytes), and if that's what's needed for regular clients, that's wasting 20 bytes per packet on internal communications.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK4L3227ATZFD4HVRBDQBOAVDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD255JSI#issuecomment-515626185">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GB4RF7N35ACCJWWTQBOAVDANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSBOMUMP5PKF2WSYTQBOAVDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD255JSI.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK4L3227ATZFD4HVRBDQBOAVDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD255JSI#issuecomment-515626185",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK4L3227ATZFD4HVRBDQBOAVDA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD255JSI#issuecomment-515626185",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b89d1b08ef_50843fc8508cd964798b1--


From nobody Fri Jul 26 17:46:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 005881201D3 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 17:46:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id A820874T3LaG for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 17:46: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 7970A1201D7 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 17:46:31 -0700 (PDT)
Date: Fri, 26 Jul 2019 17:46:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564188390; bh=GZzB9Ue2TF6unwDQTUruPTVJVPv9eopeV23HkmzOGZI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vwzzghSDacxvSm+Z2s5n8ZG+24ktlxBiwspop1VfiqGZHDtaXc8kxuPHllApMfTEH H3Wvoc6UuhFE5RHAMEDaiMW4yQmOYjyjVWOkExPf0NrxNNp2rrK7+ZIrcmitoKgSq3 UZxYOmna+/x5XnBqOutsppOjPg4QAvhyYPyVdECs=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZ2OO3F5XAMVAQF4V3JDIWNEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515637483@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3b9ee66f3b8_396f3fc116ecd9689792e"; 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/W8jcCo44QJIe_PsIRIP7z-2FfoY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Jul 2019 00:46:33 -0000

----==_mimepart_5d3b9ee66f3b8_396f3fc116ecd9689792e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igorlord I think no one would stop you from doing something like what you describe in [your comment](https://github.com/quicwg/base-drafts/issues/2844#issuecomment-515622963).

However, most of us do not want to be forced do something as complex as that. Therefore, we are trying to clarify when the 4-tuple can be used by the server for identifying the connections.

If it is your intent is to ensure that your mixed approach is allowed _as one of the approaches_, then I think we can clarify that in #2851 (I think it's already implied).

-- 
You are receiving 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/2844#issuecomment-515637483
----==_mimepart_5d3b9ee66f3b8_396f3fc116ecd9689792e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=25256216" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/igorlord">@igorlord</a> I think no one would stop you from doing something like what you describe in <a href="https://github.com/quicwg/base-drafts/issues/2844#issuecomment-515622963" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2844/hovercard">your comment</a>.</p>
<p>However, most of us do not want to be forced do something as complex as that. Therefore, we are trying to clarify when the 4-tuple can be used by the server for identifying the connections.</p>
<p>If it is your intent is to ensure that your mixed approach is allowed <em>as one of the approaches</em>, then I think we can clarify that in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="461188950" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2851" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2851/hovercard" href="https://github.com/quicwg/base-drafts/pull/2851">#2851</a> (I think it's already implied).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2844?email_source=notifications&amp;email_token=AFTOJK7ROVT4CLHJWL2KNYDQBOLGNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26AB2Y#issuecomment-515637483">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK75BBDAV6OJ254FKJ3QBOLGNANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZW6GM7GAFABTMH4R3QBOLGNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26AB2Y.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK7ROVT4CLHJWL2KNYDQBOLGNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26AB2Y#issuecomment-515637483",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK7ROVT4CLHJWL2KNYDQBOLGNA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26AB2Y#issuecomment-515637483",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3b9ee66f3b8_396f3fc116ecd9689792e--


From nobody Fri Jul 26 19:10:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2F0111201FA for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 19:10:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QSfiflboDV-i for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 19:09:59 -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 7089A1201D9 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 19:09:59 -0700 (PDT)
Date: Fri, 26 Jul 2019 19:09:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564193398; bh=YkB3z4w/VXpAyDBZlnZY0H55Bxh4UBMJp99IJK5yeDY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V5WQL4XO7tX8S07l61slGr+y+xZGundiNPm9dlqzDyQB5j5k4Qw4R7s6E/qkOxF7e vQjdyOtiClpZgmoJAJk7YM5vfuRitkmnWnwjyPtvqlBEOgeCuqBEyDvdAPZFwfP7/o T2d1DDsp1jXpxN8M0bqMP1V01ozB6ql+sOQAcKtg=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3NOO3ZNUBQRYES6SN3JDSPNEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515643427@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3bb27681c8f_37e43fc63d0cd968113494"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DozsnmJT4AGDhmyRpfTfPemEG38>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Jul 2019 02:10:02 -0000

----==_mimepart_5d3bb27681c8f_37e43fc63d0cd968113494
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho This discussion is about not arbitrarily forbidding something that is useful. Of course different implementations will chose to do what they need to do. Once the implementation is deployed at scale, people tend to look for ways to find even 1% improvements.

I am puzzled why you think it is "complex", though.

Is it that much more complex to do

```connection = by_4tuple[pkt.4tuple()] ? : by_cid[pkt.cid()];```

than

```connection b by_cid[pkt.cid()];```

-- 
You are receiving 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/2844#issuecomment-515643427
----==_mimepart_5d3bb27681c8f_37e43fc63d0cd968113494
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> This discussion is about not arbitrarily forbidding something that is useful. Of course different implementations will chose to do what they need to do. Once the implementation is deployed at scale, people tend to look for ways to find even 1% improvements.</p>
<p>I am puzzled why you think it is "complex", though.</p>
<p>Is it that much more complex to do</p>
<p><code>connection = by_4tuple[pkt.4tuple()] ? : by_cid[pkt.cid()];</code></p>
<p>than</p>
<p><code>connection b by_cid[pkt.cid()];</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/2844?email_source=notifications&amp;email_token=AFTOJKZBIRJFYJEF3F4TM33QBOU7NA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26BQIY#issuecomment-515643427">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2Q22GWQFPAOZPMOI3QBOU7NANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ4FTCD7LVM3HK2TI3QBOU7NA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26BQIY.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJKZBIRJFYJEF3F4TM33QBOU7NA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26BQIY#issuecomment-515643427",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJKZBIRJFYJEF3F4TM33QBOU7NA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26BQIY#issuecomment-515643427",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3bb27681c8f_37e43fc63d0cd968113494--


From nobody Fri Jul 26 23:32:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 53E49120121 for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 23:32:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hkeg1rBG1fRb for <quic-issues@ietfa.amsl.com>; Fri, 26 Jul 2019 23:31: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 490F5120106 for <quic-issues@ietf.org>; Fri, 26 Jul 2019 23:31:59 -0700 (PDT)
Date: Fri, 26 Jul 2019 23:31:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564209118; bh=LTIfVA2BUwoexc2+bS0XNmWMvMNH5gyM+a9JApm4tLU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=E1r6MZe6t7SyGtxRPaoTV2a2swwgevHG3fewnjzwtJtj4slPqu/HafA8Q+E64g7mn mU/0U+IujVBD42aVOXPX75rFgdssSONMeRFdgFiigt82ZylGGy62cxGkqv0dy3m73Q d7IK3woLQ7crhMxJM+KQaKUyEa1p+nMjv27uoL9c=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKVQMYCG5OCRMHBL53JERF5EVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515657133@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3befde48e2b_42233f8294acd96447385f"; 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/UgG1Ixkp-QudaVe_-3L6pDt3a9M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Jul 2019 06:32:02 -0000

----==_mimepart_5d3befde48e2b_42233f8294acd96447385f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igorlord 
> This discussion is about not arbitrarily forbidding something that is useful. 

Thank you for the clarification. Assuming that we can give clients the freedom coalesce multiple connections onto a single 5-tuple, I do not have a strong argument against giving servers some wiggle room.

> I am puzzled why you think it is "complex", though.
> 
> Is it that much more complex to do
> 
> `connection = by_4tuple[pkt.4tuple()] ? : by_cid[pkt.cid()];`
> 
> than
> 
> `connection = by_cid[pkt.cid()];`

I think it is more complex than that.

The approach you are describing can be modeled as a daisy-chain of two QUIC servers.

What would the server do if there is no corresponding state for a short header packet that you receive, neither in `by_4tuple` nor `by_cid`?

The server needs to send a stateless reset. But because the server cannot tell if the packet were to be identified by the 4-tuple or the CID (because you no longer have state!), the server needs to send two stateless reset packets, one generated using the 4-tuple as the key, and the other generated using the CID. However, simply doing that could lead to an amplification attack (as we know, the amount of data (or packets) the server can send as a reset needs to be smaller than the amount of data that the server has received).

This _might_ be a problem htat we want to solve. But is it worth spending the time of the WG to discuss such thing? I'm not sure.

And I'm not sure if this is the only problem that exists in the proposed 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/2844#issuecomment-515657133
----==_mimepart_5d3befde48e2b_42233f8294acd96447385f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=25256216" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/igorlord">@igorlord</a></p>
<blockquote>
<p>This discussion is about not arbitrarily forbidding something that is useful.</p>
</blockquote>
<p>Thank you for the clarification. Assuming that we can give clients the freedom coalesce multiple connections onto a single 5-tuple, I do not have a strong argument against giving servers some wiggle room.</p>
<blockquote>
<p>I am puzzled why you think it is "complex", though.</p>
<p>Is it that much more complex to do</p>
<p><code>connection = by_4tuple[pkt.4tuple()] ? : by_cid[pkt.cid()];</code></p>
<p>than</p>
<p><code>connection = by_cid[pkt.cid()];</code></p>
</blockquote>
<p>I think it is more complex than that.</p>
<p>The approach you are describing can be modeled as a daisy-chain of two QUIC servers.</p>
<p>What would the server do if there is no corresponding state for a short header packet that you receive, neither in <code>by_4tuple</code> nor <code>by_cid</code>?</p>
<p>The server needs to send a stateless reset. But because the server cannot tell if the packet were to be identified by the 4-tuple or the CID (because you no longer have state!), the server needs to send two stateless reset packets, one generated using the 4-tuple as the key, and the other generated using the CID. However, simply doing that could lead to an amplification attack (as we know, the amount of data (or packets) the server can send as a reset needs to be smaller than the amount of data that the server has received).</p>
<p>This <em>might</em> be a problem htat we want to solve. But is it worth spending the time of the WG to discuss such thing? I'm not sure.</p>
<p>And I'm not sure if this is the only problem that exists in the proposed 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/2844?email_source=notifications&amp;email_token=AFTOJK2Y4ADYSDTYNBZRRRDQBPTV5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26E3LI#issuecomment-515657133">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4S5L2XOOA3ZTDAH3DQBPTV5ANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZG3CS4IVHIJ6R5HJ3QBPTV5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26E3LI.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK2Y4ADYSDTYNBZRRRDQBPTV5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26E3LI#issuecomment-515657133",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK2Y4ADYSDTYNBZRRRDQBPTV5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26E3LI#issuecomment-515657133",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3befde48e2b_42233f8294acd96447385f--


From nobody Sat Jul 27 01:04:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 3B20F120251 for <quic-issues@ietfa.amsl.com>; Sat, 27 Jul 2019 01:04:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fD6LNlDu9WGO for <quic-issues@ietfa.amsl.com>; Sat, 27 Jul 2019 01:04: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 88470120106 for <quic-issues@ietf.org>; Sat, 27 Jul 2019 01:04:06 -0700 (PDT)
Date: Sat, 27 Jul 2019 01:04:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564214645; bh=eBFEr9mZyzhEe/Z08JfVX5aQPus/l2O9PnuC8Nfaxio=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ch5dk8Bu5tlYKwfGeB/yBTAb/3RvkfJJgUUp1+mh28bS0LQ9uyzgmrxs1t5lxfWtt ieQ9fC7G/EjRSsSwBfYL0nPdSBE0JSrgEh7F76dtFCLUji7C1HM/GsoYjQYkADhZX9 ncGm4+rvTbMx1XjkIhQSeUyaTFrXvBheGK2NqbtI=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZYMTMSFCGMNMHBZ3V3JE37LEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/515664068@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3c05757fb4d_72dc3f9eda0cd95c4254bd"; 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/0iXeib2tqL_vWWWJHnJOrdrOnqA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Jul 2019 08:04:09 -0000

----==_mimepart_5d3c05757fb4d_72dc3f9eda0cd95c4254bd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> However, simply doing that could lead to an amplification attack (as we
know, the amount of data (or packets) the server can send as a reset needs
to be smaller than the amount of data that the server has received).

The main reason for this is not amplification but because it could lead to
infinite reset loops. This could be by mistake, or by deliberate injection
of packets to trigger this behaviour.

Mikkel

On 27 July 2019 at 08.31.52, Kazuho Oku (notifications@github.com) wrote:

However, simply doing that could lead to an amplification attack (as we
know, the amount of data (or packets) the server can send as a reset needs
to be smaller than the amount of data that the server has received).


-- 
You are receiving 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/2844#issuecomment-515664068
----==_mimepart_5d3c05757fb4d_72dc3f9eda0cd95c4254bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

&gt; However, simply doing that could lead to an amplification attack (as we<br>
know, the amount of data (or packets) the server can send as a reset needs<br>
to be smaller than the amount of data that the server has received).<br>
<br>
The main reason for this is not amplification but because it could lead to<br>
infinite reset loops. This could be by mistake, or by deliberate injection<br>
of packets to trigger this behaviour.<br>
<br>
Mikkel<br>
<br>
On 27 July 2019 at 08.31.52, Kazuho Oku (notifications@github.com) wrote:<br>
<br>
However, simply doing that could lead to an amplification attack (as we<br>
know, the amount of data (or packets) the server can send as a reset needs<br>
to be smaller than the amount of data that the server has received).<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/2844?email_source=notifications&amp;email_token=AFTOJK3QWFPLILQSVZCREXDQBP6PLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26GRRA#issuecomment-515664068">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQDURV7UKC2RTE2ULQBP6PLANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SODQ76DKKKLTGZB3QBP6PLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26GRRA.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK3QWFPLILQSVZCREXDQBP6PLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26GRRA#issuecomment-515664068",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK3QWFPLILQSVZCREXDQBP6PLA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD26GRRA#issuecomment-515664068",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3c05757fb4d_72dc3f9eda0cd95c4254bd--


From nobody Mon Jul 29 05:51:13 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 732C512014F for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 05:51:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.908
X-Spam-Level: 
X-Spam-Status: No, score=-6.908 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vF5N68Mg-6CW for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 05:51: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 03DA51200F8 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 05:51:09 -0700 (PDT)
Date: Mon, 29 Jul 2019 05:51:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564404669; bh=Am8A4o6Ah9Hm2q9MiwcD5zyfP0VN8OdzVsLkYaRBwGk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qUt6QQfxd9fILHSpBckM9nW40MsQBubHBMnpzZqEdqiiiBWtMrEnLrgXQkgREjoOs 5jE+YC89uzRTemk7gmhLLGMtRgn7LIWqAA1ns9XXYGX/k1WZPWvnH6yLIj90rCt9qC xF0uKYPzsj6P9Qy0nnGF/MVeNYCZ0tOki/oOlR54=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYLYSWIFEB4P5DAPZF3JQPD3EVBNHHBYOMBYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2931/515978031@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2931@github.com>
References: <quicwg/base-drafts/issues/2931@github.com>
Subject: Re: [quicwg/base-drafts] Non-ACK-eliciting packets never need to be ACKed (#2931)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3eebbd19609_4a623fb4ba2cd96414026c"; 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/DJ0Qww-rDTmgBG5_ZkV2z-D-ynI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 12:51:12 -0000

----==_mimepart_5d3eebbd19609_4a623fb4ba2cd96414026c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

OK -- closing.

-- 
You are receiving 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/2931#issuecomment-515978031
----==_mimepart_5d3eebbd19609_4a623fb4ba2cd96414026c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>OK -- closing.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2931?email_source=notifications&amp;email_token=AFTOJKZGB2FN5J2D75IKUNLQB3RT3A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3ATGLY#issuecomment-515978031">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2FURJ27MSTNCJHPSDQB3RT3ANCNFSM4IHHCUOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK225DN4BKFT6AGHM7LQB3RT3A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3ATGLY.gif" height="1" width="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/2931?email_source=notifications\u0026email_token=AFTOJKZGB2FN5J2D75IKUNLQB3RT3A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3ATGLY#issuecomment-515978031",
"url": "https://github.com/quicwg/base-drafts/issues/2931?email_source=notifications\u0026email_token=AFTOJKZGB2FN5J2D75IKUNLQB3RT3A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3ATGLY#issuecomment-515978031",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3eebbd19609_4a623fb4ba2cd96414026c--


From nobody Mon Jul 29 05:51:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A9BAD12014F for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 05:51:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KB-QL3Uh78b4 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 05:51:11 -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 2975F120142 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 05:51:11 -0700 (PDT)
Date: Mon, 29 Jul 2019 05:51:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564404670; bh=kuwPty75CdPPTafc4G6pRFOrxzTBm2ukalil60HnGA4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rideauVRECgqgxAgKwS/fnVF4hG0AkZY9etApiKLvZwX81raV3APv1W65tLlp+22R uVHbT5frr1D0nh52rw31VhbCic/svk1r1wW/MhXLTI9hfwC/UNHqrp3QMtxAwNHxK7 eyku1qD+cictYJZw/O9g5Q7s74CnA9lPs6JEyFHY=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZCWNSSTHLNN7OQ5Y53JQPD5EVBNHHBYOMBYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2931/issue_event/2516379638@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2931@github.com>
References: <quicwg/base-drafts/issues/2931@github.com>
Subject: Re: [quicwg/base-drafts] Non-ACK-eliciting packets never need to be ACKed (#2931)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3eebbe59dda_21093ff2952cd96418923"; 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/ijhbzqQnP8V1BGuFAd9aJVoCYXo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 12:51:13 -0000

----==_mimepart_5d3eebbe59dda_21093ff2952cd96418923
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2931.

-- 
You are receiving 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/2931#event-2516379638
----==_mimepart_5d3eebbe59dda_21093ff2952cd96418923
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="473530822" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2931" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2931/hovercard" href="https://github.com/quicwg/base-drafts/issues/2931">#2931</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/2931?email_source=notifications&amp;email_token=AFTOJK4FKY3WZ24OYSO5UNLQB3RT5A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSX6OP5Q#event-2516379638">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZEVKLXRE3SHVOUZVLQB3RT5ANCNFSM4IHHCUOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6Y4VMXO4N6UNR2Q6LQB3RT5A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSX6OP5Q.gif" height="1" width="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/2931?email_source=notifications\u0026email_token=AFTOJK4FKY3WZ24OYSO5UNLQB3RT5A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSX6OP5Q#event-2516379638",
"url": "https://github.com/quicwg/base-drafts/issues/2931?email_source=notifications\u0026email_token=AFTOJK4FKY3WZ24OYSO5UNLQB3RT5A5CNFSM4IHHCUO2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSX6OP5Q#event-2516379638",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3eebbe59dda_21093ff2952cd96418923--


From nobody Mon Jul 29 07:21:57 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 008001200C4 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:21:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wjqw8t7Pw9lG for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:21: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 7C0B11200B5 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 07:21:53 -0700 (PDT)
Date: Mon, 29 Jul 2019 07:21:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564410112; bh=XCqhk1d0hP7H9U4eg7ZKRCayKB2+cUi2Xi7o5Eusgbs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Auu4gTBwVK+jJc0TCa5HVfl/+Hj1n+HCtLpBUb0tOYZG2+4aUzan/1ipUNBW1gyIc HOMG/ZuBxIYlmi0hBNPFVYlfwwp9INSEemF5nE8NRIYeRelAr2BcmabxPHi4urT16d qeA2lz9AW/GWSqsqy7uYPks/FqrrwhaRw3m6TooI=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6K7VYEWPEQVGIWOJV3JQZYBEVBNHHBYJUACY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2929/review/267816886@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2929@github.com>
References: <quicwg/base-drafts/pull/2929@github.com>
Subject: Re: [quicwg/base-drafts] Minor clarification. Fixes #2084 (#2929)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f01006a873_309a3fdb954cd96076776"; 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/yu9P8S4ZhWhCEs20Q_5CZWyLfmc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 14:21:55 -0000

----==_mimepart_5d3f01006a873_309a3fdb954cd96076776
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MikeBishop approved this pull request.

Looks fine.  This paragraph is wrapped to a shorter line-length than the standard for the document.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2929#pullrequestreview-267816886
----==_mimepart_5d3f01006a873_309a3fdb954cd96076776
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@MikeBishop</b> approved this pull request.</p>

<p>Looks fine.  This paragraph is wrapped to a shorter line-length than the standard for the document.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications&amp;email_token=AFTOJKYG4IGTI3Y55Z4RPZLQB34IBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73I7NQ#pullrequestreview-267816886">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZWAQGUFL64C32CJDQB34IBANCNFSM4IGQC4MA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVYZO5QI2RY2H5QALQB34IBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73I7NQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJKYG4IGTI3Y55Z4RPZLQB34IBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73I7NQ#pullrequestreview-267816886",
"url": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJKYG4IGTI3Y55Z4RPZLQB34IBA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73I7NQ#pullrequestreview-267816886",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f01006a873_309a3fdb954cd96076776--


From nobody Mon Jul 29 07:25:54 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 91F7E1200C4 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:25:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oVoRTbqVW7T1 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:25: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 B44401200B5 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 07:25:51 -0700 (PDT)
Date: Mon, 29 Jul 2019 07:25:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564410351; bh=013b7778dkp7CESeNNe/aJRid3dIBwXoFotBB4yvrv4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WGQ31UDCzki/mxImWAJ+Ohd02OLKJPP3mkUi158KOObFheELrR9+wzqA36ub2vjTE B9NLwriUNDqD/deQsqVHeaCQEotJvGBsZL1jUqqKUlOeARIXNvGBFXglrTAqqIHhN0 qpS1qgmHSN6YhmPwPDBkXwRTlUPTcCYPWVlavwms=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4X6JL5TVQPGQ62EKF3JQ2G5EVBNHHBYHMRI4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2927/review/267818042@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f01eeee1f1_5d5d3fa25aacd9602351fa"; 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/CB3yZJ9-0FXHkwFWoDnqRQlsKX0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 14:25:53 -0000

----==_mimepart_5d3f01eeee1f1_5d5d3fa25aacd9602351fa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MikeBishop approved this pull request.



> @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable

Needing "at least 48 bits" isn't a requirement to "be smaller than the received packet."  This addition doesn't compute.

> @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 48 bits of data (or 6 bytes, less the
+two fixed bits).  To ensure the stateless reset packet is not smaller than
+other packets received on the connection, an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 22 bytes.

Defer to @martinthomson on the styling, but perhaps spell out "plus" 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/2927#pullrequestreview-267818042
----==_mimepart_5d3f01eeee1f1_5d5d3fa25aacd9602351fa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@MikeBishop</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2927#discussion_r308258457">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
</pre>
<p>Needing "at least 48 bits" isn't a requirement to "be smaller than the received packet."  This addition doesn't compute.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2927#discussion_r308259835">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 48 bits of data (or 6 bytes, less the
+two fixed bits).  To ensure the stateless reset packet is not smaller than
+other packets received on the connection, an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 22 bytes.
</pre>
<p>Defer to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=67641" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> on the styling, but perhaps spell out "plus" 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/2927?email_source=notifications&amp;email_token=AFTOJK6VEXWM3NVXNKPYL6LQB34W5A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73JIOQ#pullrequestreview-267818042">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FRLOR63WY2EGXTLLQB34W5ANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34XEKMP3VT6PVKXADQB34W5A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73JIOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK6VEXWM3NVXNKPYL6LQB34W5A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73JIOQ#pullrequestreview-267818042",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK6VEXWM3NVXNKPYL6LQB34W5A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73JIOQ#pullrequestreview-267818042",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f01eeee1f1_5d5d3fa25aacd9602351fa--


From nobody Mon Jul 29 07:28:32 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2B8F3120124 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:28:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gvkTRjoRzqE3 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:28: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 8CBDA12014F for <quic-issues@ietf.org>; Mon, 29 Jul 2019 07:28:26 -0700 (PDT)
Date: Mon, 29 Jul 2019 07:28:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564410505; bh=3oDEj7xnlLWuMJ0tbUKhiGVjBH9DnqFLfSqv3+sMjXQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QAbqICqcX+49rZMieIbTWACf2G/JmSIpsXxEzfOjunvgFmIjK2WAyi5wJQC/xtJDO UOosJ1jOSBAeCVSYsnb5sGNl+kPHtIaq+bZS8RQst7xDNMj2Gcu4oDjDLy/0ioxxo5 QktCEMvyaa/EygUdAt/fvLqfWI+I/5yxZFkx2ZlA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5Y6OOYJMTIALTYTBV3JQ2QTEVBNHHBYJUACY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2929/review/267821674@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2929@github.com>
References: <quicwg/base-drafts/pull/2929@github.com>
Subject: Re: [quicwg/base-drafts] Minor clarification. Fixes #2084 (#2929)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f0289d30b8_32ea3f824c6cd9602594d5"; 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/jGNu0Bep6jiP30pBN148nIhG_UI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 14:28:30 -0000

----==_mimepart_5d3f0289d30b8_32ea3f824c6cd9602594d5
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/2929#pullrequestreview-267821674
----==_mimepart_5d3f0289d30b8_32ea3f824c6cd9602594d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2929?email_source=notifications&amp;email_token=AFTOJK2J3HGW6CSK4TY36ZTQB35ATA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KE2Q#pullrequestreview-267821674">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK55UX2PGN7KBF4DF3TQB35ATANCNFSM4IGQC4MA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZS25QM5PMZIAUJQ7DQB35ATA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KE2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJK2J3HGW6CSK4TY36ZTQB35ATA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KE2Q#pullrequestreview-267821674",
"url": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJK2J3HGW6CSK4TY36ZTQB35ATA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KE2Q#pullrequestreview-267821674",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f0289d30b8_32ea3f824c6cd9602594d5--


From nobody Mon Jul 29 07:48:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1C141120133 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:47:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: 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-ddi4ZCyWSo for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:47: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 B5395120127 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 07:47:55 -0700 (PDT)
Date: Mon, 29 Jul 2019 07:47:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564411674; bh=IEA3TsqGQjDdQgQ9H+AKhnhMejkTmBOAOFK0UIYSm1k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uw2bJDrtCYKgvOL0Za1Fxd1dNKJmMf4tNZL5v8l5Kk8ht4Zm2EwrSndM6RnQldqOP 5te/Zqmv0lffM/+PeKe+MBUMIrTKB4SA+1OKJSmbNv2kBlqNTMoyhE4PiIeuy+1Mlj lYupFFS6LH2dlTdz4UH9pVjrTZnF6eKjJZkyY8g0=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XYXWJHRIL6IDY3SN3JQ4ZVEVBNHHBYGSUE4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925/review/267821344@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2925@github.com>
References: <quicwg/base-drafts/pull/2925@github.com>
Subject: Re: [quicwg/base-drafts] Add initial threat model appendix (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f071ab99fe_69b53f7e394cd960548a4"; 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/SOmyLHsIEG5GRqsNX5HscPc-Kjo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 14:47:58 -0000

----==_mimepart_5d3f071ab99fe_69b53f7e394cd960548a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MikeBishop approved this pull request.



> @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.

...and perhaps file an issue for that other use of "we."

> +
+An on-path attacker is present between the QUIC client and server, and an
+endpoint is required to send packets through this attacker to establish
+connectivity on a given path.
+
+An on-path attacker can:
+
+- Inspect packets
+- Modify unencrypted packet headers
+- Inject new packets
+- Delay packets
+- Drop packets
+
+An on-path attacker cannot:
+
+- Modify encrypted packet payloads

Well, they can, but the packets will no longer be accepted as valid, which is part of this threat model and mitigation.  Also, you don't discuss the unencrypted, but authenticated, portions of the headers.  Perhaps you should frame the capabilities in terms of what they can do to authenticated portions of the packet, and note that the payload is both encrypted *and* authenticated?

> +or other methods.
+
+2. An on-path attacker can prevent migration to a new path for which the
+attacker is also on-path by causing path validation to fail on the new path.
+
+3. An on-path attacker cannot prevent a client from migrating to a path for
+which the attacker is not on-path.
+
+4. An on-path attacker can reduce the throughput of a connection by delaying
+packets or dropping them.
+
+
+### Off-Path Attacker
+
+An off-path attacker is not directly on the path between the QUIC client and
+server, but is able to obtain copies of all packets sent between the client and

Perhaps change this to "may be able to obtain copies of some or all packets sent between the client and the server"?  Certainly there are subclasses of off-path attackers who see no traffic (inject-only) or who get only a partial view (e.g. eavesdropping on only one direction, one path, etc.).

> +- Delay packets
+- Drop packets
+
+An off-path attacker can, however, modify packets that it has observed and
+inject them back into the network, potentially with spoofed source and
+destination addresses.
+
+For the purposes of this discussion, we assume that an off-path attacker has the
+ability to observe, modify, and re-inject a packet into the network that will
+reach the destination endpoint prior to the arrival of the original packet
+observed by the attacker.  In other words, the attacker has the ability to
+consistently "win" a race with the legitimate packets between the endpoints,
+potentially causing the original packet to be ignored by the recipient.
+
+We also assume that the attacker has the resources necessary to affect NAT
+state, potentially both causing an endpoint to lose its NAT binding, and an

Pick "the" or "an" here.  Jumping back and forth is throwing me; if there's a pattern, I'm not able to intuit 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/2925#pullrequestreview-267821344
----==_mimepart_5d3f071ab99fe_69b53f7e394cd960548a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@MikeBishop</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r308261093">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5753,13 +5753,184 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
    return candidate_pn
 ~~~
 
+# Overview of Security Properties {#security-properties}
+
+A complete security analysis of QUIC is outside the scope of this document.  In
+this appendix, we provide an informal description of the desired security
+properties as an aid to implementors and to help guide protocol analysis.
+
+We cover properties of the handshake, general transport, and migration
+separately.
</pre>
<p>...and perhaps file an issue for that other use of "we."</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r308262710">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+An on-path attacker is present between the QUIC client and server, and an
+endpoint is required to send packets through this attacker to establish
+connectivity on a given path.
+
+An on-path attacker can:
+
+- Inspect packets
+- Modify unencrypted packet headers
+- Inject new packets
+- Delay packets
+- Drop packets
+
+An on-path attacker cannot:
+
+- Modify encrypted packet payloads
</pre>
<p>Well, they can, but the packets will no longer be accepted as valid, which is part of this threat model and mitigation.  Also, you don't discuss the unencrypted, but authenticated, portions of the headers.  Perhaps you should frame the capabilities in terms of what they can do to authenticated portions of the packet, and note that the payload is both encrypted <em>and</em> authenticated?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r308265419">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +or other methods.
+
+2. An on-path attacker can prevent migration to a new path for which the
+attacker is also on-path by causing path validation to fail on the new path.
+
+3. An on-path attacker cannot prevent a client from migrating to a path for
+which the attacker is not on-path.
+
+4. An on-path attacker can reduce the throughput of a connection by delaying
+packets or dropping them.
+
+
+### Off-Path Attacker
+
+An off-path attacker is not directly on the path between the QUIC client and
+server, but is able to obtain copies of all packets sent between the client and
</pre>
<p>Perhaps change this to "may be able to obtain copies of some or all packets sent between the client and the server"?  Certainly there are subclasses of off-path attackers who see no traffic (inject-only) or who get only a partial view (e.g. eavesdropping on only one direction, one path, etc.).</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r308270796">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +- Delay packets
+- Drop packets
+
+An off-path attacker can, however, modify packets that it has observed and
+inject them back into the network, potentially with spoofed source and
+destination addresses.
+
+For the purposes of this discussion, we assume that an off-path attacker has the
+ability to observe, modify, and re-inject a packet into the network that will
+reach the destination endpoint prior to the arrival of the original packet
+observed by the attacker.  In other words, the attacker has the ability to
+consistently &quot;win&quot; a race with the legitimate packets between the endpoints,
+potentially causing the original packet to be ignored by the recipient.
+
+We also assume that the attacker has the resources necessary to affect NAT
+state, potentially both causing an endpoint to lose its NAT binding, and an
</pre>
<p>Pick "the" or "an" here.  Jumping back and forth is throwing me; if there's a pattern, I'm not able to intuit 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/2925?email_source=notifications&amp;email_token=AFTOJK3XI6S3LWHP3DOOVMTQB37JVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KCIA#pullrequestreview-267821344">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQGYT2VIRWIC6XLRLQB37JVANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2V6XH6BKSCH4MENE3QB37JVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KCIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK3XI6S3LWHP3DOOVMTQB37JVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KCIA#pullrequestreview-267821344",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK3XI6S3LWHP3DOOVMTQB37JVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73KCIA#pullrequestreview-267821344",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f071ab99fe_69b53f7e394cd960548a4--


From nobody Mon Jul 29 07:54:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B65FB120133 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:54:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zSffXx8sAbye for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 07:54: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 3A69C120127 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 07:54:26 -0700 (PDT)
Date: Mon, 29 Jul 2019 07:54:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564412065; bh=0KIZQrXhpOmcGb4r7+L0TKFrdqjPNFo+4JqVn9lrjoY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0oo1kXsbg2sC6vvX1jZfV/OZHk3iWqKPfo+ri39YBncDY06LSLT2iyLrCfTOxmn5M Eg9nSHdn0maM+YfzZL+LkC/VXPN4xZd7L9BeX0OFu++cicE/xtq50s4VgfHO+iTvxB HPPlDjCOZjVCJqoZnciIqpgz2VpeYzkSkf7xh4z4=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6J2YQOOEPEYAGFZH53JQ5SDEVBNHHBYJUACY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2929/review/267839906@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2929@github.com>
References: <quicwg/base-drafts/pull/2929@github.com>
Subject: Re: [quicwg/base-drafts] Minor clarification. Fixes #2084 (#2929)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f08a171fc4_29bb3fa08f6cd968121289"; 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/QmGLyla3Vfqi9S5dOsYIe7yk6BQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 14:54:28 -0000

----==_mimepart_5d3f08a171fc4_29bb3fa08f6cd968121289
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/2929#pullrequestreview-267839906
----==_mimepart_5d3f08a171fc4_29bb3fa08f6cd968121289
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2929?email_source=notifications&amp;email_token=AFTOJK7GQLJNNH35FYC27GTQB4ACDA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73OTIQ#pullrequestreview-267839906">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4XEXG76MXQJZZ5RI3QB4ACDANCNFSM4IGQC4MA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZXLQW7QQFXPIOR2ATQB4ACDA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73OTIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJK7GQLJNNH35FYC27GTQB4ACDA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73OTIQ#pullrequestreview-267839906",
"url": "https://github.com/quicwg/base-drafts/pull/2929?email_source=notifications\u0026email_token=AFTOJK7GQLJNNH35FYC27GTQB4ACDA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB73OTIQ#pullrequestreview-267839906",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f08a171fc4_29bb3fa08f6cd968121289--


From nobody Mon Jul 29 10:36:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E5C241201D7 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 10:36:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9m5yo4xZucRb for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 10:36: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 481AA1203C1 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 10:36:38 -0700 (PDT)
Date: Mon, 29 Jul 2019 10:36:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564421797; bh=FbDgKtunctTdfMP1YzJgr/hXKOMVOGsV0KR97VAe534=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GZ6FAhu0RCXIrlEn71XJfYZie3Yeamf2xYrb5pyYI+/AEGFyrFRPzv85bS+Zar3AC mccsPHKRB9y3idPgnOVn92I0ND4Xxt27sl2PFFGv+MzWTTYGqji1T/0ioUl6l4ClKz b4G7aHc9jxLz/WIU7YNQ19RCRG1vL1lAQDvd/6Dc=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4DNXIWEPQH32HENZN3JRQSLEVBNHHBYGBYPM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2924/516089336@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2924@github.com>
References: <quicwg/base-drafts/issues/2924@github.com>
Subject: Re: [quicwg/base-drafts] Remove PRIORITY (#2924)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f2ea5651f0_25563ffd87ecd9601871c9"; 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/iVv9vImtFUA-TM6R8uKG-EBOLnU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 17:36:42 -0000

----==_mimepart_5d3f2ea5651f0_25563ffd87ecd9601871c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think there's a compelling argument to be made for "HTTP Priorities" as a header that can traverse various versions and potentially be cached with a response.  HTTP/2 and HTTP/3 don't define any new headers, because headers are part of the semantic layer.  It seems to me like the paths we can choose are:

- Define "HTTP Priorities" in a separate draft, containing a header for initial values (and optionally frame(s) for mid-response reprioritization)
- Define a new HTTP/3 frame to carry priorities in the current draft
- Define a negotiation mechanism to select a priority scheme in the current draft; these scheme might involve frames or 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/2924#issuecomment-516089336
----==_mimepart_5d3f2ea5651f0_25563ffd87ecd9601871c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think there's a compelling argument to be made for "HTTP Priorities" as a header that can traverse various versions and potentially be cached with a response.  HTTP/2 and HTTP/3 don't define any new headers, because headers are part of the semantic layer.  It seems to me like the paths we can choose are:</p>
<ul>
<li>Define "HTTP Priorities" in a separate draft, containing a header for initial values (and optionally frame(s) for mid-response reprioritization)</li>
<li>Define a new HTTP/3 frame to carry priorities in the current draft</li>
<li>Define a negotiation mechanism to select a priority scheme in the current draft; these scheme might involve frames or headers.</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/2924?email_source=notifications&amp;email_token=AFTOJK5ZVAFRMNLTGK6KMRDQB4TCLA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BOL6A#issuecomment-516089336">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VGRCRJALRLRC6ESDQB4TCLANCNFSM4IF5GTWQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK36F3K5KFLEJZU3PYLQB4TCLA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BOL6A.gif" height="1" width="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/2924?email_source=notifications\u0026email_token=AFTOJK5ZVAFRMNLTGK6KMRDQB4TCLA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BOL6A#issuecomment-516089336",
"url": "https://github.com/quicwg/base-drafts/issues/2924?email_source=notifications\u0026email_token=AFTOJK5ZVAFRMNLTGK6KMRDQB4TCLA5CNFSM4IF5GTW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BOL6A#issuecomment-516089336",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f2ea5651f0_25563ffd87ecd9601871c9--


From nobody Mon Jul 29 10:56:22 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B2990120146 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 10:56:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 q7R5ae5xSV59 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 10:56: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 DA0E71203D5 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 10:56:15 -0700 (PDT)
Date: Mon, 29 Jul 2019 10:56:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564422975; bh=Oxr1pzeROwqa9+KToV64V3xYbDyENe7BTcr5h/Pd9Tw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lUY4WZ7Z642RAzMdbMETTOLuiYqgY84wttCORFimhZPGmpqNN2jTEng0F5s7x3Ynh F+SSw/5HrszcVPImQHopj1kFhYpASVTcrrrE3+1CrQNzOeA/EPog4CYHZm6a1eOZ// 6adcvJwYryj+5mjo0o35uVOLLQbwv3H7s8DZAYSc=
From: Igor Lubashev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYIBWPQY4VP3HZRNZ53JRS35EVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2844/516096764@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2844@github.com>
References: <quicwg/base-drafts/issues/2844@github.com>
Subject: Re: [quicwg/base-drafts] Client connection IDs are broken (#2844)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f333eea44f_aa83faa630cd9683911d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: igorlord
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cWtaheuTNMhSAH31m4JQ-sTglcI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 17:56:21 -0000

----==_mimepart_5d3f333eea44f_aa83faa630cd9683911d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho 

> But because the server cannot tell if the packet were to be identified by the 4-tuple or the CID (because you no longer have state!), the server needs to send two stateless reset packets, one generated using the 4-tuple as the key, and the other generated using the CID.

This is a good point that Stateless Reset must also be considered.  In case that the server can identify a certain population of clients (10.0.0.0/8) as not needing migration, it can also identify which clients to send what kind of Stateless 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/2844#issuecomment-516096764
----==_mimepart_5d3f333eea44f_aa83faa630cd9683911d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a></p>
<blockquote>
<p>But because the server cannot tell if the packet were to be identified by the 4-tuple or the CID (because you no longer have state!), the server needs to send two stateless reset packets, one generated using the 4-tuple as the key, and the other generated using the CID.</p>
</blockquote>
<p>This is a good point that Stateless Reset must also be considered.  In case that the server can identify a certain population of clients (10.0.0.0/8) as not needing migration, it can also identify which clients to send what kind of Stateless 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/2844?email_source=notifications&amp;email_token=AFTOJK2Q2W4CIDUL4ADVGI3QB4VL5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BQF7A#issuecomment-516096764">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2TZO42B2LJUKHTXNTQB4VL5ANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BKC4YK5A2T53BQI3QB4VL5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BQF7A.gif" height="1" width="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/2844?email_source=notifications\u0026email_token=AFTOJK2Q2W4CIDUL4ADVGI3QB4VL5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BQF7A#issuecomment-516096764",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJK2Q2W4CIDUL4ADVGI3QB4VL5A5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3BQF7A#issuecomment-516096764",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f333eea44f_aa83faa630cd9683911d0--


From nobody Mon Jul 29 13:19:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DD2E712006B for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 13:19:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id flQwB1Pwua3W for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 13:19:11 -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 78511120045 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 13:19:11 -0700 (PDT)
Date: Mon, 29 Jul 2019 13:19:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564431550; bh=mdelYZ/fLWa1Hr3aY/DBSrVtVFcSXrM+U8zgoneOniQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JhdXddrUuYS7jHwSqv0ZeinlkTe3dlB1WFCxFPhB8zsN7UugE3dsaD95cfXce/uIg ydu96s6pNtGCrpFHXpOyqbdQD6SZZ35megr/qehajT/OaLp8HTA2MO6cNPB+SVgbxy +SlOrPcc0cZdQ6VVs9xDsaUAlxpyemdJQAe5GugU=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MJ2DE3E2B2OBDGNV3JSDT5EVBNHHBYE7THE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2921/review/268016727@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2921@github.com>
References: <quicwg/base-drafts/pull/2921@github.com>
Subject: Re: [quicwg/base-drafts] Confidentiality for server transport parameters (#2921)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f54be94723_296b3fb80a4cd9642703e5"; 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/HYDFEuFZ1giQb7nk-_gozWDfUM8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 20:19:13 -0000

----==_mimepart_5d3f54be94723_296b3fb80a4cd9642703e5
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/2921#pullrequestreview-268016727
----==_mimepart_5d3f54be94723_296b3fb80a4cd9642703e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2921?email_source=notifications&amp;email_token=AFTOJKY33CX32NJBZDPQJODQB5GD5A5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB74ZYVY#pullrequestreview-268016727">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EIB7X2KY63CGIFMLQB5GD5ANCNFSM4IFYEEBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK35UVGX6VKWWVYBSNDQB5GD5A5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB74ZYVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJKY33CX32NJBZDPQJODQB5GD5A5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB74ZYVY#pullrequestreview-268016727",
"url": "https://github.com/quicwg/base-drafts/pull/2921?email_source=notifications\u0026email_token=AFTOJKY33CX32NJBZDPQJODQB5GD5A5CNFSM4IFYEEB2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB74ZYVY#pullrequestreview-268016727",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d3f54be94723_296b3fb80a4cd9642703e5--


From nobody Mon Jul 29 13:22:26 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1A26312006A for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 13:22:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VQYzpAgV2_if for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 13:22: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 90D92120045 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 13:22:23 -0700 (PDT)
Date: Mon, 29 Jul 2019 13:22:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564431742; bh=4eXAgpRsOXXohhjpWyrYJY12j2HXWCwFjjNEpMWaU7M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zT/ySAnRJgKEE9Mlx3CknwzmFeQ+YnsG8VLsfNWiq5+RfgxaqoGJYVYtDX17Kmcl3 stOLjBlsVd63LNKw3FdB23KVWJpjE8Y5AnHDik6qTfq+JikREkmxAdf1Q1lanlQlTr nkYmayYblxlOa3y4vNngJiXnxVEMH18cbGQ4DGTI=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CJY5NUAENOK264XV3JSD75EVBNHHBYEARTM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2918/review/268018082@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2918@github.com>
References: <quicwg/base-drafts/pull/2918@github.com>
Subject: Re: [quicwg/base-drafts] Fix language around CC on migration (#2918)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f557eabd74_3a723f80bf4cd9641343d7"; 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/fZZPzRKMS4Up6M1ORvFe4zlQRgU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 20:22:25 -0000

----==_mimepart_5d3f557eabd74_3a723f80bf4cd9641343d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MikeBishop approved this pull request.



>  immediately reset the congestion controller and round-trip time estimator for
-the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOVERY}}).
-
-An endpoint MUST NOT return to the send rate used for the previous path unless
-it is reasonably sure that the previous send rate is valid for the new path.
-For instance, a change in the client's port number is likely indicative of a
-rebinding in a middlebox and not a complete change in path.  This determination
-likely depends on heuristics, which could be imperfect; if the new path capacity
-is significantly reduced, ultimately this relies on the congestion controller
-responding to congestion signals and reducing send rates appropriately.
+the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOVERY}})
+unless it has knowledge that the previous send rate or round-trip time estimate

```suggestion
unless it has knowledge that a previous send rate or round-trip time estimate
```
One reason a peer might do that is that you migrated cell->Wi-Fi->cell, and it still remembers the values from when you were on cellular.  Perhaps don't restrict this to the immediate previous measurement?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2918#pullrequestreview-268018082
----==_mimepart_5d3f557eabd74_3a723f80bf4cd9641343d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@MikeBishop</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2918#discussi=
on_r308420017">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  immediately reset the congestion controll=
er and round-trip time estimator for=0D
-the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOV=
ERY}}).=0D
-=0D
-An endpoint MUST NOT return to the send rate used for the previous path =
unless=0D
-it is reasonably sure that the previous send rate is valid for the new p=
ath.=0D
-For instance, a change in the client&#39;s port number is likely indicat=
ive of a=0D
-rebinding in a middlebox and not a complete change in path.  This determ=
ination=0D
-likely depends on heuristics, which could be imperfect; if the new path =
capacity=0D
-is significantly reduced, ultimately this relies on the congestion contr=
oller=0D
-responding to congestion signals and reducing send rates appropriately.=0D=

+the new path to initial values (see Sections A.3 and B.3 in {{QUIC-RECOV=
ERY}})=0D
+unless it has knowledge that the previous send rate or round-trip time e=
stimate=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-unless it has knowledge that the previous sen=
d rate or round-trip time estimate=0D
+unless it has knowledge that a previous send rate or round-trip time est=
imate=0D
</pre>=0D
=0D
<p>One reason a peer might do that is that you migrated cell-&gt;Wi-Fi-&g=
t;cell, and it still remembers the values from when you were on cellular.=
  Perhaps don't restrict this to the immediate previous measurement?</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/2918?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK67PB46CVNAWQI22ODQB5GP5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB742DIQ#pullrequestreview-268018082=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKZY3434BGPYSME3JN3QB5GP5ANCNFSM4IFTHRZQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK6ISMDA=
OSJGRAQ5QHDQB5GP5A5CNFSM4IFTHRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB742DIQ.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/2918?email_source=3D=
notifications\u0026email_token=3DAFTOJK67PB46CVNAWQI22ODQB5GP5A5CNFSM4IFT=
HRZ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
742DIQ#pullrequestreview-268018082",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2918?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK67PB46CVNAWQI22ODQB5GP5A5CNFSM4IFTHR=
Z2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB74=
2DIQ#pullrequestreview-268018082",=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_5d3f557eabd74_3a723f80bf4cd9641343d7--


From nobody Mon Jul 29 13:44:25 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2C5F712006F for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 13:44:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vhd_aWUGI0DO for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 13:44: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 61A34120043 for <quic-issues@ietf.org>; Mon, 29 Jul 2019 13:44:21 -0700 (PDT)
Date: Mon, 29 Jul 2019 13:44:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564433060; bh=uaMZiY6m3QgYg+p07RajR/3VeKHrrBRsozFhlbluXKs=; h=Date:From:To:Subject:From; b=NSqORob8rTaRSrwGkRErNgX8wXTn0UjK+zTbBQ7LvkK/0j+2o+z0M9xe5TILLKrXb gvGbU3Z7HYEJjWxfBAyqJlcDLALkmJYgNoy05j+gucn11pOxj2znhJlWNF+TmOp1Ur DE/0oIEpn4rlq9QjfgL38U3oatFJ9PnPvt4JhuUc=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/367b67-0cb2b8@github.com>
Subject: [quicwg/wg-materials] a0ba44: Markdownise
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UzaIdJ3qqldRUaB00-FOcdhKQ-E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 20:44:23 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: a0ba4499ab1cfee6548e661035920cd18dd54ef0
      https://github.com/quicwg/wg-materials/commit/a0ba4499ab1cfee6548e661035920cd18dd54ef0
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-07-29 (Mon, 29 Jul 2019)

  Changed paths:
    M ietf105/minutes.md

  Log Message:
  -----------
  Markdownise


  Commit: 0cb2b8419981be21d0e6e9ff804359d34d044cc2
      https://github.com/quicwg/wg-materials/commit/0cb2b8419981be21d0e6e9ff804359d34d044cc2
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-07-29 (Mon, 29 Jul 2019)

  Changed paths:
    M ietf105/minutes.md

  Log Message:
  -----------
  doctoc and adjust headings


Compare: https://github.com/quicwg/wg-materials/compare/367b679b0936...0cb2b8419981


From nobody Mon Jul 29 16:11:29 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 08E831200A4 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 16:11:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cBz8ReeJFFpV for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 16:11: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 5728A12004E for <quic-issues@ietf.org>; Mon, 29 Jul 2019 16:11:25 -0700 (PDT)
Date: Mon, 29 Jul 2019 16:11:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564441884; bh=jXjdgsrkPwaxbu0o8sLvWJSZGzjiWPfO2/cOz4UEjt8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1SRNKt/PEQTw+KPG7r8pdWjvVtEuoqhXHx9IPmHbfc6nkVQUEeWSgtYQjqSfGIRg9 2t9FYYrjYibHyRqkChNrU74nvfy/48aJ/FAgoz9al+gC+Qtvr4W0J6DKhplozwUyB4 uWSOXOtzI2Aj64/aWvjK9U06s178ecnNYcb/FQ7s=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMLX5KUQ6HI5BQCSF3JSXZZEVBNHHBYHMRI4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2927/review/268080997@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2927@github.com>
References: <quicwg/base-drafts/pull/2927@github.com>
Subject: Re: [quicwg/base-drafts] Allow Smaller Stateless Resets (#2927)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f7d1c79982_1c803fd07e6cd96c791fc"; 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/jtyMwYjlS3pdLNWABA-AdOanrYM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 23:11:28 -0000

----==_mimepart_5d3f7d1c79982_1c803fd07e6cd96c791fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson requested changes on this pull request.

One calculation error to fix, and some editorial suggestions.

> @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 48 bits of data (or 6 bytes, less the

```suggestion
Bits field needs to include at least 46 bits of data (or 6 bytes, less the
```

> @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 48 bits of data (or 6 bytes, less the
+two fixed bits).  To ensure the stateless reset packet is not smaller than
+other packets received on the connection, an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 22 bytes.

```suggestion
total packet length is at least the minimum chosen CID length plus 22 bytes.
```

> @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 48 bits of data (or 6 bytes, less the
+two fixed bits).  To ensure the stateless reset packet is not smaller than
+other packets received on the connection, an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 22 bytes.
+22 bytes allows for 1 type byte, 4 packet number and data bytes, the
+16 byte authentication tag, and the one extra byte to allow the peer to

```suggestion
16 bytes for AEAD expansion, and an extra byte to allow the peer to
```

> @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable
+Bits field needs to include at least 48 bits of data (or 6 bytes, less the
+two fixed bits).  To ensure the stateless reset packet is not smaller than
+other packets received on the connection, an endpoint SHOULD also ensure the
+total packet length is at least the minimum chosen CID length + 22 bytes.
+22 bytes allows for 1 type byte, 4 packet number and data bytes, the

```suggestion
22 bytes allows for 1 type byte, 4 packet number and data bytes,
```

> @@ -2389,11 +2389,17 @@ of bytes following it that are set to unpredictable values.  The last 16 bytes
 of the datagram contain a Stateless Reset Token.
 
 To entities other than its intended recipient, a stateless reset will appear
-to be a packet with a short header.  For the packet to appear as valid, the
-Unpredictable Bits field needs to include at least 198 bits of data (or 25
-bytes, less the two fixed bits).  This is intended to allow for a Destination
-Connection ID of the maximum length permitted, with a minimal packet number, and
-payload.  The Stateless Reset Token corresponds to the minimum expansion of the
+to be a packet with a short header.  For the stateless reset to appear as a
+valid QUIC packet and be smaller than the received packet, the Unpredictable

What Mike said.  I think that you want to say:

> A stateless reset MUST include an Unpredictable Bits field of at least 38 bits (or 5 bytes, less the two fixed bits).  However, this does not account for the length of the connection ID chosen by a peer, which is not known by the endpoint sending a stateless reset.  For a stateless reset to appear to be a valid QUIC packet, the packet needs to appear to contain one type byte, a minimum-sized connection ID, four bytes of packet number and payload, and the AEAD expansion. In order to ensure that a stateless reset is smaller than the packet that triggers it, an endpoint needs to send a packet that is one byte longer than the minimum stateless reset size.  Therefore, endpoints SHOULD always send packets that are at least 22 bytes larger than the minimum connection ID that they might select.
>
>These calculations assume a 16 byte AEAD expansion.  Smaller packets can be sent if the AEAD expansion is less than 16 bytes and larger packets need to be sent for a larger expansion.

> @@ -2367,7 +2367,7 @@ following layout:
  0                   1                   2                   3
  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-|0|1|               Unpredictable Bits (198..)                ...
+|0|1|               Unpredictable Bits (46 ..)                ...

```suggestion
|0|1|               Unpredictable Bits (38 ..)                ...
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2927#pullrequestreview-268080997
----==_mimepart_5d3f7d1c79982_1c803fd07e6cd96c791fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@martinthomson</b> requested changes on this pull request.</p>=0D
=0D
<p>One calculation error to fix, and some editorial suggestions.</p><hr>=0D=

=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2927#discussi=
on_r308470181">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2389,11 +2389,17 @@ of bytes following=
 it that are set to unpredictable values.  The last 16 bytes=0D
 of the datagram contain a Stateless Reset Token.=0D
 =0D
 To entities other than its intended recipient, a stateless reset will ap=
pear=0D
-to be a packet with a short header.  For the packet to appear as valid, =
the=0D
-Unpredictable Bits field needs to include at least 198 bits of data (or =
25=0D
-bytes, less the two fixed bits).  This is intended to allow for a Destin=
ation=0D
-Connection ID of the maximum length permitted, with a minimal packet num=
ber, and=0D
-payload.  The Stateless Reset Token corresponds to the minimum expansion=
 of the=0D
+to be a packet with a short header.  For the stateless reset to appear a=
s a=0D
+valid QUIC packet and be smaller than the received packet, the Unpredict=
able=0D
+Bits field needs to include at least 48 bits of data (or 6 bytes, less t=
he=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Bits field needs to include at least 48 bits =
of data (or 6 bytes, less the=0D
+Bits field needs to include at least 46 bits of data (or 6 bytes, less t=
he=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2927#discussi=
on_r308470242">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2389,11 +2389,17 @@ of bytes following=
 it that are set to unpredictable values.  The last 16 bytes=0D
 of the datagram contain a Stateless Reset Token.=0D
 =0D
 To entities other than its intended recipient, a stateless reset will ap=
pear=0D
-to be a packet with a short header.  For the packet to appear as valid, =
the=0D
-Unpredictable Bits field needs to include at least 198 bits of data (or =
25=0D
-bytes, less the two fixed bits).  This is intended to allow for a Destin=
ation=0D
-Connection ID of the maximum length permitted, with a minimal packet num=
ber, and=0D
-payload.  The Stateless Reset Token corresponds to the minimum expansion=
 of the=0D
+to be a packet with a short header.  For the stateless reset to appear a=
s a=0D
+valid QUIC packet and be smaller than the received packet, the Unpredict=
able=0D
+Bits field needs to include at least 48 bits of data (or 6 bytes, less t=
he=0D
+two fixed bits).  To ensure the stateless reset packet is not smaller th=
an=0D
+other packets received on the connection, an endpoint SHOULD also ensure=
 the=0D
+total packet length is at least the minimum chosen CID length + 22 bytes=
.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-total packet length is at least the minimum c=
hosen CID length + 22 bytes.=0D
+total packet length is at least the minimum chosen CID length plus 22 by=
tes.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2927#discussi=
on_r308470393">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2389,11 +2389,17 @@ of bytes following=
 it that are set to unpredictable values.  The last 16 bytes=0D
 of the datagram contain a Stateless Reset Token.=0D
 =0D
 To entities other than its intended recipient, a stateless reset will ap=
pear=0D
-to be a packet with a short header.  For the packet to appear as valid, =
the=0D
-Unpredictable Bits field needs to include at least 198 bits of data (or =
25=0D
-bytes, less the two fixed bits).  This is intended to allow for a Destin=
ation=0D
-Connection ID of the maximum length permitted, with a minimal packet num=
ber, and=0D
-payload.  The Stateless Reset Token corresponds to the minimum expansion=
 of the=0D
+to be a packet with a short header.  For the stateless reset to appear a=
s a=0D
+valid QUIC packet and be smaller than the received packet, the Unpredict=
able=0D
+Bits field needs to include at least 48 bits of data (or 6 bytes, less t=
he=0D
+two fixed bits).  To ensure the stateless reset packet is not smaller th=
an=0D
+other packets received on the connection, an endpoint SHOULD also ensure=
 the=0D
+total packet length is at least the minimum chosen CID length + 22 bytes=
.=0D
+22 bytes allows for 1 type byte, 4 packet number and data bytes, the=0D
+16 byte authentication tag, and the one extra byte to allow the peer to=0D=

</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-16 byte authentication tag, and the one extra=
 byte to allow the peer to=0D
+16 bytes for AEAD expansion, and an extra byte to allow the peer to=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2927#discussi=
on_r308470436">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2389,11 +2389,17 @@ of bytes following=
 it that are set to unpredictable values.  The last 16 bytes=0D
 of the datagram contain a Stateless Reset Token.=0D
 =0D
 To entities other than its intended recipient, a stateless reset will ap=
pear=0D
-to be a packet with a short header.  For the packet to appear as valid, =
the=0D
-Unpredictable Bits field needs to include at least 198 bits of data (or =
25=0D
-bytes, less the two fixed bits).  This is intended to allow for a Destin=
ation=0D
-Connection ID of the maximum length permitted, with a minimal packet num=
ber, and=0D
-payload.  The Stateless Reset Token corresponds to the minimum expansion=
 of the=0D
+to be a packet with a short header.  For the stateless reset to appear a=
s a=0D
+valid QUIC packet and be smaller than the received packet, the Unpredict=
able=0D
+Bits field needs to include at least 48 bits of data (or 6 bytes, less t=
he=0D
+two fixed bits).  To ensure the stateless reset packet is not smaller th=
an=0D
+other packets received on the connection, an endpoint SHOULD also ensure=
 the=0D
+total packet length is at least the minimum chosen CID length + 22 bytes=
.=0D
+22 bytes allows for 1 type byte, 4 packet number and data bytes, the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-22 bytes allows for 1 type byte, 4 packet num=
ber and data bytes, the=0D
+22 bytes allows for 1 type byte, 4 packet number and data bytes,=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2927#discussi=
on_r308474101">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2389,11 +2389,17 @@ of bytes following=
 it that are set to unpredictable values.  The last 16 bytes=0D
 of the datagram contain a Stateless Reset Token.=0D
 =0D
 To entities other than its intended recipient, a stateless reset will ap=
pear=0D
-to be a packet with a short header.  For the packet to appear as valid, =
the=0D
-Unpredictable Bits field needs to include at least 198 bits of data (or =
25=0D
-bytes, less the two fixed bits).  This is intended to allow for a Destin=
ation=0D
-Connection ID of the maximum length permitted, with a minimal packet num=
ber, and=0D
-payload.  The Stateless Reset Token corresponds to the minimum expansion=
 of the=0D
+to be a packet with a short header.  For the stateless reset to appear a=
s a=0D
+valid QUIC packet and be smaller than the received packet, the Unpredict=
able=0D
</pre>=0D
<p>What Mike said.  I think that you want to say:</p>=0D
<blockquote>=0D
<p>A stateless reset MUST include an Unpredictable Bits field of at least=
 38 bits (or 5 bytes, less the two fixed bits).  However, this does not a=
ccount for the length of the connection ID chosen by a peer, which is not=
 known by the endpoint sending a stateless reset.  For a stateless reset =
to appear to be a valid QUIC packet, the packet needs to appear to contai=
n one type byte, a minimum-sized connection ID, four bytes of packet numb=
er and payload, and the AEAD expansion. In order to ensure that a statele=
ss reset is smaller than the packet that triggers it, an endpoint needs t=
o send a packet that is one byte longer than the minimum stateless reset =
size.  Therefore, endpoints SHOULD always send packets that are at least =
22 bytes larger than the minimum connection ID that they might select.</p=
>=0D
<p>These calculations assume a 16 byte AEAD expansion.  Smaller packets c=
an be sent if the AEAD expansion is less than 16 bytes and larger packets=
 need to be sent for a larger expansion.</p>=0D
</blockquote>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2927#discussi=
on_r308474130">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2367,7 +2367,7 @@ following layout:=0D=

  0                   1                   2                   3=0D
  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1=0D
 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+=0D
-|0|1|               Unpredictable Bits (198..)                ...=0D
+|0|1|               Unpredictable Bits (46 ..)                ...=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-|0|1|               Unpredictable Bits (46 ..=
)                ...=0D
+|0|1|               Unpredictable Bits (38 ..)                ...=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/2927?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKZLHGFKCJLAATLPBSLQB52JZA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB75JOZI#pullrequestreview-268080997=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK3OH67VEZHE3AN7GXLQB52JZANCNFSM4IGENO4A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK4DIFDZ=
5OCPAB45MS3QB52JZA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOB75JOZI.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/2927?email_source=3D=
notifications\u0026email_token=3DAFTOJKZLHGFKCJLAATLPBSLQB52JZA5CNFSM4IGE=
NO4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB=
75JOZI#pullrequestreview-268080997",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZLHGFKCJLAATLPBSLQB52JZA5CNFSM4IGENO=
4KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOB75=
JOZI#pullrequestreview-268080997",=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_5d3f7d1c79982_1c803fd07e6cd96c791fc--


From nobody Mon Jul 29 16:13:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7D5C81200A4 for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 16:13:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jvh37sgWqJKx for <quic-issues@ietfa.amsl.com>; Mon, 29 Jul 2019 16:13: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 5E2CB12004E for <quic-issues@ietf.org>; Mon, 29 Jul 2019 16:13:46 -0700 (PDT)
Date: Mon, 29 Jul 2019 16:13:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564442025; bh=C8fPHdlDKvDysQGNkmHp+X3Jqhr9WQ+bDpLt/WOSOBM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BAHHcz7E2QGeIU8VabF/nqWmXHyXErpXejvogz8bNdDBrixQVgxpNimcTIz504WDf 1mYwOhrwgOqOw9G7PoAr0SIvBxuGdRb36NQ5LdpjAQpVB0FWVLDcpnTPbeo/YSZ1/W 6QUdsjNYotKr15mamnOLmvO2jzDinzPFzSbgjlX8=
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/2929/push/3868363398@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2929@github.com>
References: <quicwg/base-drafts/pull/2929@github.com>
Subject: Re: [quicwg/base-drafts] Minor clarification. Fixes #2084 (#2929)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d3f7da91f5f0_68f63f7edf8cd960211022"; 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/zmsIIbagUeuRdC54I7K2eSFATqk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 29 Jul 2019 23:13:48 -0000

----==_mimepart_5d3f7da91f5f0_68f63f7edf8cd960211022
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

e73037faf71f5140a941a1f29cf4dd84e0cd6830  Rewrap, clarify affiliation to mean cooperation


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2929/files/f77ee20808e88e9b92e35c8d9f94a075547b775f..e73037faf71f5140a941a1f29cf4dd84e0cd6830

----==_mimepart_5d3f7da91f5f0_68f63f7edf8cd960211022
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/e73037faf71f5140a941a1f29cf4dd84e0cd6830">e73037f</a>  Rewrap, clarify affiliation to mean cooperation</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/2929/files/f77ee20808e88e9b92e35c8d9f94a075547b775f..e73037faf71f5140a941a1f29cf4dd84e0cd6830?email_source=notifications&amp;email_token=AFTOJK67TVTLGWXFPTJC6WTQB52STA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDANZSGU3TGNCQOVZWQIZTHA3DQMZWGMZTSOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77XYZHS4NW43WDWITQB52STANCNFSM4IGQC4MA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6GE5ZOYBJRBC3A543QB52STA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDANZSGU3TGNCQOVZWQIZTHA3DQMZWGMZTSOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2929/files/f77ee20808e88e9b92e35c8d9f94a075547b775f..e73037faf71f5140a941a1f29cf4dd84e0cd6830?email_source=notifications\u0026email_token=AFTOJK67TVTLGWXFPTJC6WTQB52STA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDANZSGU3TGNCQOVZWQIZTHA3DQMZWGMZTSOA",
"url": "https://github.com/quicwg/base-drafts/pull/2929/files/f77ee20808e88e9b92e35c8d9f94a075547b775f..e73037faf71f5140a941a1f29cf4dd84e0cd6830?email_source=notifications\u0026email_token=AFTOJK67TVTLGWXFPTJC6WTQB52STA5CNFSM4IGQC4MKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDANZSGU3TGNCQOVZWQIZTHA3DQMZWGMZTSOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d3f7da91f5f0_68f63f7edf8cd960211022--


From nobody Tue Jul 30 02:36:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DDBAD120188 for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 02:36:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.596
X-Spam-Level: 
X-Spam-Status: No, score=-6.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QG_Q-KZiJk_l for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 02:36: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 CF4451200CD for <quic-issues@ietf.org>; Tue, 30 Jul 2019 02:36:08 -0700 (PDT)
Date: Tue, 30 Jul 2019 02:36:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564479367; bh=QxLlfUvBIO3AimdsptsmchrggO4/pISez0saPRkCVvo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=i3+hf8qz/ZZjKUd/wjVIe4EbJkfIktyNlPbLOlaJt8tBE234LmIUCl4fjI7+2XKW0 uYBtClaWWK9pkX1FdiHW3nZgYThI7De3Rvca5TvTSQsuvCIJjzokR4MnWolLWcXl6X GUmsEhTihkJI9YjVyPCMNc72L9RmZXmwZZLp3qBk=
From: evagld <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4JYGH5VDOD4E527V53JVBAPEVBNHHBYR7YKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2932@github.com>
Subject: [quicwg/base-drafts] Omission of DCIL change in draft-ietf-quic-transport-22? (#2932)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d400f87b60cc_10213f8b462cd95c1107db"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: evagld
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qqikjQ4kcGx5hyMI6m2cfcbzfuU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 30 Jul 2019 09:36:11 -0000

----==_mimepart_5d400f87b60cc_10213f8b462cd95c1107db
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm currently working on an implementation of the protocol and have juste realized the changes in the last draft of RFC about the DCIL and SCIL. 
Reading the changes, I noticed that the DCID Len didn't change in the draft, opposed to the SCID Len, which doesn't seem rigth :
 "_DCID Len: The byte following the version contains the lengths of the two connection ID fields that follow it. These lengths are encoded as two 4-bit unsigned integers. The Destination
 Connection ID Length (DCIL) field occupies the 4 high bits of the byte and the Source Connection ID Length (SCIL) field occupies the 4 low bits of the byte. An encoded length of 0 indicates that the connection ID is also 0 bytes in length. Non-zero encoded lengths
 are increased by 3 to get the full length of the connection ID, producing a length between 4 and 18 bytes inclusive. For example,  a byte with the value 0x50 describes an 8-byte Destination
 Connection ID and a zero-length Source Connection ID_."
Is it an omission of change or have I missed 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/issues/2932
----==_mimepart_5d400f87b60cc_10213f8b462cd95c1107db
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm currently working on an implementation of the protocol and have juste realized the changes in the last draft of RFC about the DCIL and SCIL.<br>
Reading the changes, I noticed that the DCID Len didn't change in the draft, opposed to the SCID Len, which doesn't seem rigth :<br>
"<em>DCID Len: The byte following the version contains the lengths of the two connection ID fields that follow it. These lengths are encoded as two 4-bit unsigned integers. The Destination<br>
Connection ID Length (DCIL) field occupies the 4 high bits of the byte and the Source Connection ID Length (SCIL) field occupies the 4 low bits of the byte. An encoded length of 0 indicates that the connection ID is also 0 bytes in length. Non-zero encoded lengths<br>
are increased by 3 to get the full length of the connection ID, producing a length between 4 and 18 bytes inclusive. For example,  a byte with the value 0x50 describes an 8-byte Destination<br>
Connection ID and a zero-length Source Connection ID</em>."<br>
Is it an omission of change or have I missed something?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2932?email_source=notifications&amp;email_token=AFTOJK5ZYLVDZHSVTVCWW4LQCADQPA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCH7BKA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NPBZS42S7IZKH5C3QCADQPANCNFSM4IH2LV7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6R2BJ4CRK6T3VHYMDQCADQPA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCH7BKA.gif" height="1" width="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/2932?email_source=notifications\u0026email_token=AFTOJK5ZYLVDZHSVTVCWW4LQCADQPA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCH7BKA",
"url": "https://github.com/quicwg/base-drafts/issues/2932?email_source=notifications\u0026email_token=AFTOJK5ZYLVDZHSVTVCWW4LQCADQPA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCH7BKA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d400f87b60cc_10213f8b462cd95c1107db--


From nobody Tue Jul 30 02:42:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 98CAB1203CA for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 02:42:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Sqo46yiaFBU0 for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 02:42:38 -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 963501203C6 for <quic-issues@ietf.org>; Tue, 30 Jul 2019 02:42:38 -0700 (PDT)
Date: Tue, 30 Jul 2019 02:42:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564479757; bh=vkQV84R2asSURbIwmVHlJSpAUdyl8hlhUy8TfE3TwNo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2PI9OjLM6aGtgZlRc2V4oZwt4rGTH2cpkTkwIlfJYqrkJNFqAiOnC6InUZYuJh53m mGu8z6UWe44E2biQWi5QpTMiUczOn6dFUsp31rVa5Iqj5taX4pFzSkEXOnsrOjF20h mMowjF1aNLNZt0sBroZoIokNekTBCerZRy9iACvI=
From: evagld <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VM45IX7NJOKJ2GEV3JVBY3EVBNHHBYR7YKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2932/issue_event/2519180835@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2932@github.com>
References: <quicwg/base-drafts/issues/2932@github.com>
Subject: Re: [quicwg/base-drafts] Omission of DCIL change in draft-ietf-quic-transport-22? (#2932)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d40110dc6a27_575c3fed7aacd9681179be"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: evagld
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IplafC5Z8Wn8Ar44CvFupWkTj8g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 30 Jul 2019 09:42:41 -0000

----==_mimepart_5d40110dc6a27_575c3fed7aacd9681179be
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2932.

-- 
You are receiving 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/2932#event-2519180835
----==_mimepart_5d40110dc6a27_575c3fed7aacd9681179be
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="474478676" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2932" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2932/hovercard" href="https://github.com/quicwg/base-drafts/issues/2932">#2932</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/2932?email_source=notifications&amp;email_token=AFTOJK5KF5MUXWINITGR37LQCAEI3A5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT2MIY#event-2519180835">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6R7JZHL3OJM5FGMRLQCAEI3ANCNFSM4IH2LV7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3R246OUHVUBJKHE7DQCAEI3A5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT2MIY.gif" height="1" width="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/2932?email_source=notifications\u0026email_token=AFTOJK5KF5MUXWINITGR37LQCAEI3A5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT2MIY#event-2519180835",
"url": "https://github.com/quicwg/base-drafts/issues/2932?email_source=notifications\u0026email_token=AFTOJK5KF5MUXWINITGR37LQCAEI3A5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT2MIY#event-2519180835",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d40110dc6a27_575c3fed7aacd9681179be--


From nobody Tue Jul 30 02:49:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7C5EA1202BE for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 02:49:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Fxg4pUEdAwNc for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 02:49: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 D0EE91200CD for <quic-issues@ietf.org>; Tue, 30 Jul 2019 02:49:08 -0700 (PDT)
Date: Tue, 30 Jul 2019 02:49:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564480147; bh=dlfszM2k0unAS11/q/EihpqhKTmCPI8/H+DvKxKwnlM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VIES2dUmlzA/lWJAdujoDzEZR9WyIDvwqlSnwYY9Fn6KWvzJZ4KZiFNGN+nuB+WTh qGykDRVZZ168gZ6UWiQONPBpAQoWhMg1P+3eRRMQmlYuNzVRKZO8PeRtYVfJB98FOg U2gwfQAyNRBQvlrK5aHcSD34yW/JyRUU7l9ealu4=
From: evagld <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ESCIOXUSZKKYBF6V3JVCRHEVBNHHBYR7YKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2932/issue_event/2519200170@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2932@github.com>
References: <quicwg/base-drafts/issues/2932@github.com>
Subject: Re: [quicwg/base-drafts] Omission of DCIL change in draft-ietf-quic-transport-22? (#2932)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d401293c4451_7b4f3f831eacd95c2632a6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: evagld
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RDWbO1k9PmQIcGchUfnOSdxjkxA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 30 Jul 2019 09:49:11 -0000

----==_mimepart_5d401293c4451_7b4f3f831eacd95c2632a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Reopened #2932.

-- 
You are receiving 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/2932#event-2519200170
----==_mimepart_5d401293c4451_7b4f3f831eacd95c2632a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Reopened <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="474478676" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2932" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2932/hovercard" href="https://github.com/quicwg/base-drafts/issues/2932">#2932</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/2932?email_source=notifications&amp;email_token=AFTOJKZSZV2R2XAZ4HRT7BTQCAFBHA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT7DKQ#event-2519200170">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYHVGLVPFS76YMUGT3QCAFBHANCNFSM4IH2LV7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GTJ6RD6CTSRPENG3QCAFBHA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT7DKQ.gif" height="1" width="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/2932?email_source=notifications\u0026email_token=AFTOJKZSZV2R2XAZ4HRT7BTQCAFBHA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT7DKQ#event-2519200170",
"url": "https://github.com/quicwg/base-drafts/issues/2932?email_source=notifications\u0026email_token=AFTOJKZSZV2R2XAZ4HRT7BTQCAFBHA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSYT7DKQ#event-2519200170",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d401293c4451_7b4f3f831eacd95c2632a6--


From nobody Tue Jul 30 10:36:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DE9641201D6 for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 10:36:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.594
X-Spam-Level: 
X-Spam-Status: No, score=-6.594 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, 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 W_cr2EhKuXjQ for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 10:36:11 -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 6FA8A1201CC for <quic-issues@ietf.org>; Tue, 30 Jul 2019 10:36:11 -0700 (PDT)
Date: Tue, 30 Jul 2019 10:36:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564508170; bh=b/OF4xlsl+s2dfQie5oCADN8qHZ+uDbExrD/GvAIy9Q=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=QE1xYDGq0ek3LZqHyZ690bCeKOdrt9l/9EAcy2aDRL/q3yc8d5YQpamO4SMVhPZ6U gi2iB9mVCenDi5R1KWAKajy3qsPP2GjXz+fJ9LWMIeEl8tfZ3hle7eSUdTOMEllr6L lV1GKQ2MYHlQv/YHiKuKAvE1znRYyFApG+1K73IA=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FRK2MLOLLE5AJI4V3JWZIVEVBNHHBYS4JSQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2933@github.com>
Subject: [quicwg/base-drafts] Modify pseudo-code to enforce that zero must be encoded as zero. (#2933)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d40800aa05bb_7ba13f82b7ccd96c2324fc"; 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/hkuZp0oAn7AxdBSOd-zU6FXBISM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 30 Jul 2019 17:36:13 -0000

----==_mimepart_5d40800aa05bb_7ba13f82b7ccd96c2324fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is the most naive solution to issue #2892.  It can be used as a base line until someone comes up with something more elegant.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2933

-- Commit Summary --

  * Modify pseudo-code to enforce that zero must be encoded as zero.

-- File Changes --

    M draft-ietf-quic-qpack.md (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2933.patch
https://github.com/quicwg/base-drafts/pull/2933.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/2933

----==_mimepart_5d40800aa05bb_7ba13f82b7ccd96c2324fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is the most naive solution to issue <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="467166464" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2892" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2892/hovercard" href="https://github.com/quicwg/base-drafts/issues/2892">#2892</a>.  It can be used as a base line until someone comes up with something more elegant.</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/2933'>https://github.com/quicwg/base-drafts/pull/2933</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Modify pseudo-code to enforce that zero must be encoded as zero.</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2933/files#diff-0">draft-ietf-quic-qpack.md</a>
    (6)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2933.patch'>https://github.com/quicwg/base-drafts/pull/2933.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2933.diff'>https://github.com/quicwg/base-drafts/pull/2933.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/2933?email_source=notifications&amp;email_token=AFTOJKYDACJTK775AS2RM5LQCB3YVA5CNFSM4IH6WDPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCLRGKA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7A2QNUV3EN3EQKI5TQCB3YVANCNFSM4IH6WDPA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6H4LYFA4HGO4T7RADQCB3YVA5CNFSM4IH6WDPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCLRGKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2933?email_source=notifications\u0026email_token=AFTOJKYDACJTK775AS2RM5LQCB3YVA5CNFSM4IH6WDPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCLRGKA",
"url": "https://github.com/quicwg/base-drafts/pull/2933?email_source=notifications\u0026email_token=AFTOJKYDACJTK775AS2RM5LQCB3YVA5CNFSM4IH6WDPKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCLRGKA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d40800aa05bb_7ba13f82b7ccd96c2324fc--


From nobody Tue Jul 30 17:33:36 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7086412014E for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 17:33:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Hr78zyPKE_Hz for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 17:33:32 -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 56C9112008B for <quic-issues@ietf.org>; Tue, 30 Jul 2019 17:33:32 -0700 (PDT)
Date: Tue, 30 Jul 2019 17:33:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564533211; bh=BumVh0LWbu2Kdc+TlWPI50PCm7QJXSRhY6Dy1sV9yHk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rx02Xrs1PLUJLnks9kmWDrd8dx/oKxrBJRxJEJlBxqb20w2jIHdB3UcBYxktN/Uog tpTKfJEpKWXKMj1sQQIxUi7YDVvRd6cB9OynDse7Cr+LsELglrAgamaN1HVfTWxbl0 DhVqS999MB/oFcJcpu/v2gDZjEVvXp134J4kilwI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MN6GVSQKTMMYWG2N3JYKFXEVBNHHBYR7YKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2932/516646587@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2932@github.com>
References: <quicwg/base-drafts/issues/2932@github.com>
Subject: Re: [quicwg/base-drafts] Omission of DCIL change in draft-ietf-quic-transport-22? (#2932)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d40e1db65feb_7ee43fbf450cd96c5067a7"; 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/Nj5Jt9X6hj5J_h_VRrMgEqLJ5jI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 00:33:35 -0000

----==_mimepart_5d40e1db65feb_7ee43fbf450cd96c5067a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The [editor's drafts](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#long-header) contain the fix already.

-- 
You are receiving 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/2932#issuecomment-516646587
----==_mimepart_5d40e1db65feb_7ee43fbf450cd96c5067a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The <a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#long-header" rel="nofollow">editor's drafts</a> contain the fix already.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2932?email_source=notifications&amp;email_token=AFTOJK3MOU75TMAFPZU2N7TQCDMVXA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3FWNOY#issuecomment-516646587">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZXWGPAZ445SYA3423QCDMVXANCNFSM4IH2LV7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYX3NU2PWRT7CAPUS3QCDMVXA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3FWNOY.gif" height="1" width="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/2932?email_source=notifications\u0026email_token=AFTOJK3MOU75TMAFPZU2N7TQCDMVXA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3FWNOY#issuecomment-516646587",
"url": "https://github.com/quicwg/base-drafts/issues/2932?email_source=notifications\u0026email_token=AFTOJK3MOU75TMAFPZU2N7TQCDMVXA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3FWNOY#issuecomment-516646587",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d40e1db65feb_7ee43fbf450cd96c5067a7--


From nobody Tue Jul 30 17:33:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 517AB12008B for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 17:33:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Pw8bFThviPX7 for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 17:33: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 79A16120123 for <quic-issues@ietf.org>; Tue, 30 Jul 2019 17:33:33 -0700 (PDT)
Date: Tue, 30 Jul 2019 17:33:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564533212; bh=DdAYj5wmmIA0xgkpZDm1494tjJCvHbW8+1dXuDDjcZY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dTWmF3pTZENokvAVZOwWIjjkwCXWXYcSn4P5vZyWiyWT2bSuprvZY+y8QSZNGoAqF fs9Yai3yOPhy5Ghfw3wQukOLDlhwekAU3s7mSJ+s4rouhh4HXquKYENWuGYM8r/her ClXJ0yQ+iBIHsVRMSsJzpT4roD/JY6uevWthrdyU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7DS5HN5KX5WPWRRZN3JYKFZEVBNHHBYR7YKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2932/issue_event/2521632773@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2932@github.com>
References: <quicwg/base-drafts/issues/2932@github.com>
Subject: Re: [quicwg/base-drafts] Omission of DCIL change in draft-ietf-quic-transport-22? (#2932)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d40e1dc9026a_2fa43fe377ccd96496876"; 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/pLhXvJpdFX0c45YnHImhDadDvOA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 00:33:35 -0000

----==_mimepart_5d40e1dc9026a_2fa43fe377ccd96496876
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2932.

-- 
You are receiving 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/2932#event-2521632773
----==_mimepart_5d40e1dc9026a_2fa43fe377ccd96496876
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="474478676" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2932" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2932/hovercard" href="https://github.com/quicwg/base-drafts/issues/2932">#2932</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/2932?email_source=notifications&amp;email_token=AFTOJK6O2XVVOHN5WV2HYMTQCDMVZA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZGRABI#event-2521632773">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5DKSB754QOTULR3MTQCDMVZANCNFSM4IH2LV7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Y3K6S3FC5BNO5UWTQCDMVZA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZGRABI.gif" height="1" width="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/2932?email_source=notifications\u0026email_token=AFTOJK6O2XVVOHN5WV2HYMTQCDMVZA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZGRABI#event-2521632773",
"url": "https://github.com/quicwg/base-drafts/issues/2932?email_source=notifications\u0026email_token=AFTOJK6O2XVVOHN5WV2HYMTQCDMVZA5CNFSM4IH2LV72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZGRABI#event-2521632773",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d40e1dc9026a_2fa43fe377ccd96496876--


From nobody Tue Jul 30 19:54:42 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ADB3F12008A for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 19:54:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ROOYSf_xIIEz for <quic-issues@ietfa.amsl.com>; Tue, 30 Jul 2019 19:54: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 BC89912004A for <quic-issues@ietf.org>; Tue, 30 Jul 2019 19:54:38 -0700 (PDT)
Date: Tue, 30 Jul 2019 19:54:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564541677; bh=I5yH3IoG5yn+gXxNXTCfXbYHHrvYL2x36OcmJ6/OeuE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BgC73Tu4G0OHRY65XAWXmrta2Jo2MgdcJ3kzZjn0eIMsglPOpnOEDfiNrSKpvrFlf bI64MeH4w1ZTljV5oehu3tA7KSJfNUblmKyerPJkiXRl/k9F4wzRZpz2P0JLImmd49 f3uUPNgcpmVIJiDRqWxZLH6Wfc1yQ61x/rg+jo+k=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64XRBQK2K4TMZZUJ53JY2W3EVBNHHBWL37RY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2792/516673024@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2792@github.com>
References: <quicwg/base-drafts/issues/2792@github.com>
Subject: Re: [quicwg/base-drafts] Timing side-channel on key updates (#2792)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d4102ed9c622_7e43fb9d1ccd95c21091a"; 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/ak0rdjODw6Cvkm21So498_IUfxY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 02:54:41 -0000

----==_mimepart_5d4102ed9c622_7e43fb9d1ccd95c21091a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

I'd like to second @ekr's comment at the mic. I don=E2=80=99t think this =
is an issue for which we need text. Without loss of generality, let=E2=80=
=99s assume that in the worst case an attacker learns the entire unprotec=
ted header bytes for every packet. (That is, that header protection does =
nothing overwhelmingly helpful.) Revisiting the header protection algorit=
hm, it basically works as follows:=0D
=0D
~~~=0D
H=E2=80=99 =3D H XOR mask=0D
     =3D H XOR PRP(hp_key, sample)=0D
~~~=0D
=0D
where H=E2=80=99 and H are the protected and unprotected header bytes, re=
spectively, and sample is known to the adversary. If we assume mask is th=
e output of a PRP, and therefore both IND-CPA secure and KPA secure, an a=
dversary learns nothing from known plaintext and ciphertext pairs. (The t=
ypical game-based IND-CPA security definition says that an adversary with=
 access to an oracle for encrypting any message M_i of its choice has neg=
ligible probability in selecting b, upon giving the challenger M_0 and M_=
1 and receiving an encryption of M_b. Recovering the header protection ke=
y would break this assumption, as it would let the adversary encrypt M_0 =
and M_1 -- without the oracle -- and trivially match against M_b.)=0D
=0D
All that said, adding text describing that endpoints should precompute ke=
ys is probably fine. I=E2=80=99m just not sure it=E2=80=99s needed here.=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/2792#issuecomment-516673024=

----==_mimepart_5d4102ed9c622_7e43fb9d1ccd95c21091a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I'd like to second <a class=3D"user-mention" data-hovercard-type=3D"us=
er" data-hovercard-url=3D"/hovercards?user_id=3D1111457" data-octo-click=3D=
"hovercard-link-click" data-octo-dimensions=3D"link_type:self" href=3D"ht=
tps://github.com/ekr">@ekr</a>'s comment at the mic. I don=E2=80=99t thin=
k this is an issue for which we need text. Without loss of generality, le=
t=E2=80=99s assume that in the worst case an attacker learns the entire u=
nprotected header bytes for every packet. (That is, that header protectio=
n does nothing overwhelmingly helpful.) Revisiting the header protection =
algorithm, it basically works as follows:</p>=0D
<pre><code>H=E2=80=99 =3D H XOR mask=0D
     =3D H XOR PRP(hp_key, sample)=0D
</code></pre>=0D
<p>where H=E2=80=99 and H are the protected and unprotected header bytes,=
 respectively, and sample is known to the adversary. If we assume mask is=
 the output of a PRP, and therefore both IND-CPA secure and KPA secure, a=
n adversary learns nothing from known plaintext and ciphertext pairs. (Th=
e typical game-based IND-CPA security definition says that an adversary w=
ith access to an oracle for encrypting any message M_i of its choice has =
negligible probability in selecting b, upon giving the challenger M_0 and=
 M_1 and receiving an encryption of M_b. Recovering the header protection=
 key would break this assumption, as it would let the adversary encrypt M=
_0 and M_1 -- without the oracle -- and trivially match against M_b.)</p>=
=0D
<p>All that said, adding text describing that endpoints should precompute=
 keys is probably fine. I=E2=80=99m just not sure it=E2=80=99s needed her=
e.</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/2792?email_source=3Dnotifications&amp;email_token=3D=
AFTOJKZHVOY24KZEE4NNPEDQCD5G3A5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3F44AA#issuecomment-516673024">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK4PGKDVVRLYHH2NMRLQCD5G3ANCNFSM4HYFFILQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK5HYJ54XHDSU5IRWGTQ=
CD5G3A5CNFSM4HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD3F44AA.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/issues/2792?email_source=
=3Dnotifications\u0026email_token=3DAFTOJKZHVOY24KZEE4NNPEDQCD5G3A5CNFSM4=
HYFFIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3F44A=
A#issuecomment-516673024",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2792?email_source=3D=
notifications\u0026email_token=3DAFTOJKZHVOY24KZEE4NNPEDQCD5G3A5CNFSM4HYF=
FIL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3F44AA#i=
ssuecomment-516673024",=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_5d4102ed9c622_7e43fb9d1ccd95c21091a--


From nobody Wed Jul 31 08:15:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6D11D1200F1 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:15:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4QgThMvCvOMP for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:15: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 AC01E120182 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:15:43 -0700 (PDT)
Date: Wed, 31 Jul 2019 08:15:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564586142; bh=KUZIYnokV+IUfXCvlJ4OGLMCtBWGn903vMACP2uWelA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=p27YiCE9xw661IuwDX/W5W7FItXwkDXQldznyQtkBykxVapsKI3QCvR9oyiWW0XN5 /MXRc2qQYjmN+kvRBgWYKES5YGIJXUVDK1XmFQPCHsR/P0rPLn8plJTx9HYHWDVNTm yz23WE6nFu11i9bi6lVNgchA2U0AXbuj8fFFogCQ=
From: choury <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5QT4BNE4PFNULP7DF3J3RR5EVBNHHBYUYPGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2934@github.com>
Subject: [quicwg/base-drafts] The Appendix A of quic-tls is wrong (#2934)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41b09ec8752_7663ff386ccd9688150a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: choury
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bagoum_VxrRzG70oswa15SphD9s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 15:15:46 -0000

----==_mimepart_5d41b09ec8752_7663ff386ccd9688150a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

`HKDF-Extract(0x7fbcdb0e7c66bbe9193a96cd21519ebd7a02644a, 0x8394c8f03e515708)`
will get
``` 
985b345492ea0b2800553589353725ce
679ffd4cfc5d3aea970b52ee38ebcab5
```
Not
```
4496d3903d3f97cc5e45ac5790ddc686
683c7c0067012bb09d900cc21832d596
```


-- 
You are receiving 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/2934
----==_mimepart_5d41b09ec8752_7663ff386ccd9688150a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><code>HKDF-Extract(0x7fbcdb0e7c66bbe9193a96cd21519ebd7a02644a, 0x8394c8f03e515708)</code><br>
will get</p>
<pre><code>985b345492ea0b2800553589353725ce
679ffd4cfc5d3aea970b52ee38ebcab5
</code></pre>
<p>Not</p>
<pre><code>4496d3903d3f97cc5e45ac5790ddc686
683c7c0067012bb09d900cc21832d596
</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/2934?email_source=notifications&amp;email_token=AFTOJK7BAI45RXEOM4A7TTLQCGUB5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTB4ZA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4PGOK5N3UXX3FT5U3QCGUB5ANCNFSM4IIHZFGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYMFYQTX5553WS5AQTQCGUB5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTB4ZA.gif" height="1" width="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/2934?email_source=notifications\u0026email_token=AFTOJK7BAI45RXEOM4A7TTLQCGUB5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTB4ZA",
"url": "https://github.com/quicwg/base-drafts/issues/2934?email_source=notifications\u0026email_token=AFTOJK7BAI45RXEOM4A7TTLQCGUB5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTB4ZA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41b09ec8752_7663ff386ccd9688150a--


From nobody Wed Jul 31 08:20:04 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7ADC112029F for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:20:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BCKef8a_eNIN for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:20: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 CC7AD120296 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:19:58 -0700 (PDT)
Date: Wed, 31 Jul 2019 08:19:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564586397; bh=Tb6I7ZlVDg4I0UPBpLo36gNmIZQ2daouepnk50/5lMk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V3BKkW98FmcetrRtyHscNap8vqH1t4UYIdXdaKpYXTohiCTyCdodL8cYN+1lmaI70 O5bjvY79UJkNbKWW5zaz/creOuK4l74NGWHhW5c8kJP1lSkc+Wu2NqNFX0tFg86ypW 65dFJTWzmK2P8hj8gx5QYG6MPZOcXzBPQZIG1k8c=
From: choury <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7O3YMDRB53YPFKXJF3J3SB3EVBNHHBYUYPGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2934/516895702@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2934@github.com>
References: <quicwg/base-drafts/issues/2934@github.com>
Subject: Re: [quicwg/base-drafts] The Appendix A of quic-tls is wrong (#2934)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41b19d917c8_18813fa8454cd95c969797"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: choury
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NyI2PeMBEw5L9KupPU6NdrdX4KM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 15:20:03 -0000

----==_mimepart_5d41b19d917c8_18813fa8454cd95c969797
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Sorry, a dup of #2885 

-- 
You are receiving 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/2934#issuecomment-516895702
----==_mimepart_5d41b19d917c8_18813fa8454cd95c969797
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Sorry, a dup of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465879872" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2885" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2885/hovercard" href="https://github.com/quicwg/base-drafts/issues/2885">#2885</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/2934?email_source=notifications&amp;email_token=AFTOJK2ORXOYRKAJ5L7R4KLQCGUR3A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HTHVQ#issuecomment-516895702">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK75PIFRN63KSIJEQOTQCGUR3ANCNFSM4IIHZFGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ7Z7J2JVYZBNQZ55TQCGUR3A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HTHVQ.gif" height="1" width="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/2934?email_source=notifications\u0026email_token=AFTOJK2ORXOYRKAJ5L7R4KLQCGUR3A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HTHVQ#issuecomment-516895702",
"url": "https://github.com/quicwg/base-drafts/issues/2934?email_source=notifications\u0026email_token=AFTOJK2ORXOYRKAJ5L7R4KLQCGUR3A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HTHVQ#issuecomment-516895702",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41b19d917c8_18813fa8454cd95c969797--


From nobody Wed Jul 31 08:20:12 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1336E120296 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:20:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dm-UKCGovQ9U for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:20: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 053B41202A5 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:19:59 -0700 (PDT)
Date: Wed, 31 Jul 2019 08:19:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564586398; bh=UyXd+6YRuUxgQJoX3sV47cYZCTQayzidIhdCYnPvOVI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kzlN5I/YU7M7QivPTZL0/23AcD5AoQ6Y0fVurKyGTA2AxpbmNVbMAHq+TBHSAZoQe NBT6Vc4FGR5aZKCzs7qLat0X1FX5t+zC1oC+V057mJVE9E+Chch1Oh874LDn3rgNtx l6+AcBtgNC31WQvr4WUQIlGIdSyjrNsmjvokFgXE=
From: choury <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK454BAUN5OFH6GCGL53J3SB5EVBNHHBYUYPGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2934/issue_event/2523605102@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2934@github.com>
References: <quicwg/base-drafts/issues/2934@github.com>
Subject: Re: [quicwg/base-drafts] The Appendix A of quic-tls is wrong (#2934)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41b19e1e4a8_284b3fd922ecd96c64085a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: choury
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jRMCxL_XfZD6B4LgDrmELiUJqpQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 15:20:04 -0000

----==_mimepart_5d41b19e1e4a8_284b3fd922ecd96c64085a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2934.

-- 
You are receiving 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/2934#event-2523605102
----==_mimepart_5d41b19e1e4a8_284b3fd922ecd96c64085a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="475205426" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2934" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2934/hovercard" href="https://github.com/quicwg/base-drafts/issues/2934">#2934</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/2934?email_source=notifications&amp;email_token=AFTOJK47HAX7BGJFNL27TO3QCGUR5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZVSQ3Q#event-2523605102">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYDQUIOMU63GT5RU4DQCGUR5ANCNFSM4IIHZFGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYIOM3XY7CGWSPYC2LQCGUR5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZVSQ3Q.gif" height="1" width="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/2934?email_source=notifications\u0026email_token=AFTOJK47HAX7BGJFNL27TO3QCGUR5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZVSQ3Q#event-2523605102",
"url": "https://github.com/quicwg/base-drafts/issues/2934?email_source=notifications\u0026email_token=AFTOJK47HAX7BGJFNL27TO3QCGUR5A5CNFSM4IIHZFG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZVSQ3Q#event-2523605102",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41b19e1e4a8_284b3fd922ecd96c64085a--


From nobody Wed Jul 31 08:46:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5312512030B for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:46:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id A58a-RrrZy2w for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08: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 A31761202B0 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:46:37 -0700 (PDT)
Date: Wed, 31 Jul 2019 08:46:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564587996; bh=7yuUs4PEOq7e/PL9/Jgf8FCmhVIJXVhgdKndIR24+qE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=PlVbRwhfM6FM2z1KCxNPeehumgr467QaOMuFXTkxyJotYiawExqxhRg2XC2HX8Pkt SLZnjiK0C3L+Jt9Yaa6B+UEwfqAH6A/Wj+SPHdGP2PkKveweF2owm3GjFHbeioyiYl BEc90UsbO9x6ZA8W9YXUQNWh9pgU1mZxymGILHoQ=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZLWPDEBIFD5VPAUV3J3VFZEVBNHHBYU2QL4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2935@github.com>
Subject: [quicwg/base-drafts] QPACK [editorial] update RIC and Base on figures (#2935)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41b7dcd82d1_4cd03fdd5e6cd95c22336c"; 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/t2tkSP5zlvXD-WENDq7-5t6_BJA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 15:46:39 -0000

----==_mimepart_5d41b7dcd82d1_4cd03fdd5e6cd95c22336c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In my mind Base is an index, so it should point to an entry (relative index 0 means the entry with absolute index one fewer than Base, post-base index 0 means the same entry as Base).  Required Insert Count is a counter, not an index, so it does not belong on figures.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2935

-- Commit Summary --

  * base

-- File Changes --

    M draft-ietf-quic-qpack.md (14)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2935.patch
https://github.com/quicwg/base-drafts/pull/2935.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/2935

----==_mimepart_5d41b7dcd82d1_4cd03fdd5e6cd95c22336c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In my mind Base is an index, so it should point to an entry (relative index 0 means the entry with absolute index one fewer than Base, post-base index 0 means the same entry as Base).  Required Insert Count is a counter, not an index, so it does not belong on figures.</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/2935'>https://github.com/quicwg/base-drafts/pull/2935</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>base</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2935/files#diff-0">draft-ietf-quic-qpack.md</a>
    (14)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2935.patch'>https://github.com/quicwg/base-drafts/pull/2935.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2935.diff'>https://github.com/quicwg/base-drafts/pull/2935.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/2935?email_source=notifications&amp;email_token=AFTOJKZ5STRRE6BS3GZOSO3QCGXVZA5CNFSM4IIIC4GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKBPQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3X5IM4LVHTPTMUAS3QCGXVZANCNFSM4IIIC4GA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FSNNCAIL2TI7F3ATQCGXVZA5CNFSM4IIIC4GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKBPQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2935?email_source=notifications\u0026email_token=AFTOJKZ5STRRE6BS3GZOSO3QCGXVZA5CNFSM4IIIC4GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKBPQ",
"url": "https://github.com/quicwg/base-drafts/pull/2935?email_source=notifications\u0026email_token=AFTOJKZ5STRRE6BS3GZOSO3QCGXVZA5CNFSM4IIIC4GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKBPQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41b7dcd82d1_4cd03fdd5e6cd95c22336c--


From nobody Wed Jul 31 08:48:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 896DA120359 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:48:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.494
X-Spam-Level: 
X-Spam-Status: No, score=-6.494 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VDDWxt3KFSt0 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:48:31 -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 707F012034C for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:48: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 73A8F1C0C2F for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:48:23 -0700 (PDT)
Date: Wed, 31 Jul 2019 08:48:23 -0700
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5X7LFPYTPBNK3NWAF3J3VMPEVBNHHBYU2T4I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2936@github.com>
Subject: [quicwg/base-drafts] QPACK [editorial] Reword paragraph on blocked stream limit. (#2936)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41b847633ce_2d073f80a8ecd96c631de"; 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/gQDEVsLsS7uYKtah8hvHJ-HnM5Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 15:48:33 -0000

----==_mimepart_5d41b847633ce_2d073f80a8ecd96c631de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

* Emphasize that SETTINGS_QPACK_BLOCKED_STREAMS is set by the decoder.
* Move normative sentence on decoder encountering excessive number of blocked streams to this paragraph.
* Split note to separate paragraph.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2936

-- Commit Summary --

  * blocked

-- File Changes --

    M draft-ietf-quic-qpack.md (17)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2936.patch
https://github.com/quicwg/base-drafts/pull/2936.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/2936

----==_mimepart_5d41b847633ce_2d073f80a8ecd96c631de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<ul>
<li>Emphasize that SETTINGS_QPACK_BLOCKED_STREAMS is set by the decoder.</li>
<li>Move normative sentence on decoder encountering excessive number of blocked streams to this paragraph.</li>
<li>Split note to separate paragraph.</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/2936'>https://github.com/quicwg/base-drafts/pull/2936</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>blocked</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2936/files#diff-0">draft-ietf-quic-qpack.md</a>
    (17)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2936.patch'>https://github.com/quicwg/base-drafts/pull/2936.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2936.diff'>https://github.com/quicwg/base-drafts/pull/2936.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/2936?email_source=notifications&amp;email_token=AFTOJK2EJMTVW6J5QMA766LQCGX4PA5CNFSM4IIIDNTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKPRA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5VLBDCGVMO3PHBR7LQCGX4PANCNFSM4IIIDNTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK76U3B5E5ARJEBSX3DQCGX4PA5CNFSM4IIIDNTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKPRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2936?email_source=notifications\u0026email_token=AFTOJK2EJMTVW6J5QMA766LQCGX4PA5CNFSM4IIIDNTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKPRA",
"url": "https://github.com/quicwg/base-drafts/pull/2936?email_source=notifications\u0026email_token=AFTOJK2EJMTVW6J5QMA766LQCGX4PA5CNFSM4IIIDNTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTKPRA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41b847633ce_2d073f80a8ecd96c631de--


From nobody Wed Jul 31 08:52:07 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id ADB88120384 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:52:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sVhLQCu-zeQi for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:52: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 C78F8120381 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:52:04 -0700 (PDT)
Date: Wed, 31 Jul 2019 08:52:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564588323; bh=SulcisvVdVh3hFMj0slk/f6JOUbk8C33u3XluD4/3a0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=bM2Ai4HDFv9e0BJVXQzr89QjF26v2Fdjh8e9qctobvUc6V7AFC6ubd9sZ9trnW5Os +UyIw5fzQ35dBNXRuSQZSegamuERzBoEeHuwgeQpUDg7nmqhoR0zppniNBnczYd/AE 5u8al0D3NQtoGeJUfP6TceRNiMzPhAWLQgUL2rBA=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3K3IMUOCCXJGORY4F3J3V2HEVBNHHBYU23SE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2937@github.com>
Subject: [quicwg/base-drafts] QPACK [editorial] Update text to include both criteria of "blocking entry". (#2937)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41b923a0803_53173ffd1a2cd95c94188"; 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/GgJYDO6MbL4u8-l7B27OWORyPhg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 15:52:07 -0000

----==_mimepart_5d41b923a0803_53173ffd1a2cd95c94188
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The definition of a blocking entry has two parts: insertion not acknowledged, or not all references acknowledged.  Update text in two places to include the part about acknowledging the insertion, lest a reader forget about it.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2937

-- Commit Summary --

  * blocking

-- File Changes --

    M draft-ietf-quic-qpack.md (11)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2937.patch
https://github.com/quicwg/base-drafts/pull/2937.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/2937

----==_mimepart_5d41b923a0803_53173ffd1a2cd95c94188
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The definition of a blocking entry has two parts: insertion not acknowledged, or not all references acknowledged.  Update text in two places to include the part about acknowledging the insertion, lest a reader forget about 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/2937'>https://github.com/quicwg/base-drafts/pull/2937</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>blocking</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2937/files#diff-0">draft-ietf-quic-qpack.md</a>
    (11)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2937.patch'>https://github.com/quicwg/base-drafts/pull/2937.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2937.diff'>https://github.com/quicwg/base-drafts/pull/2937.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/2937?email_source=notifications&amp;email_token=AFTOJKZBWXGFKNYBS5WTAYLQCGYKHA5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTLOIQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2OHN76XWHVPYZRMK3QCGYKHANCNFSM4IIIEQTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7E3OSCXT6EJZIXJO3QCGYKHA5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTLOIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2937?email_source=notifications\u0026email_token=AFTOJKZBWXGFKNYBS5WTAYLQCGYKHA5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTLOIQ",
"url": "https://github.com/quicwg/base-drafts/pull/2937?email_source=notifications\u0026email_token=AFTOJKZBWXGFKNYBS5WTAYLQCGYKHA5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTLOIQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41b923a0803_53173ffd1a2cd95c94188--


From nobody Wed Jul 31 08:59:11 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D83711202B5 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:59:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7qDeebSpH90f for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 08:58:58 -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 DC45A1202B1 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 08:58:57 -0700 (PDT)
Date: Wed, 31 Jul 2019 08:58:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564588737; bh=/uBsm1tF6PtSB7puL5pHwh4O4XEUtROvB6AgPzIOEsg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=dS9B3XnN10dXWgI9CcnwwXW4TUdelQ0enW83hb8zpFO1nkeKEmSEX0wOARH2XVldF j5cdLDx9U6qo7dsUS3hp7qQABg1Fvfa9pop3nYlBNjxlMjUmuoQVjTunRzAPsMT2WC H313fKV1rBPhjoFy49bg1k4i/UnYlp7c6Kq/rCtg=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6U7DH6PKIGKF3B2QV3J3WUDEVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938@github.com>
Subject: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bac124900_161a3fab522cd96c52513"; 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/Dk6OsVTfHzRrXmE9FB1o6I3W0V8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 15:59:01 -0000

----==_mimepart_5d41bac124900_161a3fab522cd96c52513
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

* Use more uniform language in description of instructions: "begin" instead of "start" everywhere (arbitrarily, but make it consistent); "follows" instead of "includes" or implicit mention of a field.
* Prefer internal references to external ones, also elsewhere.
* Prefer "instruction" to "representation" in low-level contexts focusing on wire format, but not in higher-level contexts.
* Avoid undefined term "header block representation" when it is used to mean "header block".
* Explicitly allow a header block to not have any instructions after the mandatory prefix.
* Refer to Literal Header Field With Name Reference section in Literal Header Field Without Name Reference instead of verbatim repeating text on 'N' bit.

You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2938

-- Commit Summary --

  * instructions

-- File Changes --

    M draft-ietf-quic-qpack.md (175)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2938.patch
https://github.com/quicwg/base-drafts/pull/2938.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/2938

----==_mimepart_5d41bac124900_161a3fab522cd96c52513
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<ul>
<li>Use more uniform language in description of instructions: "begin" instead of "start" everywhere (arbitrarily, but make it consistent); "follows" instead of "includes" or implicit mention of a field.</li>
<li>Prefer internal references to external ones, also elsewhere.</li>
<li>Prefer "instruction" to "representation" in low-level contexts focusing on wire format, but not in higher-level contexts.</li>
<li>Avoid undefined term "header block representation" when it is used to mean "header block".</li>
<li>Explicitly allow a header block to not have any instructions after the mandatory prefix.</li>
<li>Refer to Literal Header Field With Name Reference section in Literal Header Field Without Name Reference instead of verbatim repeating text on 'N' bit.</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/2938'>https://github.com/quicwg/base-drafts/pull/2938</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>instructions</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2938/files#diff-0">draft-ietf-quic-qpack.md</a>
    (175)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2938.patch'>https://github.com/quicwg/base-drafts/pull/2938.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2938.diff'>https://github.com/quicwg/base-drafts/pull/2938.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/2938?email_source=notifications&amp;email_token=AFTOJK4TG2AZJLVNX7MIKP3QCGZEDA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTNECQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSVF25ITJCO7OKPHDQCGZEDANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBQRDQ2W2Q5VNCVOTQCGZEDA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTNECQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK4TG2AZJLVNX7MIKP3QCGZEDA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTNECQ",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK4TG2AZJLVNX7MIKP3QCGZEDA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTNECQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41bac124900_161a3fab522cd96c52513--


From nobody Wed Jul 31 09:01:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AE2C31202B1 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:01:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TVNxYeY_BtVY for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:01: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 E6944120018 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:01:01 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:01:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564588861; bh=Kk0iFuYAixAVrTbipFrVcPwgpuxEOblnoZGqUO22X5I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CfE2jSRNbksjllEF2Cl0guKn+o0LXc0aHgcz9v5Qn5P33wKyPXGKbPhFJ06T3eJtd nwL58VAwQBpZ7pTLcQ/QskeO3Fd2+/49BgvjI+XSnau8FdQC2pfvjJqfUFXq58zkqq r3ePV0Sb1JJyP3WpuzCIhzy+Z6GwJBrwZQoMAv/U=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4H5J5J7KAQAKW6DDN3J3W33EVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938/review/269117964@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2938@github.com>
References: <quicwg/base-drafts/pull/2938@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bb3dd957_40ea3f8607ecd96c1526a"; 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/Jc4In5WBUkyYEK-Jo0VjC_t20b4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:01:04 -0000

----==_mimepart_5d41bb3dd957_40ea3f8607ecd96c1526a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  The following bit, 'N', indicates whether an intermediary is permitted to add
 this header to the dynamic header table on subsequent hops. When the 'N' bit is
-set, the encoded header MUST always be encoded with a literal representation. In
-particular, when a peer sends a header field that it received represented as a
-literal header field with the 'N' bit set, it MUST use a literal representation
-to forward this header field.  This bit is intended for protecting header field

The sentence starting with "In particular" does not seem to add any value, therefore I propose removing 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/2938#pullrequestreview-269117964
----==_mimepart_5d41bb3dd957_40ea3f8607ecd96c1526a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2938#discussion_r309303020">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  The following bit, &#39;N&#39;, indicates whether an intermediary is permitted to add
 this header to the dynamic header table on subsequent hops. When the &#39;N&#39; bit is
-set, the encoded header MUST always be encoded with a literal representation. In
-particular, when a peer sends a header field that it received represented as a
-literal header field with the &#39;N&#39; bit set, it MUST use a literal representation
-to forward this header field.  This bit is intended for protecting header field
</pre>
<p>The sentence starting with "In particular" does not seem to add any value, therefore I propose removing 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/2938?email_source=notifications&amp;email_token=AFTOJK7A2BNKU5DB2OT55I3QCGZL3A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFGUDA#pullrequestreview-269117964">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72TNVYYCSNMRWBXR3QCGZL3ANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK72K23ZQT6TXS3OANDQCGZL3A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFGUDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK7A2BNKU5DB2OT55I3QCGZL3A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFGUDA#pullrequestreview-269117964",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK7A2BNKU5DB2OT55I3QCGZL3A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFGUDA#pullrequestreview-269117964",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41bb3dd957_40ea3f8607ecd96c1526a--


From nobody Wed Jul 31 09:03:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8B6B4120018 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:03:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id paIrv0ArXZMX for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:03: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 ED9EB120328 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:03:22 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:03:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564589002; bh=mJ8/6Yb7tsMjceDkTJ5+dQnWD+ISd/p7vMEkGSFVQCU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ENtsHJR8rQSptra3yvU7hTmhxdFDQSNL8GEfFKmoR5+fWNlQafZq2phOOCzWippST gcwWohT640RSW6Q35yFqybMY+XgnE49/9OD78a00n96YL4bO/D1K+oyqGF39ElDPN6 bQWzsALezuDwXU49Pj7IxWlBsqPKXzkav7K/b724=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CDA4KXSEZD3IU7B53J3XEVEVBNHHBYU3R64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2939@github.com>
Subject: [quicwg/base-drafts] QPACK [design] Decoder MUST emit Header Acknowledgement. (#2939)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bbca44388_3b483fde9b8cd96c1098af"; 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/Zz9UkdwOEhmY_yDT3XDRmwNy1Fs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:03:33 -0000

----==_mimepart_5d41bbca44388_3b483fde9b8cd96c1098af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Add MUST to sentence about requirement on decoder to emit a Header Acknowledgement instruction every time it decodes a header block with non-zero Required Insert Count.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2939

-- Commit Summary --

  * MUST emit Header Acknowledgement

-- File Changes --

    M draft-ietf-quic-qpack.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2939.patch
https://github.com/quicwg/base-drafts/pull/2939.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/2939

----==_mimepart_5d41bbca44388_3b483fde9b8cd96c1098af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Add MUST to sentence about requirement on decoder to emit a Header Acknowledgement instruction every time it decodes a header block with non-zero Required Insert Count.</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/2939'>https://github.com/quicwg/base-drafts/pull/2939</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>MUST emit Header Acknowledgement</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2939/files#diff-0">draft-ietf-quic-qpack.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2939.patch'>https://github.com/quicwg/base-drafts/pull/2939.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2939.diff'>https://github.com/quicwg/base-drafts/pull/2939.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/2939?email_source=notifications&amp;email_token=AFTOJK3RBLJIUFXOSOPXNGDQCGZUVA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTOH3Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5RFEAHZO2DT3PX2ALQCGZUVANCNFSM4IIIH3CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ELZ7Q2RKJZQ2MBS3QCGZUVA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTOH3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK3RBLJIUFXOSOPXNGDQCGZUVA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTOH3Q",
"url": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK3RBLJIUFXOSOPXNGDQCGZUVA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTOH3Q",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41bbca44388_3b483fde9b8cd96c1098af--


From nobody Wed Jul 31 09:05:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id D0EBF120350 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:05:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id htV8xrtmBU0M for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:05: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 144A712033C for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:05:42 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:05:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564589141; bh=QIIhdqTgKlS0D2oye7fR0UFAtNhmljbrRTNn0YHGNMY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ebmg9VYmC0bQdMMJpHjun1otptxeGM5uIwWuU/koLQTqDcHJ8ki3Tc8MLKZcst/1I zQiv5gKhZq14ebnZ3DP6cL+OGiGVCxThnvqx60v3imTQScsZ8AWrEogOnsII2kGJq+ OrBITyP112Xv/pL+GyO1otI6dncUSyUenaUauPsQ=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6F2VGF74UEATVL7XF3J3XNLEVBNHHBYU2T4I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2936/c516914881@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2936@github.com>
References: <quicwg/base-drafts/pull/2936@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Reword paragraph on blocked stream limit. (#2936)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bc55548c4_478b3fb85a4cd964291196"; 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/H4F-24Mrh6KHHZgT5NTI5jpmTvo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:05:44 -0000

----==_mimepart_5d41bc55548c4_478b3fb85a4cd964291196
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

:+1: This reads much better 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/2936#issuecomment-516914881
----==_mimepart_5d41bc55548c4_478b3fb85a4cd964291196
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><g-emoji class=3D"g-emoji" alias=3D"+1" fallback-src=3D"https://github=
.githubassets.com/images/icons/emoji/unicode/1f44d.png">=F0=9F=91=8D</g-e=
moji> This reads much better to me.</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/2936?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK3EFFCQ5F4CTAI4P5LQCGZ5LA5CNFSM4IIIDNTKYY3PNVWWK3TUL52HS4DFVREXG43VMV=
BW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HX5QI#issuecomment-516914881">view it on =
GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-au=
th/AFTOJK6DCKR2TYRATS75UQTQCGZ5LANCNFSM4IIIDNTA">mute the thread</a>.<img=
 src=3D"https://github.com/notifications/beacon/AFTOJK3KJQHFCURQYVJI5XLQC=
GZ5LA5CNFSM4IIIDNTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOOR=
PWSZGOD3HX5QI.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/2936?email_source=3D=
notifications\u0026email_token=3DAFTOJK3EFFCQ5F4CTAI4P5LQCGZ5LA5CNFSM4III=
DNTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HX5QI#i=
ssuecomment-516914881",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2936?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK3EFFCQ5F4CTAI4P5LQCGZ5LA5CNFSM4IIIDN=
TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HX5QI#iss=
uecomment-516914881",=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_5d41bc55548c4_478b3fb85a4cd964291196--


From nobody Wed Jul 31 09:05:59 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 35BC912033C for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:05:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vaBIZqpKYY7D for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:05:55 -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 70B2D12036D for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:05:55 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:05:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564589154; bh=yUXVZ91ElDIm6smNW/7/hucJZzNPxfQJNO3iqTP21Jg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=0wvfdwSADPkPTwEABkWqAkUXAFoWgbfQP5egSo2KQfxilGIz8F1lDJk7a/TYZM3St xbXhP48OvSUAL4YYOcQKYqSpUsfeHecj9jpP21khTLMsdAuO+mI7b2iTi21olph+zG cU+zUTp3HIqZNyNzPUSmAQAbEDkQi+Hqn1P5Jc6Q=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63BO3GRWG6LUPOZ5N3J3XOFEVBNHHBYU3W2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2940@github.com>
Subject: [quicwg/base-drafts] QPACK [editorial] Post-base index is not relative index. (#2940)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bc6253fb9_4bec3ff6d5ecd964190384"; 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/5xanIfHAuP35_BjJbnR0vQNwWU0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:05:57 -0000

----==_mimepart_5d41bc6253fb9_4bec3ff6d5ecd964190384
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Since post-base index has a section separate from relative index, I do not consider post-base index a type of relative index, but a distinct category.  Update text accordingly.

If the consensus is that this is not the case, relative index and post-base index sections should be reworded, and a new term should be introduced for non-post-base relative index.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2940

-- Commit Summary --

  * post-base index is not relative index

-- File Changes --

    M draft-ietf-quic-qpack.md (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2940.patch
https://github.com/quicwg/base-drafts/pull/2940.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/2940

----==_mimepart_5d41bc6253fb9_4bec3ff6d5ecd964190384
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Since post-base index has a section separate from relative index, I do not consider post-base index a type of relative index, but a distinct category.  Update text accordingly.</p>
<p>If the consensus is that this is not the case, relative index and post-base index sections should be reworded, and a new term should be introduced for non-post-base relative index.</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/2940'>https://github.com/quicwg/base-drafts/pull/2940</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>post-base index is not relative index</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2940/files#diff-0">draft-ietf-quic-qpack.md</a>
    (6)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2940.patch'>https://github.com/quicwg/base-drafts/pull/2940.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2940.diff'>https://github.com/quicwg/base-drafts/pull/2940.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/2940?email_source=notifications&amp;email_token=AFTOJKZLYQZVE3WT3B64JITQCGZ6FA5CNFSM4IIIISAKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTO3KA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZAILZ46HXRFIA4NY3QCGZ6FANCNFSM4IIIISAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4JV7DEU4VT74HLETTQCGZ6FA5CNFSM4IIIISAKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTO3KA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2940?email_source=notifications\u0026email_token=AFTOJKZLYQZVE3WT3B64JITQCGZ6FA5CNFSM4IIIISAKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTO3KA",
"url": "https://github.com/quicwg/base-drafts/pull/2940?email_source=notifications\u0026email_token=AFTOJKZLYQZVE3WT3B64JITQCGZ6FA5CNFSM4IIIISAKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTO3KA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41bc6253fb9_4bec3ff6d5ecd964190384--


From nobody Wed Jul 31 09:10:31 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B06351203A2 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:10:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GLx6Y5nD3u9Z for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:10:28 -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 24D2F1203D3 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:10:23 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:10:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564589422; bh=q100GR+m6+dmgGNWTKZCGeqNxpTdp1Q6rym7oOtif48=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yGqBv2VOswLwZu95PxvNTZ9Y3FUXCBWoWJvMY8Gyib3QsYgCkueKkdH8rZwwkBK2F +APwprlChGb3V8HpsYTXzepg5aFcw0IHgCKDw0cye7Gn4nBPYiVovlWWz93WXX7JFF 8196go0u9uEoRLk5bvh1XkWNLdw3QX7fqThU9Wz0=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYDVIGTL3CAGD3LX7N3J3X65EVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938/c516916665@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2938@github.com>
References: <quicwg/base-drafts/pull/2938@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bd6e463f3_61413f8a650cd96822257a"; 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/-UyHVnwvE2pWn7lrRrRf0ZJ0ySg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:10:30 -0000

----==_mimepart_5d41bd6e463f3_61413f8a650cd96822257a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Sorry, let me 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/pull/2938#issuecomment-516916665
----==_mimepart_5d41bd6e463f3_61413f8a650cd96822257a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Sorry, let me 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/pull/2938?email_source=notifications&amp;email_token=AFTOJK75GONMA6RWXJX5UQ3QCG2O5A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HYLOI#issuecomment-516916665">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK322SQTJPFWMDJ555LQCG2O5ANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2UBVDLERFRXRFXZCDQCG2O5A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HYLOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK75GONMA6RWXJX5UQ3QCG2O5A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HYLOI#issuecomment-516916665",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK75GONMA6RWXJX5UQ3QCG2O5A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3HYLOI#issuecomment-516916665",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41bd6e463f3_61413f8a650cd96822257a--


From nobody Wed Jul 31 09:10:40 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2DE331203A2 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:10:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id y9PQpRwz438F for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:10: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 2D1C61203CA for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:10:24 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:10:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564589423; bh=LVGoebvmqn54CZRFOMsPXgY3fmlTOtXoyi0g0KEegII=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zytghfy1zIe8J7zbkmwHKJ9NJGKdZAZXyhWg1yqstKGJ92iM4kCPmRlfutvRGE2zR yosSvRrKW10+G84W7yqT9nPlOdFjKuoN1n2/ZwBHyZD9U2fIwbORwqfnKhYd7j47fA a3yQ8RicCVLxO8vR2p5ZjC8KtHE8BwrcmeP0AjWQ=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYUDJDDOCZ3PLYZEC53J3X67EVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938/issue_event/2523772647@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2938@github.com>
References: <quicwg/base-drafts/pull/2938@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bd6f7309f_ac53ff3876cd968157894"; 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/ytx_gnTyD6Bezzxb-hr8oqDJT5U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:10:31 -0000

----==_mimepart_5d41bd6f7309f_ac53ff3876cd968157894
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2938.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2938#event-2523772647
----==_mimepart_5d41bd6f7309f_ac53ff3876cd968157894
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="475228421" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2938" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2938/hovercard" href="https://github.com/quicwg/base-drafts/pull/2938">#2938</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/2938?email_source=notifications&amp;email_token=AFTOJKYY62QSWLD54AVUFGTQCG2O7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZW3NZY#event-2523772647">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5IWWKZFZ7ERWPHWV3QCG2O7ANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KEWF5VJGPPHR645DQCG2O7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZW3NZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJKYY62QSWLD54AVUFGTQCG2O7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZW3NZY#event-2523772647",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJKYY62QSWLD54AVUFGTQCG2O7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZW3NZY#event-2523772647",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41bd6f7309f_ac53ff3876cd968157894--


From nobody Wed Jul 31 09:20:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5C9461203DA for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:20:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.999
X-Spam-Level: 
X-Spam-Status: No, score=-7.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OOPpPy354WEP for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:20: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 63D661203D9 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:20:16 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:20:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564590015; bh=9VTIMuuKKU+WW83DivjvBLrTeuYNk0BHQ2oflJ0fQZg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SMkurOYbCuvwLYzzuv/d3Ge2Ybxs4qvepwQ4B8W1B+2v6BdbeldrvZR8tWG2Ox+hT Zscsc/y+mcKRQqYAApawmue/msh39uyNf9bvGgaiFDwnisKUFGwVGKcqd2E8clHhQP QxXZmWuMcFKkdeMkqFB9NCVtptE0LLnp7YkZx2ws=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZSLX25YAX5WC2N7SV3J3ZD7EVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938/review/269122918@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2938@github.com>
References: <quicwg/base-drafts/pull/2938@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41bfbf70eea_6bcc3ff6d5ecd9643519b4"; 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/g4x-knNw2EDSxM5dd7ksyeOvfGI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:20:18 -0000

----==_mimepart_5d41bfbf70eea_6bcc3ff6d5ecd9643519b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

LPardue commented on this pull request.

I think these changes are good. They address an editorial annoyance I had but never got around to suggesting a fix. 

Alan may have something to say about the change to Represetnation, because that was introduced fairly recently. 

> @@ -170,13 +170,13 @@ decoder and vice versa.
 
 An encoder converts a header list into a header block by emitting either an
 indexed or a literal representation for each header field in the list (see
-{{header-block-representations}}).  Indexed representations achieve high
-compression by replacing the literal name and possibly the value with an index
-to either the static or dynamic table.  References to the static table and
-literal representations do not require any dynamic state and never risk
-head-of-line blocking.  References to the dynamic table risk head-of-line
-blocking if the encoder has not received an acknowledgement indicating the entry
-is available at the decoder.
+{{header-blocks}}).  Indexed representations achieve high compression by

`header-blocks` is a dangling  reference , causing the build 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/pull/2938#pullrequestreview-269122918
----==_mimepart_5d41bfbf70eea_6bcc3ff6d5ecd9643519b4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@LPardue</b> commented on this pull request.</p>

<p>I think these changes are good. They address an editorial annoyance I had but never got around to suggesting a fix.</p>
<p>Alan may have something to say about the change to Represetnation, because that was introduced fairly recently.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2938#discussion_r309306928">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -170,13 +170,13 @@ decoder and vice versa.
 
 An encoder converts a header list into a header block by emitting either an
 indexed or a literal representation for each header field in the list (see
-{{header-block-representations}}).  Indexed representations achieve high
-compression by replacing the literal name and possibly the value with an index
-to either the static or dynamic table.  References to the static table and
-literal representations do not require any dynamic state and never risk
-head-of-line blocking.  References to the dynamic table risk head-of-line
-blocking if the encoder has not received an acknowledgement indicating the entry
-is available at the decoder.
+{{header-blocks}}).  Indexed representations achieve high compression by
</pre>
<p><code>header-blocks</code> is a dangling  reference , causing the build 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/pull/2938?email_source=notifications&amp;email_token=AFTOJKZ6ER4QYI6MFEPLBK3QCG3T7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFH2ZQ#pullrequestreview-269122918">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HM5ISHS2RTFPR2B3QCG3T7ANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RZAE3TNGVOALDPPTQCG3T7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFH2ZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJKZ6ER4QYI6MFEPLBK3QCG3T7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFH2ZQ#pullrequestreview-269122918",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJKZ6ER4QYI6MFEPLBK3QCG3T7A5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFH2ZQ#pullrequestreview-269122918",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41bfbf70eea_6bcc3ff6d5ecd9643519b4--


From nobody Wed Jul 31 09:33:19 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id AD1C3120123 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:33:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SbxX8lq8UxAY for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:33:15 -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 8285A120104 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:33:15 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:33:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564590794; bh=prE3Vm5ORpAvvdzfg7wAWAoF88YRU6IP1hhWofPYeTU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IBVlquvyIzE3OxI5zi5DH9yvCCE9I5rNkWW28qsvGJqThPb1c1CTbO6yewn7kNRmo yiqTNvg/o53Vtbq0/3OUTtabirqdrf1mQ2c98yBRqCgMsnjAdDJjfwm8Hh5RGQCYHr 2M5OMQAC4YIRkS2HeU0gENT2C9x2bmvpf14r3LL4=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BE4JN4TMKJHVFNNV3J32UVEVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938/c516924742@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2938@github.com>
References: <quicwg/base-drafts/pull/2938@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c2ca92d6f_5f7a3f8a650cd968299263"; 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/V8Bt2ZSWBjB2YL9N6jbVzU7uDUA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:33:18 -0000

----==_mimepart_5d41c2ca92d6f_5f7a3f8a650cd968299263
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I think these changes are good. They address an editorial annoyance I had but never got around to suggesting a fix.
> 
> Alan may have something to say about the change to Represetnation, because that was introduced fairly recently.

Thanks.  I have totally misunderstood "representation", so now I'm working on a new PR that includes most changes except for that one.  I closed this PR in a haste to prevent people from wasting time proofreading it.

Also, thank you for pointing out the build failure to me, I did not know where to look for in the error log.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2938#issuecomment-516924742
----==_mimepart_5d41c2ca92d6f_5f7a3f8a650cd968299263
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I think these changes are good. They address an editorial annoyance I had but never got around to suggesting a fix.</p>
<p>Alan may have something to say about the change to Represetnation, because that was introduced fairly recently.</p>
</blockquote>
<p>Thanks.  I have totally misunderstood "representation", so now I'm working on a new PR that includes most changes except for that one.  I closed this PR in a haste to prevent people from wasting time proofreading it.</p>
<p>Also, thank you for pointing out the build failure to me, I did not know where to look for in the error log.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications&amp;email_token=AFTOJK7JCIFR7RH3DL6PINTQCG5EVA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2KRQ#issuecomment-516924742">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5EBKISMDVYWWH3Y3TQCG5EVANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HTA2BFMEIN6EN2ZLQCG5EVA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2KRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK7JCIFR7RH3DL6PINTQCG5EVA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2KRQ#issuecomment-516924742",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK7JCIFR7RH3DL6PINTQCG5EVA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2KRQ#issuecomment-516924742",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c2ca92d6f_5f7a3f8a650cd968299263--


From nobody Wed Jul 31 09:36:27 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 33537120123 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:36:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.455
X-Spam-Level: 
X-Spam-Status: No, score=-6.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 tsXelbfrR1Bx for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:36: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 2CFD8120104 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:36:25 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:36:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564590984; bh=pi1v2ev//dVf+Zn8/I5B6TvHpDthR4uLS/gANb5afRs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jSeAux0AYTNRq1a33aUZTRPheOjdsqhQ+MkIs9J/BCBd5Ubw61GdCTN+KGPAuTxF8 vrypqcHOxiEvJwCAPlbLGRcIxKNGzpzcCgOelkyRqYPE+6u506ahH7uERTIoB5wHiA 3dBOmxZrk3ywBoaTnCDnzAOOR3jQppKC3jCSXkwo=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5OF6NK3777LO7QAN53J33AREVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938/c516925837@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2938@github.com>
References: <quicwg/base-drafts/pull/2938@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c3881eaee_65ff3f8dd10cd96c363831"; 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/RSHY_LcAGb-b-PcFSYpez0PL0d8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:36:26 -0000

----==_mimepart_5d41c3881eaee_65ff3f8dd10cd96c363831
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

hehe, no probs. Thanks for making effort to do PRs.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2938#issuecomment-516925837
----==_mimepart_5d41c3881eaee_65ff3f8dd10cd96c363831
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>hehe, no probs. Thanks for making effort to do PRs.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications&amp;email_token=AFTOJKY5DEJPBDWH46Y4HQDQCG5QRA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2TDI#issuecomment-516925837">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3F4DCOBQ4TR4NHKG3QCG5QRANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4PI5YZ5Z7VG6YASSTQCG5QRA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2TDI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJKY5DEJPBDWH46Y4HQDQCG5QRA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2TDI#issuecomment-516925837",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJKY5DEJPBDWH46Y4HQDQCG5QRA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H2TDI#issuecomment-516925837",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c3881eaee_65ff3f8dd10cd96c363831--


From nobody Wed Jul 31 09:37:34 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B9B821203CA for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:37:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e6cafVRE4vGu for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:37:31 -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 9211A1203CD for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:37:23 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:37:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564591042; bh=5cljmN4ukZB3V1D/0TrJMtvwfl22hn8FiClSozqHUSg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=SuLDgdjYfNO3jtt/A8PlATwszYXUkv+VaOLzCHe4j7futJP31cR8Ce5n02c/fX9/A c67lQfQjgguHDMlm/2HfE6bDwwUfrcg//GVD94GJY5PFMza533F0RwHvFTluB5CZ9S MaE26HWNWpNAjNDL0zMn8wsJX3CvBhEFsZbgGw1Q=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3D6UQFK2VD3THITY53J33EFEVBNHHBYU5PJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2941@github.com>
Subject: [quicwg/base-drafts] QPACK [editorial] Update text on instructions and representations. (#2941)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c3c28541e_53173ffd1a2cd95c36916"; 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/Wl6002trksvV9E7pye89vx7RLZQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:37:33 -0000

----==_mimepart_5d41c3c28541e_53173ffd1a2cd95c36916
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

* Use more uniform and more specific language in description of instructions, like "follows" instead of 
  "includes" or implicit mention of a field.
* Add references to integer and string encodings where missing.
* Prefer internal references to external ones (also in Section 1.2).
* Explicitly allow a header block to not have any instructions after the mandatory prefix.
* Refer to Literal Header Field With Name Reference section in Literal Header Field Without Name Reference instead of verbatim repeating text on 'N' bit.
* Reshuffle sentences, insert references instead, remove sentences where references suffice.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2941

-- Commit Summary --

  * clarify wire format

-- File Changes --

    M draft-ietf-quic-qpack.md (134)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2941.patch
https://github.com/quicwg/base-drafts/pull/2941.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/2941

----==_mimepart_5d41c3c28541e_53173ffd1a2cd95c36916
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<ul>
<li>Use more uniform and more specific language in description of instructions, like "follows" instead of<br>
"includes" or implicit mention of a field.</li>
<li>Add references to integer and string encodings where missing.</li>
<li>Prefer internal references to external ones (also in Section 1.2).</li>
<li>Explicitly allow a header block to not have any instructions after the mandatory prefix.</li>
<li>Refer to Literal Header Field With Name Reference section in Literal Header Field Without Name Reference instead of verbatim repeating text on 'N' bit.</li>
<li>Reshuffle sentences, insert references instead, remove sentences where references suffice.</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/2941'>https://github.com/quicwg/base-drafts/pull/2941</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>clarify wire format</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2941/files#diff-0">draft-ietf-quic-qpack.md</a>
    (134)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2941.patch'>https://github.com/quicwg/base-drafts/pull/2941.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2941.diff'>https://github.com/quicwg/base-drafts/pull/2941.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/2941?email_source=notifications&amp;email_token=AFTOJK5XMB3ACTN7KPVSKCTQCG5UFA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTV5GQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTM3DT6MOV3OVPUHTQCG5UFANCNFSM4IIIQ7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ROLWFDJBJX5PGU63QCG5UFA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTV5GQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJK5XMB3ACTN7KPVSKCTQCG5UFA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTV5GQ",
"url": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJK5XMB3ACTN7KPVSKCTQCG5UFA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTV5GQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41c3c28541e_53173ffd1a2cd95c36916--


From nobody Wed Jul 31 09:41:05 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2F767120429 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:40:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.998
X-Spam-Level: 
X-Spam-Status: No, score=-7.998 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h_6z9pHVdlQk for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:40: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 EF6911203AB for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:40:56 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:40:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564591256; bh=yVlpFDWHRBgSYHQDp1Iec78o0dPQbfDnKKf4ysR1t/4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KL4gTyoWdQBgQ4TQs9TQMYs34uDyiuGDkcGbxRmswO4Hg3hWhTJROmGLiHVlLlp0I vAHs/OwCFM1KhI5rw2qB5YAeqbjISrRTFLCpCjeuYBGDqbMyFd32SUnJ+BsDbv+nay ZfG4rvn77GT8ypsr1q7pu7bNDc+bnMbuMXItO5g0=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7DZEX4736S5MVHFD53J33RREVBNHHBYU5PJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2941/review/269141914@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2941@github.com>
References: <quicwg/base-drafts/pull/2941@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on instructions and representations. (#2941)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c49832cb6_57503fd3490cd9684027ed"; 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/QTS8DCFELG1rbo7MOO5YOyp6v0A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:40:59 -0000

----==_mimepart_5d41c49832cb6_57503fd3490cd9684027ed
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -798,13 +804,14 @@ as a 6-bit prefix integer.  See {{state-synchronization}}.
 
 ### Insert Count Increment
 
-The Insert Count Increment instruction begins with the '00' two-bit pattern.
-The instruction specifies the total number of dynamic table inserts and
-duplications since the last Insert Count Increment or Header Acknowledgement
-that increased the Known Received Count for the dynamic table (see
-{{known-received-count}}).  The Increment field is encoded as a 6-bit prefix
-integer. The encoder uses this value to determine which table entries might
-cause a stream to become blocked, as described in {{state-synchronization}}.
+The Insert Count Increment instruction begins with the '00' two-bit pattern,
+followed by the Increment encoded as a 6-bit prefix integer.  The value of the
+Increment is the total number of dynamic table insertions and duplications
+processed by the decoder since the last time it sent a Header Acknowledgement
+instruction that increased the Known Received Count (see

I'm swapping Header Acknowledgement and Insert Count Instruction to avoid the possibility that somebody get the impression that an Insert Count Increment might not increase the Known Received Count.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2941#pullrequestreview-269141914
----==_mimepart_5d41c49832cb6_57503fd3490cd9684027ed
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2941#discussion_r309321767">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -798,13 +804,14 @@ as a 6-bit prefix integer.  See {{state-synchronization}}.
 
 ### Insert Count Increment
 
-The Insert Count Increment instruction begins with the &#39;00&#39; two-bit pattern.
-The instruction specifies the total number of dynamic table inserts and
-duplications since the last Insert Count Increment or Header Acknowledgement
-that increased the Known Received Count for the dynamic table (see
-{{known-received-count}}).  The Increment field is encoded as a 6-bit prefix
-integer. The encoder uses this value to determine which table entries might
-cause a stream to become blocked, as described in {{state-synchronization}}.
+The Insert Count Increment instruction begins with the &#39;00&#39; two-bit pattern,
+followed by the Increment encoded as a 6-bit prefix integer.  The value of the
+Increment is the total number of dynamic table insertions and duplications
+processed by the decoder since the last time it sent a Header Acknowledgement
+instruction that increased the Known Received Count (see
</pre>
<p>I'm swapping Header Acknowledgement and Insert Count Instruction to avoid the possibility that somebody get the impression that an Insert Count Increment might not increase the Known Received Count.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications&amp;email_token=AFTOJKY732CTLHKFCA5D2ELQCG6BRA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMPGQ#pullrequestreview-269141914">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4TZNZIRSVOCNY7KOLQCG6BRANCNFSM4IIIQ7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK74COS2RSMDUMB3AKTQCG6BRA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMPGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJKY732CTLHKFCA5D2ELQCG6BRA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMPGQ#pullrequestreview-269141914",
"url": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJKY732CTLHKFCA5D2ELQCG6BRA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMPGQ#pullrequestreview-269141914",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c49832cb6_57503fd3490cd9684027ed--


From nobody Wed Jul 31 09:42:47 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E921012043F for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:42:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id O6bs5SSmF9M1 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:42:44 -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 51ED712043B for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:42:44 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:42:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564591363; bh=QRLkvK/95e8jZegr87gG9sOzOV7tRVq+0lKFLY26Usw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mhOwGhL790q+T8p8+lsSxnsvwnK3rN9gfbs1i87PaFnJPrvieiDwzi3OuHnTnTyWe KBb0dWE1BXeeVgDVXcjevHYSXK/BwvEp6ibeRm63LDnJN+y13a1COgCitLYz1oyDPt Q7IqD+EUl+ghltBzp0EozZP62Z6jP5zoUWpboABA=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3QSYQSSNBAEGNQDXV3J33YHEVBNHHBYU5PJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2941/review/269142869@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2941@github.com>
References: <quicwg/base-drafts/pull/2941@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on instructions and representations. (#2941)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c5033a5b6_42393f9d8b0cd95c3464f1"; 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/5MHB0rKpVT-5AvNbgI03O6n8YEU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:42:46 -0000

----==_mimepart_5d41c5033a5b6_42393f9d8b0cd95c3464f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -821,10 +828,13 @@ connection error of type `HTTP_QPACK_DECODER_STREAM_ERROR`.
 
 ## Header Block Representations
 
-Header blocks contain compressed representations of header lists and are carried

Representations of header lists?  Representations of header fields?  Also, plural hides that blocks and lists have a one-to-one correspondance.  These are my motivations to reword.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2941#pullrequestreview-269142869
----==_mimepart_5d41c5033a5b6_42393f9d8b0cd95c3464f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2941#discussion_r309322509">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -821,10 +828,13 @@ connection error of type `HTTP_QPACK_DECODER_STREAM_ERROR`.
 
 ## Header Block Representations
 
-Header blocks contain compressed representations of header lists and are carried
</pre>
<p>Representations of header lists?  Representations of header fields?  Also, plural hides that blocks and lists have a one-to-one correspondance.  These are my motivations to reword.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications&amp;email_token=AFTOJK7F7JLE2H4N3PENAR3QCG6IHA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMWVI#pullrequestreview-269142869">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYFBYKGNWDWMCFOJW3QCG6IHANCNFSM4IIIQ7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5DJVL4PL6QCA66POLQCG6IHA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMWVI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJK7F7JLE2H4N3PENAR3QCG6IHA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMWVI#pullrequestreview-269142869",
"url": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJK7F7JLE2H4N3PENAR3QCG6IHA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFMWVI#pullrequestreview-269142869",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c5033a5b6_42393f9d8b0cd95c3464f1--


From nobody Wed Jul 31 09:43:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6353012043B for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:43:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SaPmrfBcuND0 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:43: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 9E58B120448 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:43:39 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:43:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564591418; bh=6oROREQh7bEek3/e34S95epTGrgExHSQLF+s5aDf648=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MBdKsotxhERrjivJB/mJRCGxMz+uucqA32N+DTLBeySQmksNDsCEDkkz4kKWG8DJY wrZV92Hoq5aITxftuQj18CzZ3d4fe8cH4ldzLXkDw7cIVCjGeCCel0vEGkbb2Uw3Ao Qs29gt2cHC/JwUL0GzRzZ2hEgGTo278ID41UmsbU=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36CU2H3Q3CCANW5Z53J333VEVBNHHBYU5PJU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2941/review/269143348@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2941@github.com>
References: <quicwg/base-drafts/pull/2941@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on instructions and representations. (#2941)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c53ad2951_24e93faeec2cd9605872ba"; 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/7uds9wS0IGCwJLDk92CXQsUdzsw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:43:42 -0000

----==_mimepart_5d41c53ad2951_24e93faeec2cd9605872ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  The following bit, 'N', indicates whether an intermediary is permitted to add
 this header to the dynamic header table on subsequent hops. When the 'N' bit is
-set, the encoded header MUST always be encoded with a literal representation. In
-particular, when a peer sends a header field that it received represented as a

I do not see any clarity or value that the "In particular.." sentence adds, it just rewords the previous sentence.  I propose to remove 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/2941#pullrequestreview-269143348
----==_mimepart_5d41c53ad2951_24e93faeec2cd9605872ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2941#discussion_r309322878">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  The following bit, &#39;N&#39;, indicates whether an intermediary is permitted to add
 this header to the dynamic header table on subsequent hops. When the &#39;N&#39; bit is
-set, the encoded header MUST always be encoded with a literal representation. In
-particular, when a peer sends a header field that it received represented as a
</pre>
<p>I do not see any clarity or value that the "In particular.." sentence adds, it just rewords the previous sentence.  I propose to remove 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/2941?email_source=notifications&amp;email_token=AFTOJK26YAIVN2TIUVPKP7LQCG6LVA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFM2NA#pullrequestreview-269143348">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3AXYBIQJDPRTZ6EV3QCG6LVANCNFSM4IIIQ7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZRO5RVVQQWMFZIFWLQCG6LVA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFM2NA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJK26YAIVN2TIUVPKP7LQCG6LVA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFM2NA#pullrequestreview-269143348",
"url": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJK26YAIVN2TIUVPKP7LQCG6LVA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFM2NA#pullrequestreview-269143348",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c53ad2951_24e93faeec2cd9605872ba--


From nobody Wed Jul 31 09:45:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1BE52120470 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:44:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dU1OueIL8l5y for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:44: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 68D0812047C for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:44:56 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:44:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564591495; bh=guibpGzIrIjizF8G8Uzc8kXcmsq6N6+b7rX3Z0zrfQ8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bZko7HVbFTg1dHuZSQq/uCjkNptNfyWGu2hZBbtxlG8y8LLH3FIN6mQX/WogdhCEp 1zzTH9WDDlVSvE4T5yWiJUhj0YWCrjQzdWTySKRinYrt8Z2mLODrcP6dPeuG51PN+h zisIZ+0I3bLLGBUa+St6IZwY5RPNZfglHj4NsIC4=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <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/2941/push/3876050721@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2941@github.com>
References: <quicwg/base-drafts/pull/2941@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on instructions and representations. (#2941)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c587a7981_24f33faeec2cd960593784"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bencebeky
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/4mYrHJ4kKzSOMDhRXAjsAlGEAyw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:45:04 -0000

----==_mimepart_5d41c587a7981_24f33faeec2cd960593784
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@bencebeky pushed 1 commit.

96df67439cf7ee1ad993f7a59d44c73f04992fd5  nits


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2941/files/ec8e7252dabf6c58b3b252afc9faa49c3ad4b5f4..96df67439cf7ee1ad993f7a59d44c73f04992fd5

----==_mimepart_5d41c587a7981_24f33faeec2cd960593784
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/bencebeky" class="user-mention">@bencebeky</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/96df67439cf7ee1ad993f7a59d44c73f04992fd5">96df674</a>  nits</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/2941/files/ec8e7252dabf6c58b3b252afc9faa49c3ad4b5f4..96df67439cf7ee1ad993f7a59d44c73f04992fd5?email_source=notifications&amp;email_token=AFTOJKZXCKCLYX23KTEOYPLQCG6QPA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBTG4ZDON2QOVZWQIZTHA3TMMBVGA3TEMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LZ7GICTFX35BGB5LQCG6QPANCNFSM4IIIQ7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK62JT3QK2C5QUP4Z5LQCG6QPA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBTG4ZDON2QOVZWQIZTHA3TMMBVGA3TEMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2941/files/ec8e7252dabf6c58b3b252afc9faa49c3ad4b5f4..96df67439cf7ee1ad993f7a59d44c73f04992fd5?email_source=notifications\u0026email_token=AFTOJKZXCKCLYX23KTEOYPLQCG6QPA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBTG4ZDON2QOVZWQIZTHA3TMMBVGA3TEMI",
"url": "https://github.com/quicwg/base-drafts/pull/2941/files/ec8e7252dabf6c58b3b252afc9faa49c3ad4b5f4..96df67439cf7ee1ad993f7a59d44c73f04992fd5?email_source=notifications\u0026email_token=AFTOJKZXCKCLYX23KTEOYPLQCG6QPA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBTG4ZDON2QOVZWQIZTHA3TMMBVGA3TEMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41c587a7981_24f33faeec2cd960593784--


From nobody Wed Jul 31 09:49:21 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 444EB120456 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:49:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yZ0wun5WPVYN for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:49: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 A239C120451 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:49:17 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:49:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564591756; bh=i8NtH4pD8rfEwWF5Jm/DjDPyjAOwopGR4FFX5uq1qRI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GkZpe7LJzo82HxiXQX5xACgcK9d4ciYJDaL8FaRxdawdA5FdmQwoKjg+LqwZauXng LWblBpEER9a4JsLquHGtTMlWrXcAHPmUSbB3izJLDXCbO0twX8gI0CGLuL+VgA9mGC r0MaPnDSCWU8+P6RXZYmR2mcY/v17UyGwhB0rxlA=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63HL3NNQ4AHFQG7VV3J34QZEVBNHHBYU3JAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2938/c516930282@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2938@github.com>
References: <quicwg/base-drafts/pull/2938@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Update text on wire instructions. (#2938)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c68cd38f7_a9c3f9a8f2cd96811736a"; 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/gHKRD-FsOmYkCkga4zv25BHzTiI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:49:20 -0000

----==_mimepart_5d41c68cd38f7_a9c3f9a8f2cd96811736a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Okay, my new proposal is at https://github.com/quicwg/base-drafts/pull/2941.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2938#issuecomment-516930282
----==_mimepart_5d41c68cd38f7_a9c3f9a8f2cd96811736a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Okay, my new proposal is at <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="475246413" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2941" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2941/hovercard" href="https://github.com/quicwg/base-drafts/pull/2941">#2941</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/2938?email_source=notifications&amp;email_token=AFTOJK27S6TP6Y6KIJX6KC3QCG7AZA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H3V2Q#issuecomment-516930282">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3565OTXALPOORH5T3QCG7AZANCNFSM4IIIGOTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IN5XXKOXB2R2UN2DQCG7AZA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H3V2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK27S6TP6Y6KIJX6KC3QCG7AZA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H3V2Q#issuecomment-516930282",
"url": "https://github.com/quicwg/base-drafts/pull/2938?email_source=notifications\u0026email_token=AFTOJK27S6TP6Y6KIJX6KC3QCG7AZA5CNFSM4IIIGOTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3H3V2Q#issuecomment-516930282",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c68cd38f7_a9c3f9a8f2cd96811736a--


From nobody Wed Jul 31 09:54:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 15BBD120422 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:54:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zl0Wz72OyHlb for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:54: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 59B551202F8 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:54:34 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:54:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592073; bh=aE+r7CEMOsxwRk6c+NCTw11Up1Ce10nbXj1NkHpvvas=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=qf84KqUCxKlHcF5An1ga/ZqhPFhiE4ho6zhC9AdEIwAJlY611Mj1Q5C/IlKzll4WP opCFkyt5FZBJdppfowTEdUbd2yCFLqCzFYij3FqQs3vlakYarDN+cbFJ1N/iM8GlGZ /lo/VKVSy81Ij/JiW39B9VRzjqPXp18AaJFXU/n0=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7Q5QEGMSZIBZIWPDF3J35ETEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942@github.com>
Subject: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c7c982895_64163f8b2facd95c105320"; 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/m4mZXd9COZYnUjlCJRlynuaSyL4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:54:36 -0000

----==_mimepart_5d41c7c982895_64163f8b2facd95c105320
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/2942

-- Commit Summary --

  * non-controversial one-offs

-- File Changes --

    M draft-ietf-quic-qpack.md (200)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2942.patch
https://github.com/quicwg/base-drafts/pull/2942.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/2942

----==_mimepart_5d41c7c982895_64163f8b2facd95c105320
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/2942'>https://github.com/quicwg/base-drafts/pull/2942</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>non-controversial one-offs</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2942/files#diff-0">draft-ietf-quic-qpack.md</a>
    (200)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2942.patch'>https://github.com/quicwg/base-drafts/pull/2942.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2942.diff'>https://github.com/quicwg/base-drafts/pull/2942.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/2942?email_source=notifications&amp;email_token=AFTOJK5WDWQLOQCUAXJFSQTQCG7UTA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTZTBA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK46547IKR74Z2YHODTQCG7UTANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFZMWAHILWC65QAHTQCG7UTA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTZTBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK5WDWQLOQCUAXJFSQTQCG7UTA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTZTBA",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK5WDWQLOQCUAXJFSQTQCG7UTA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCTZTBA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41c7c982895_64163f8b2facd95c105320--


From nobody Wed Jul 31 09:55:06 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E7F4D1202F8 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:55:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iIIs3zJL-RzO for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:55: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 3B99A120457 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:55:03 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:55:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592102; bh=yPAgagkbUfCCk/8DiPXyIREpUxJ/EWS/lTCHqerspE4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zEVABWTiw/q2sEstuPjhFHqqRCrm80YLIJ4H78NgVP/qoLONnbVNSUHeDPl7NNzel uNMebP5tHc2/1WOdrzUxpc0qd2A4m6BJ0v7s5Skk3U7TfJHLui9amLnzLxniKAZ4GH ceO83qVA5IqDcOD0lFTW5SEbCbGGtOfavyJYkp4U=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK272CFGTYNC63YZHLN3J35GNEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269149538@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c7e62dec7_27573fc4acecd9601163e8"; 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/31iEYIU53DlhHHvXwqlfNItPv0U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:55:05 -0000

----==_mimepart_5d41c7e62dec7_27573fc4acecd9601163e8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -84,7 +84,7 @@ code and issues list for this draft can be found at
 
 The QUIC transport protocol {{QUIC-TRANSPORT}} is designed to support HTTP
 semantics, and its design subsumes many of the features of HTTP/2 {{?RFC7540}}.
-HTTP/2 uses HPACK ({{!RFC7541}}) for header compression.  If HPACK were used for

No other reference in this paragraph is enclosed in parentheses.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269149538
----==_mimepart_5d41c7e62dec7_27573fc4acecd9601163e8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309327812">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -84,7 +84,7 @@ code and issues list for this draft can be found at
 
 The QUIC transport protocol {{QUIC-TRANSPORT}} is designed to support HTTP
 semantics, and its design subsumes many of the features of HTTP/2 {{?RFC7540}}.
-HTTP/2 uses HPACK ({{!RFC7541}}) for header compression.  If HPACK were used for
</pre>
<p>No other reference in this paragraph is enclosed in parentheses.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK5DDTGHWEIKLBDAYI3QCG7WNA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOKYQ#pullrequestreview-269149538">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6IUYRIB5EAYI6BHGTQCG7WNANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4PA3QCN6Y2Z4WXPJLQCG7WNA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOKYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK5DDTGHWEIKLBDAYI3QCG7WNA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOKYQ#pullrequestreview-269149538",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK5DDTGHWEIKLBDAYI3QCG7WNA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOKYQ#pullrequestreview-269149538",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c7e62dec7_27573fc4acecd9601163e8--


From nobody Wed Jul 31 09:55:46 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 40CE7120422 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:55:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EbMH-1AMC89S for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:55: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 5FF731202F8 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:55:42 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:55:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592141; bh=ly4+Uyu5Yj2Ahfzmjn+wZ+vmrOIe6d56tNSZ3TImcTg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HIHRS0TJCBGqKzF1mcUX6MoNxSc1vuoX41hlUoplXfTaHA5+19eFEOm1U0wjiKqXV cZENNyOdQMz9HnR7XCcp1mMLUspzBehm2DMldrnfkgLVLFv5msymOQenZoG9ysm0ZQ t18OlbUqrtl/5kAGMNDAUB+OdfUYMLiFhs22/O+8=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MAOOBJDCPZVDDNQF3J35I3EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269149865@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c80d330cc_34bd3f94b9ecd96020736f"; 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/XDS1c-kvkqGOguWujOOHoW5JkxY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:55:44 -0000

----==_mimepart_5d41c80d330cc_34bd3f94b9ecd96020736f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -192,7 +192,7 @@ while the decoder is relatively simple.
 
 An encoder MUST ensure that a header block which references a dynamic table
 entry is not processed by the decoder after the referenced entry has been
-evicted.  Hence the encoder needs to track information about each compressed

Once a header block is sent, this collection of information does not change.  This makes me believe "retain" is a more fitting word than "track".

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269149865
----==_mimepart_5d41c80d330cc_34bd3f94b9ecd96020736f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309328099">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -192,7 +192,7 @@ while the decoder is relatively simple.
 
 An encoder MUST ensure that a header block which references a dynamic table
 entry is not processed by the decoder after the referenced entry has been
-evicted.  Hence the encoder needs to track information about each compressed
</pre>
<p>Once a header block is sent, this collection of information does not change.  This makes me believe "retain" is a more fitting word than "track".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK4MJPXDIBOX4S7WB53QCG7Y3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFONKI#pullrequestreview-269149865">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYX53IOZVWEXTIR2MDQCG7Y3ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK45HRMCU5GCMTOV2ALQCG7Y3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFONKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4MJPXDIBOX4S7WB53QCG7Y3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFONKI#pullrequestreview-269149865",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4MJPXDIBOX4S7WB53QCG7Y3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFONKI#pullrequestreview-269149865",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c80d330cc_34bd3f94b9ecd96020736f--


From nobody Wed Jul 31 09:56:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CD6BC120462 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:56:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l7133U94nyeI for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:56: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 A9971120460 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:56:31 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:56:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592190; bh=r/s0NFauhz88zZyVHXF1Yj+RMPXdU6Buc162aGQbsRo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UaYjqli7RW9aGvkF+HpMFXA2dNA+w/TP2viqeQcvwNB0Pbc+vOSfsRUUkB2LKoG3B y0OPKUnhpvNZy45RvtMxot6pLXg+Cd1MWezvhe368TdUvv5SyxPxXdDO3eEtKYROvu Kwib+f3yLhOkqPfUppPv03qFpJPaADek6qTo+3KM=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EHAVMCB4KV4IIKPV3J35L5EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269150286@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c83ebe810_1f043f887a8cd95c9257c"; 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/yNMbSRtrBT3OzdLs15h_Dw6Vp8Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:56:34 -0000

----==_mimepart_5d41c83ebe810_1f043f887a8cd95c9257c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -272,25 +270,26 @@ An encoder can decide whether to risk having a stream become blocked. If
 permitted by the value of SETTINGS_QPACK_BLOCKED_STREAMS, compression efficiency
 can often be improved by referencing dynamic table entries that are still in
 transit, but if there is loss or reordering the stream can become blocked at the
-decoder.  An encoder avoids the risk of blocking by only referencing dynamic

"Can" better expresses that the encoder has a 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/pull/2942#pullrequestreview-269150286
----==_mimepart_5d41c83ebe810_1f043f887a8cd95c9257c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309328416">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -272,25 +270,26 @@ An encoder can decide whether to risk having a stream become blocked. If
 permitted by the value of SETTINGS_QPACK_BLOCKED_STREAMS, compression efficiency
 can often be improved by referencing dynamic table entries that are still in
 transit, but if there is loss or reordering the stream can become blocked at the
-decoder.  An encoder avoids the risk of blocking by only referencing dynamic
</pre>
<p>"Can" better expresses that the encoder has a 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/pull/2942?email_source=notifications&amp;email_token=AFTOJKY7LK5XOUZRHG332G3QCG735A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOQTQ#pullrequestreview-269150286">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZXHIFNLIHGHOXY5C3QCG735ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YWYYA37RL6KH4BQTQCG735A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOQTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKY7LK5XOUZRHG332G3QCG735A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOQTQ#pullrequestreview-269150286",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKY7LK5XOUZRHG332G3QCG735A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOQTQ#pullrequestreview-269150286",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c83ebe810_1f043f887a8cd95c9257c--


From nobody Wed Jul 31 09:57:39 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EF396120470 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:57:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4sWl0ggBeW8P for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:57: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 3EC2B120476 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:57:35 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:57:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592254; bh=bgDVcjTCnpIKLrtvRERDytUMuCQHAPYBmXkcbVd4NEU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=K6deO9UNNwPbKZu+o4XT8UnCk7lTDoZ60HnySKBkCfY4xRHKJn3/0RTNYKLS4y+lH 6VJDPTfxhiAWeEAP6HQ1cmIMNn4DTaPk4p6TyW93IAJfLYEapjK2GGYxbtD2Zs72G1 34pLOzTb5Wbc7xYMqM9bizlkRlRmolROFs3pL5Wk=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4O4EWO5SAXVYEWWM53J35P5EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269150945@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c87e55f8b_56603ff275ccd95c663c"; 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/ossbqM_TP1DayW3iXHLYcDnsp8w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:57:37 -0000

----==_mimepart_5d41c87e55f8b_56603ff275ccd95c663c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  table entries which have been acknowledged, but this could mean using
 literals. Since literals make the header block larger, this can result in the
 encoder becoming blocked on congestion or flow control limits.
 
 ### Known Received Count
 
-In order to identify which dynamic table entries can be safely used without a
-stream becoming blocked, the encoder tracks the number of entries received by

Reworded to include that the decoder also needs to track the Known Received Count.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269150945
----==_mimepart_5d41c87e55f8b_56603ff275ccd95c663c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309328970">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  table entries which have been acknowledged, but this could mean using
 literals. Since literals make the header block larger, this can result in the
 encoder becoming blocked on congestion or flow control limits.
 
 ### Known Received Count
 
-In order to identify which dynamic table entries can be safely used without a
-stream becoming blocked, the encoder tracks the number of entries received by
</pre>
<p>Reworded to include that the decoder also needs to track the Known Received Count.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK4FDDLKPO5TKGZ6ZHTQCG775A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOVYI#pullrequestreview-269150945">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OEE3GVBIGE36ISNTQCG775ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IOEGQ2DZNI7UNZPLQCG775A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOVYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4FDDLKPO5TKGZ6ZHTQCG775A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOVYI#pullrequestreview-269150945",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4FDDLKPO5TKGZ6ZHTQCG775A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFOVYI#pullrequestreview-269150945",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c87e55f8b_56603ff275ccd95c663c--


From nobody Wed Jul 31 09:59:41 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4F3C51204AA for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:59:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id s9QZAP79iCSQ for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 09:59: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 68013120493 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 09:59:37 -0700 (PDT)
Date: Wed, 31 Jul 2019 09:59:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592376; bh=yY5eAKESZ9baShez4KUkXMe2xKKp5AXKhAwygRqVZkg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ikKesZnAU2d0EHKX1spZYO6M/BysfUU5TrO4HN7VKFTxUQ+ebLJ0HKHmmSV/cDGix 3dnCMg12TzHYPDEp7R8PHl9GZZkbnBEAKS8zZ6ZWvS1ww+LLfJouG6irOxSQqG5S1d U3EAvsCRznRBQuFbY2zZF8ztVZ6ZFN3B4lk5q1DU=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3G2E2I6QTY6L2LPMV3J35XREVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269152016@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c8f8a82c0_26403f8fa4ecd95c12938e"; 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/QxUV6eP5Hy9HyAtOxeUHWSzsJCk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 16:59:39 -0000

----==_mimepart_5d41c8f8a82c0_26403f8fa4ecd95c12938e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  
-When blocking references are permitted, the encoder uses Header Acknowledgement
-instructions ({{header-acknowledgement}}) to maintain the Known Received
-Count.  If a header block was potentially blocking, the acknowledgement implies
-that the decoder has received all dynamic table state necessary to process the
-header block.  If the Required Insert Count of an acknowledged header block was
-greater than the encoder's current Known Received Count, the block's Required
-Insert Count becomes the new Known Received Count.

"the block's Required Insert Count becomes the new Known Received Count" always trips me: does the value of the Required Insert Count change to the value of the Known Received Count, or does the value of the Required Insert Count became to be known as the new value of the Known Received Count?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269152016
----==_mimepart_5d41c8f8a82c0_26403f8fa4ecd95c12938e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309329796">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  
-When blocking references are permitted, the encoder uses Header Acknowledgement
-instructions ({{header-acknowledgement}}) to maintain the Known Received
-Count.  If a header block was potentially blocking, the acknowledgement implies
-that the decoder has received all dynamic table state necessary to process the
-header block.  If the Required Insert Count of an acknowledged header block was
-greater than the encoder&#39;s current Known Received Count, the block&#39;s Required
-Insert Count becomes the new Known Received Count.
</pre>
<p>"the block's Required Insert Count becomes the new Known Received Count" always trips me: does the value of the Required Insert Count change to the value of the Known Received Count, or does the value of the Required Insert Count became to be known as the new value of the Known Received Count?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJKY3GLITM2AZLXOE4MDQCHAHRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFO6EA#pullrequestreview-269152016">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77PF4OHTOOAJEWO5LQCHAHRANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2U7WXTBXUOWL6LBPLQCHAHRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFO6EA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKY3GLITM2AZLXOE4MDQCHAHRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFO6EA#pullrequestreview-269152016",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKY3GLITM2AZLXOE4MDQCHAHRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFO6EA#pullrequestreview-269152016",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c8f8a82c0_26403f8fa4ecd95c12938e--


From nobody Wed Jul 31 10:00:38 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DB8A51204C3 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:00:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.381
X-Spam-Level: 
X-Spam-Status: No, score=-1.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, GB_SUMOF=5, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, 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 MxlLN42Okdk4 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:00: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 755261201EE for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:00:35 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:00:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592434; bh=12IssdTG32sjR+n6LS78qf+oEwvb/sGsQkuHNQsIF+Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GYzShkUkxt7aAVsXV7TbixPAq+1avAS7ncfvU/zKkziRgdx975x/kEpyB7aJxy4MA 3t5JK5821gtv58km7g6Yyk0AcYeYhzHWGXAXERkrZqk4oZQx0ZQkwCIOB/VG1hs1ZI 9YDXumtWReVe8oOh9SeJhnZjk2imx0aojim06dfc=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYOPSQW4XVMMD5CA5F3J353FEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269152510@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c93292869_21583fd8106cd9641668ad"; 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/0TlKtd4QIMbKb34KNZZSldLYDwY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:00:37 -0000

----==_mimepart_5d41c93292869_21583fd8106cd9641668ad
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -430,12 +431,9 @@ Dynamic table entries can have empty values.
 
 The size of the dynamic table is the sum of the size of its entries.
 
-The size of an entry is the sum of its name's length in bytes (as defined in
-{{string-literals}}), its value's length in bytes, and 32.

The reference to {{string-literals}} here is misleading, because length in that section can mean length after Huffman encoding.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269152510
----==_mimepart_5d41c93292869_21583fd8106cd9641668ad
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309330172">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -430,12 +431,9 @@ Dynamic table entries can have empty values.
 
 The size of the dynamic table is the sum of the size of its entries.
 
-The size of an entry is the sum of its name&#39;s length in bytes (as defined in
-{{string-literals}}), its value&#39;s length in bytes, and 32.
</pre>
<p>The reference to {{string-literals}} here is misleading, because length in that section can mean length after Huffman encoding.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK6H5MF7A4VN5QSMIJLQCHALFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPB7Q#pullrequestreview-269152510">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VFJ4B4XDEQP3MPJLQCHALFANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5TSRRUSE456AHMWYDQCHALFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPB7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK6H5MF7A4VN5QSMIJLQCHALFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPB7Q#pullrequestreview-269152510",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK6H5MF7A4VN5QSMIJLQCHALFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPB7Q#pullrequestreview-269152510",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c93292869_21583fd8106cd9641668ad--


From nobody Wed Jul 31 10:01:50 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 87D1712051D for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:01:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0XUfdWOZouIf for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:01: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 F1F4D1204C3 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:01:46 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:01:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592506; bh=IykRaPtZ0PST/Muq7t+jAMiv7rYQIu+rIkt0m0z8apk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=j0wsb2DaKS+A8RO7szk4BJrQEPXF577TXKbA6BJho9uV9krKHB8u4RQ320H5pCFYA NqDeu+m2KAJ94GEaeFHhdjOise8qNAGTE7oGltqwuiC8NIfUJOpPThNg9d6634BEjY EVdOr5Gly69O5+Z193VkTlQp33rZKKoNCGx9NHnQ=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BDLPRZU52WKNMIVF3J357VEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269153148@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c97a1e89e_39693f853b0cd960131267"; 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/zXFJUi_rQVhGWLY1vkLNJLi3N18>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:01:49 -0000

----==_mimepart_5d41c97a1e89e_39693f853b0cd960131267
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -445,19 +443,23 @@ encoder sends a Set Dynamic Table Capacity instruction
 ({{set-dynamic-capacity}}) with a non-zero capacity to begin using the dynamic
 table.
 
-Before a new entry is added to the dynamic table, entries are evicted from the

I am not aware of any reason the specs need to require an implementation to evict first, then add.  Spelling out a choice also allows the caution on use-after-free to be restricted to one of the two methods.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269153148
----==_mimepart_5d41c97a1e89e_39693f853b0cd960131267
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309330709">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -445,19 +443,23 @@ encoder sends a Set Dynamic Table Capacity instruction
 ({{set-dynamic-capacity}}) with a non-zero capacity to begin using the dynamic
 table.
 
-Before a new entry is added to the dynamic table, entries are evicted from the
</pre>
<p>I am not aware of any reason the specs need to require an implementation to evict first, then add.  Spelling out a choice also allows the caution on use-after-free to be restricted to one of the two methods.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK4WC3PZ32OC26VHNSLQCHAPVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPG7A#pullrequestreview-269153148">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EHSUTDNOL62IHKRDQCHAPVANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5STVTLVJPNOPUXJDDQCHAPVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPG7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4WC3PZ32OC26VHNSLQCHAPVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPG7A#pullrequestreview-269153148",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4WC3PZ32OC26VHNSLQCHAPVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPG7A#pullrequestreview-269153148",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c97a1e89e_39693f853b0cd960131267--


From nobody Wed Jul 31 10:02:55 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F31111205D5 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:02:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ffa3koQuJwV1 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:02: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 42A701205CB for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:02:51 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:02:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592570; bh=3fv1i26EhPhnHyVwZJ2HtmmMsPSl4py791f7jtz3fg8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m4+WGSuR3k5Gn4hEgVl6Rq6wKt9MVFkVf9MQE+iCOln4nHJssxpPm9+NvrZSwcBcj g+7M4aPWpEyD6W71GJ1eekucb1Cizn8bqlKaeTX7Gy0uLBVcpAwMbXp+enp4tRTUw9 9gAUXfUYKWCmGWQdRro3pmyucRIWPDiwqnLuKtGI=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NV6L6VUPVFERRTGF3J36DVEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269153684@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41c9ba82c21_60413fbc238cd95c106069"; 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/k6Uu2aP2U8MqKvb6Oe9qkCB2mFU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:02:53 -0000

----==_mimepart_5d41c9ba82c21_60413fbc238cd95c106069
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -477,28 +479,27 @@ it can choose to use a lower dynamic table capacity (see
 
 For clients using 0-RTT data in HTTP/3, the server's maximum table capacity is
 the remembered value of the setting, or zero if the value was not previously
-sent.  When the client's 0-RTT value of the SETTING is 0, the server MAY set it

To me, zero looks better written in numbers, especially with that many occurrences of "non-zero" in the same 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/2942#pullrequestreview-269153684
----==_mimepart_5d41c9ba82c21_60413fbc238cd95c106069
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309331129">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -477,28 +479,27 @@ it can choose to use a lower dynamic table capacity (see
 
 For clients using 0-RTT data in HTTP/3, the server&#39;s maximum table capacity is
 the remembered value of the setting, or zero if the value was not previously
-sent.  When the client&#39;s 0-RTT value of the SETTING is 0, the server MAY set it
</pre>
<p>To me, zero looks better written in numbers, especially with that many occurrences of "non-zero" in the same 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/2942?email_source=notifications&amp;email_token=AFTOJKZNDBAFAXOEBSDNTSDQCHATVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPLFA#pullrequestreview-269153684">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5COMWI334FAC2OWADQCHATVANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3MHUXINDB552MYLJ3QCHATVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPLFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKZNDBAFAXOEBSDNTSDQCHATVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPLFA#pullrequestreview-269153684",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKZNDBAFAXOEBSDNTSDQCHATVA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPLFA#pullrequestreview-269153684",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41c9ba82c21_60413fbc238cd95c106069--


From nobody Wed Jul 31 10:05:02 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 66E621205D9 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:05:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hNuzyKx9bDKP for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:04:59 -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 80D9B1205CD for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:04:59 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:04:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592698; bh=2chXMm1jHnqMkSoNiW6BOBCR0Fvc1nOz3ebv9aacqMA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eC3p/uUZ9Kcqu88vFWYwSbedZ0iMtmYO08qfZnc4YxfjKp7dd8wsdHItW/Aeo8VBy z5Xts7fWnXijVHdVuGMtMjQ7VUriwQ6BO3GP9zjMzQawX+M3Wh+QGiXmCa8AVZFrjU yjzYjA9MTpVg4Peg7pvCBOBEWDnLkI6HgXFti08g=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZBAOCUJGXBGQV2IGV3J36LVEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269154750@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41ca3a727c4_266a3f9b6fecd96c18737e"; 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/ujUZi6wNeJy_5XR1rCxdyW2LbVc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:05:01 -0000

----==_mimepart_5d41ca3a727c4_266a3f9b6fecd96c18737e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -586,8 +588,10 @@ d = count of entries dropped
 ### Prefixed Integers
 
 The prefixed integer from Section 5.1 of [RFC7541] is used heavily throughout
-this document.  The format from [RFC7541] is used unmodified.  QPACK
-implementations MUST be able to decode integers up to 62 bits long.
+this document.  The format from [RFC7541] is used unmodified.  Note, however,
+that QPACK uses some prefix sizes not actually used in HPACK.

I was actually tripped by this when re-using the HPACK implementation, because that had DCHECKs on prefix length that restricted it to values that occur in HPACK.  And of course there was no test coverage for other prefixes.  In particular, (3+) and (8+) occur in the current QPACK draft but not in RFC7541.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269154750
----==_mimepart_5d41ca3a727c4_266a3f9b6fecd96c18737e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309332024">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -586,8 +588,10 @@ d = count of entries dropped
 ### Prefixed Integers
 
 The prefixed integer from Section 5.1 of [RFC7541] is used heavily throughout
-this document.  The format from [RFC7541] is used unmodified.  QPACK
-implementations MUST be able to decode integers up to 62 bits long.
+this document.  The format from [RFC7541] is used unmodified.  Note, however,
+that QPACK uses some prefix sizes not actually used in HPACK.
</pre>
<p>I was actually tripped by this when re-using the HPACK implementation, because that had DCHECKs on prefix length that restricted it to values that occur in HPACK.  And of course there was no test coverage for other prefixes.  In particular, (3+) and (8+) occur in the current QPACK draft but not in RFC7541.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJKYO6HCHP7NE7BQ6YQ3QCHA3VA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPTPQ#pullrequestreview-269154750">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK74KPN5P42627UF4Z3QCHA3VANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YMGTUTGJKZNLUNQ3QCHA3VA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPTPQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKYO6HCHP7NE7BQ6YQ3QCHA3VA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPTPQ#pullrequestreview-269154750",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKYO6HCHP7NE7BQ6YQ3QCHA3VA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFPTPQ#pullrequestreview-269154750",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41ca3a727c4_266a3f9b6fecd96c18737e--


From nobody Wed Jul 31 10:07:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B9A4612045A for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:07:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CKQmASrfxeN6 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:07: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 71BA2120454 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:07:14 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:07:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592833; bh=Hj8l2TFMBYiFwL5y2l8ifWWrPAPLrbabUHGjMOuj3V4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yG4eoIDEelW0JE1kYIZyUvjrSTGWrT8ZEi8wakzPwiowjd8XoHJOlUXrjDthiLlMi S2BXN6wl3zkb5/OiGFtUm6dR4sud/1c4wtS08lElymijiRVqw6ymw16O7NTw3eAN1f wxaug7tWGd2Ql3arrBYcZTThfjulNifBxqS7lUXg=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <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/2942/push/3876128022@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cac1aeb86_625d3fd209ecd96424104b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bencebeky
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/FWy9pKtON_FterBh38-uzqEWaH0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:07:16 -0000

----==_mimepart_5d41cac1aeb86_625d3fd209ecd96424104b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@bencebeky pushed 1 commit.

c049ed1fbfedda303ef6ca024982f503bdbc3b08  Do not unnecessarily change "avoid" to "choose not".


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942/files/7155dcc0b47f9a1ca99e59e45777f4f8f7baeb98..c049ed1fbfedda303ef6ca024982f503bdbc3b08

----==_mimepart_5d41cac1aeb86_625d3fd209ecd96424104b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/bencebeky" class="user-mention">@bencebeky</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c049ed1fbfedda303ef6ca024982f503bdbc3b08">c049ed1</a>  Do not unnecessarily change &quot;avoid&quot; to &quot;choose not&quot;.</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/2942/files/7155dcc0b47f9a1ca99e59e45777f4f8f7baeb98..c049ed1fbfedda303ef6ca024982f503bdbc3b08?email_source=notifications&amp;email_token=AFTOJK2O3G7P6UXMOP35DYLQCHBEDA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJSHAYDEMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4327A5KQYFKJZSHG3QCHBEDANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Q2RNE36KEIRQXRHDQCHBEDA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJSHAYDEMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942/files/7155dcc0b47f9a1ca99e59e45777f4f8f7baeb98..c049ed1fbfedda303ef6ca024982f503bdbc3b08?email_source=notifications\u0026email_token=AFTOJK2O3G7P6UXMOP35DYLQCHBEDA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJSHAYDEMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2942/files/7155dcc0b47f9a1ca99e59e45777f4f8f7baeb98..c049ed1fbfedda303ef6ca024982f503bdbc3b08?email_source=notifications\u0026email_token=AFTOJK2O3G7P6UXMOP35DYLQCHBEDA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJSHAYDEMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41cac1aeb86_625d3fd209ecd96424104b--


From nobody Wed Jul 31 10:09:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 61BF312049D for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:09:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AUWOVHpV9KWm for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:09: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 0C811120462 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:09:17 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:09:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592956; bh=jlUsE3Nylp52MY6r8rAaFyiaGRHcM+k1AsmdG3PCscI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iLokXuxFaXIgBiyw9ha/XquMPNjPoIdsiFG/ySiChcjK0+fjBnxpEf7m2ST1b9B7y 3TaGrPe/HrirtZAeSVQSPFBLswHtyOkdgll4k6d9cr+ncbdiDIFJbaB+DSpbGVDVB8 pTcUsAnhjQfztnqq9UBEOhVUp3PihJwWIrCvxIjk=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TOP2VXSQOQE2BSAN3J363ZEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269157005@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cb3c29833_26b93f9b6fecd96c202454"; 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/IRNhyPU4BEkkCJs1aN1qsoWUuJw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:09:19 -0000

----==_mimepart_5d41cb3c29833_26b93f9b6fecd96c202454
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -627,14 +632,14 @@ type HTTP_WRONG_STREAM_COUNT. These streams MUST NOT be closed. Closure of
 either unidirectional stream type MUST be treated as a connection error of type
 HTTP_CLOSED_CRITICAL_STREAM.
 
-An endpoint MAY avoid creating its own encoder stream if it's not going to be

I do not have the impression that HTTP/3 defines ownership of unidirectional streams, but "create" is unambiguous anyway.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269157005
----==_mimepart_5d41cb3c29833_26b93f9b6fecd96c202454
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309333758">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -627,14 +632,14 @@ type HTTP_WRONG_STREAM_COUNT. These streams MUST NOT be closed. Closure of
 either unidirectional stream type MUST be treated as a connection error of type
 HTTP_CLOSED_CRITICAL_STREAM.
 
-An endpoint MAY avoid creating its own encoder stream if it&#39;s not going to be
</pre>
<p>I do not have the impression that HTTP/3 defines ownership of unidirectional streams, but "create" is unambiguous anyway.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK3XSKBNA5ELM7TQCKDQCHBLZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQFDI#pullrequestreview-269157005">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7NVUTRGQP3V3JLJELQCHBLZANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK65F6TVRGQSCH6QE3LQCHBLZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQFDI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK3XSKBNA5ELM7TQCKDQCHBLZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQFDI#pullrequestreview-269157005",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK3XSKBNA5ELM7TQCKDQCHBLZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQFDI#pullrequestreview-269157005",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cb3c29833_26b93f9b6fecd96c202454--


From nobody Wed Jul 31 10:09:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6DA33120477 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:09:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TwumPTy6rZJa for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:09:49 -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 BB2C9120454 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:09:49 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:09:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564592989; bh=/WlrfWRA1mbupfCHWtZHB1LO4LRaI472tCldWgpJSE4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FrUY6BXAShGTnV7pPU1HjsxuGxknxuml+oeLuCXfah7zu3XqtNtAEF5xwIT7yX0Te WROAK7dBgU0tGuEkLoGbaG21YWuTrztMBuTVkhy0hO7S6XA1TokklIuT4t5YhngRkG foPU6+votrflvN4Z+8QPJWWZ9PorI41wak99du3I=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZXOZKALFHFTAL3QVV3J365ZEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269157306@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cb5cf07d3_43ae3ff5172cd96c1029d9"; 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/djUkCMTuru9fPAsPtdXe2b1l5aY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:09:51 -0000

----==_mimepart_5d41cb5cf07d3_43ae3ff5172cd96c1029d9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -627,14 +632,14 @@ type HTTP_WRONG_STREAM_COUNT. These streams MUST NOT be closed. Closure of
 either unidirectional stream type MUST be treated as a connection error of type
 HTTP_CLOSED_CRITICAL_STREAM.
 
-An endpoint MAY avoid creating its own encoder stream if it's not going to be
-used (for example if the endpoint doesn't wish to use the dynamic table, or if

Each endpoint has two contexts and each context has a dynamic table, so it's better to clarify which 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/2942#pullrequestreview-269157306
----==_mimepart_5d41cb5cf07d3_43ae3ff5172cd96c1029d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309334019">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -627,14 +632,14 @@ type HTTP_WRONG_STREAM_COUNT. These streams MUST NOT be closed. Closure of
 either unidirectional stream type MUST be treated as a connection error of type
 HTTP_CLOSED_CRITICAL_STREAM.
 
-An endpoint MAY avoid creating its own encoder stream if it&#39;s not going to be
-used (for example if the endpoint doesn&#39;t wish to use the dynamic table, or if
</pre>
<p>Each endpoint has two contexts and each context has a dynamic table, so it's better to clarify which 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/2942?email_source=notifications&amp;email_token=AFTOJKYZDSV7HQXUR7YYKL3QCHBNZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQHOQ#pullrequestreview-269157306">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK32NVU2TAEBXZC47JDQCHBNZANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YL2EHTJHKB7VYC2LQCHBNZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQHOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKYZDSV7HQXUR7YYKL3QCHBNZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQHOQ#pullrequestreview-269157306",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKYZDSV7HQXUR7YYKL3QCHBNZA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQHOQ#pullrequestreview-269157306",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cb5cf07d3_43ae3ff5172cd96c1029d9--


From nobody Wed Jul 31 10:10:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 18051120477 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:10:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, 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 FPpx6o9B89P4 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:10: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 D58731203D6 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:10:55 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:10:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593054; bh=QYuj+qJHAjwnwX257aEI8ZF32ysfLSovDyaMxgtWS7Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m/EKkNp6AFbvfp/UDcsPU7Lq1CfqnexIMjyLDS+nR4uI/f2pI48fttE/RsdHd/yfw 5qH2hBQrPRFDX+uSsmaWKEHn5IhDV45vVci/d+qpS4bJqFNcWtXzOkELj7Y0a7e/h5 2jEke21trRwLtoJYKq02nAIaHIqlWk4JGo78Mqro=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYAPQUFXWJG5B3LK53J37B5EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269157903@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cb9ee2568_45173feb522cd9683184d"; 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/Qu987pKWy0foEcoqodORm2wR5o8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:10:57 -0000

----==_mimepart_5d41cb9ee2568_45173feb522cd9683184d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  
-An endpoint MAY avoid creating its own decoder stream if the maximum size of
-its own dynamic table is zero.

I find that ownership of a dynamic table, while not necessarily ambiguous, is at least undefined.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269157903
----==_mimepart_5d41cb9ee2568_45173feb522cd9683184d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309334501">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  
-An endpoint MAY avoid creating its own decoder stream if the maximum size of
-its own dynamic table is zero.
</pre>
<p>I find that ownership of a dynamic table, while not necessarily ambiguous, is at least undefined.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK44OSJRNB5NZH5KV3LQCHBR5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQMDY#pullrequestreview-269157903">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7LYQ57ONTBCL3DDL3QCHBR5ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZBMO3SQUETKK4ETCDQCHBR5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQMDY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK44OSJRNB5NZH5KV3LQCHBR5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQMDY#pullrequestreview-269157903",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK44OSJRNB5NZH5KV3LQCHBR5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQMDY#pullrequestreview-269157903",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cb9ee2568_45173feb522cd9683184d--


From nobody Wed Jul 31 10:11:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9758F1203D6 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:11:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yWgvUoDd7VXN for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:11: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 65925120477 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:11:17 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:11:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593076; bh=9a10Tf7opkJav19djJjD8wJW/8nxw5L9UDwpVdtLBdw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kLWjaS3cs3PQ/aFUFxXmhqDalPlqW3Uw8AevV1eMn1fmmP/q6C8s4+oduAu3L0PeF QGGhvMW1YeOzTcdokyLrpS8i4EL91FaCrAiaTmxncshIoCDptkJjCmEh8idPepHF2y lAWwpvei/Q3RqHgkmOFAinu4Qswj7KMc02vsEd90=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54F6HXJE7S7XOPPFN3J37DJEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269158090@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cbb4a5dab_3fa93f9cd80cd960452c6"; 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/iKKMBY0KkCOvWv38rBUV8zwvkaU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:11:19 -0000

----==_mimepart_5d41cbb4a5dab_3fa93f9cd80cd960452c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  
-An endpoint MUST allow its peer to create both encoder and decoder streams

"both encoder and decoder streams" might give the reader the impression that there could be multiple of each.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269158090
----==_mimepart_5d41cbb4a5dab_3fa93f9cd80cd960452c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309334647">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  
-An endpoint MUST allow its peer to create both encoder and decoder streams
</pre>
<p>"both encoder and decoder streams" might give the reader the impression that there could be multiple of each.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK33VOL23L4CQVVPGG3QCHBTJA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQNSQ#pullrequestreview-269158090">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYDMAMAUJN4PLQW7UTQCHBTJANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PZLZWI7FYCTRJ35LQCHBTJA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQNSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK33VOL23L4CQVVPGG3QCHBTJA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQNSQ#pullrequestreview-269158090",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK33VOL23L4CQVVPGG3QCHBTJA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQNSQ#pullrequestreview-269158090",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cbb4a5dab_3fa93f9cd80cd960452c6--


From nobody Wed Jul 31 10:12:20 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 56C5A120480 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:12:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 56WFR_jLhwPU for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10: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 A78101203D6 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:12:16 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:12:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593135; bh=AHKADZlGA689O1/C03ZwRivitZKEe9ox5DOgA3x1D4E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rRPykCpwLRwYpj+R6TrPchfCt6Obcl1NycAlENV5crnmOiVQ59ROjwCiIdM8kaQwF bFp4EEJC+gvY3UomNxrlaokDhFvIF+usJENAettT2s5JeS/Pj7jbsdzrRQBv74XKP4 OIrXf/e6g1to8kF9Xt9WXMrwmR1jpaNRIBi+79bU=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6KSVFFXPGZNUQLVIN3J37G7EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269158666@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cbefbeb90_45333fa16d0cd96c562e0"; 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/Vt7UtmuC5326ALuUHpvG0W-klMw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:12:18 -0000

----==_mimepart_5d41cbefbeb90_45333fa16d0cd96c562e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -741,20 +746,16 @@ the existing entry is represented as an integer with a 5-bit prefix.
 ~~~~~~~~~~
 {:#fig-index-with-duplication title="Duplicate"}
 
-The existing entry is re-inserted into the dynamic table without resending
-either the name or the value. This is useful to mitigate the eviction of older

I find "mitigate the eviction" confusing.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269158666
----==_mimepart_5d41cbefbeb90_45333fa16d0cd96c562e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309335084">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -741,20 +746,16 @@ the existing entry is represented as an integer with a 5-bit prefix.
 ~~~~~~~~~~
 {:#fig-index-with-duplication title=&quot;Duplicate&quot;}
 
-The existing entry is re-inserted into the dynamic table without resending
-either the name or the value. This is useful to mitigate the eviction of older
</pre>
<p>I find "mitigate the eviction" confusing.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK64PUVAWC5TJCCL3K3QCHBW7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQSCQ#pullrequestreview-269158666">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ERSV3ZNMFWMIXLOTQCHBW7ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK75RA6NO25WDV2WU2LQCHBW7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQSCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK64PUVAWC5TJCCL3K3QCHBW7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQSCQ#pullrequestreview-269158666",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK64PUVAWC5TJCCL3K3QCHBW7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFQSCQ#pullrequestreview-269158666",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cbefbeb90_45333fa16d0cd96c562e0--


From nobody Wed Jul 31 10:14:58 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4B8BB12049D for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:14:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yE8cPBeOIXsl for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:14: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 92A8012049A for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:14:55 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:14:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593294; bh=eFFO5tgXjaOWRpFWhtTKnAZZGtI4JH8pg+OfwbXxHQk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZA/OuvqHbv88gRLrGU91J2YeSmxkgeI/nZ+nPbUioli58GY5h7zPsE/CwQ3lVHDby OrK0oPkciy0rJ5xcMV1CCAG5qZWKvKrp1aDRvRjJuKb55JTqcMFQG10c7ig//YPPLg 3yHTqecTgrpad9Hbf7l+FjGJjvUdpwF+LLBiFeJM=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <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/2942/push/3876154807@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cc8e8b4c0_75033fbcfd8cd968445d9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bencebeky
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/TbxIXAkn_4xqh1zRCKTzpjechzg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:14:57 -0000

----==_mimepart_5d41cc8e8b4c0_75033fbcfd8cd968445d9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@bencebeky pushed 1 commit.

7bc269a3b73015041ad2e8ea95164aff14d64f49  Do not unnecessarily remove "without resending..." phrase.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942/files/c049ed1fbfedda303ef6ca024982f503bdbc3b08..7bc269a3b73015041ad2e8ea95164aff14d64f49

----==_mimepart_5d41cc8e8b4c0_75033fbcfd8cd968445d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/bencebeky" class="user-mention">@bencebeky</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/7bc269a3b73015041ad2e8ea95164aff14d64f49">7bc269a</a>  Do not unnecessarily remove &quot;without resending...&quot; phrase.</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/2942/files/c049ed1fbfedda303ef6ca024982f503bdbc3b08..7bc269a3b73015041ad2e8ea95164aff14d64f49?email_source=notifications&amp;email_token=AFTOJK6PHBGRLSP2TOGVYOTQCHCA5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJVGQ4DANY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYWQWGI5C2C6F4IJS3QCHCA5ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3Y5N5TWNBOMNVPKZLQCHCA5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJVGQ4DANY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942/files/c049ed1fbfedda303ef6ca024982f503bdbc3b08..7bc269a3b73015041ad2e8ea95164aff14d64f49?email_source=notifications\u0026email_token=AFTOJK6PHBGRLSP2TOGVYOTQCHCA5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJVGQ4DANY",
"url": "https://github.com/quicwg/base-drafts/pull/2942/files/c049ed1fbfedda303ef6ca024982f503bdbc3b08..7bc269a3b73015041ad2e8ea95164aff14d64f49?email_source=notifications\u0026email_token=AFTOJK6PHBGRLSP2TOGVYOTQCHCA5A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBUGMYTONKQOVZWQIZTHA3TMMJVGQ4DANY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41cc8e8b4c0_75033fbcfd8cd968445d9--


From nobody Wed Jul 31 10:16:01 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 051D912034D for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:16:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id asITPtgcua9f for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:15:58 -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 4ED88120123 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:15:58 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:15:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593357; bh=WNXE+V7Op7meM2nuI9XK4nYXXOq2oaDA/HaSQJva3E0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yO0eR0odAB/oOKMb16UtuMcNTLwV26TABRvt2YAxbQtqCgQE1A8Td1pbigIQb/hBY t+tGbnqNlI55TyIP1Hv5MeX/u11AMxLXCZ+jX75BSOgH8JyrPZqBfvMtnogyYxXvmB hdRmpMSn5SZEFtXkaWMmRwC9E1emEWbM+GnvjTcY=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4IR2P5D4SBKCNRW2V3J37U3EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269160718@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cccd3fc73_44073ff5172cd96c1388d6"; 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/zS8PdAysDVkBlgf26vXQYlrqiPc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:16:00 -0000

----==_mimepart_5d41cccd3fc73_44073ff5172cd96c1388d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  
 
 ## Decoder Instructions {#decoder-instructions}
 
-Decoder instructions provide information used to ensure consistency of the

I propose to change this paragraph to match the first paragraph of Encoder Instructions 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/2942#pullrequestreview-269160718
----==_mimepart_5d41cccd3fc73_44073ff5172cd96c1388d6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309336759">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  
 
 ## Decoder Instructions {#decoder-instructions}
 
-Decoder instructions provide information used to ensure consistency of the
</pre>
<p>I propose to change this paragraph to match the first paragraph of Encoder Instructions 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/2942?email_source=notifications&amp;email_token=AFTOJK2VU7GZGWSU37L257LQCHCE3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRCDQ#pullrequestreview-269160718">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76LDTFLT5IJCG26LDQCHCE3ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2YKCKCRE7H2CDTLHLQCHCE3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRCDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK2VU7GZGWSU37L257LQCHCE3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRCDQ#pullrequestreview-269160718",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK2VU7GZGWSU37L257LQCHCE3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRCDQ#pullrequestreview-269160718",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cccd3fc73_44073ff5172cd96c1388d6--


From nobody Wed Jul 31 10:17:09 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 50A9B1203D6 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:17:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, 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 ypuv3LntlhEN for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:17: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 012B612034D for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:17:07 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:17:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593426; bh=sVFhwlhAaKEAVi1inC0SO0JkKCyC8LRIc+dspDoO8IA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mKz7hqioFitmbP1QpY98ZYZcI31CO6+UEkQV8UR360GB4KWtAuUr62jkMLA+7yOJ7 W+6kabKHB1I2JYV8+X16raSXc0z6iAD6psvLUf2wJBcg9XukS3XmXXNa6Py8DZKzbM tu9WO+CGhAGzbQ/0K6PQ7P4MuAC39vSIytnaqFIo=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FZERT4SAUJIWCKG53J37ZFEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269161294@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cd12436ee_5b883f9cd80cd960271b3"; 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/2YY4VESt0jgcFpXanDg59zyh5W4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:17:08 -0000

----==_mimepart_5d41cd12436ee_5b883f9cd80cd960271b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



>  
 
 ## Decoder Instructions {#decoder-instructions}
 
-Decoder instructions provide information used to ensure consistency of the
-dynamic table. They are sent from the decoder to the encoder on a decoder
-stream; that is, the server informs the client about the processing of the

This discussion of client and server seems out of place.  If it is really necessary, Section 2 might be a better place to talk about the two contexts and how both endpoint needs to have an encoder and a 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/pull/2942#pullrequestreview-269161294
----==_mimepart_5d41cd12436ee_5b883f9cd80cd960271b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309337190">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  
 
 ## Decoder Instructions {#decoder-instructions}
 
-Decoder instructions provide information used to ensure consistency of the
-dynamic table. They are sent from the decoder to the encoder on a decoder
-stream; that is, the server informs the client about the processing of the
</pre>
<p>This discussion of client and server seems out of place.  If it is really necessary, Section 2 might be a better place to talk about the two contexts and how both endpoint needs to have an encoder and a 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/pull/2942?email_source=notifications&amp;email_token=AFTOJK4YPGZBU2MGSTSEJH3QCHCJFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRGTQ#pullrequestreview-269161294">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7YNUEBB2NTZWJT5JDQCHCJFANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2WAPC2Q7VQPLM6MZLQCHCJFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRGTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4YPGZBU2MGSTSEJH3QCHCJFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRGTQ#pullrequestreview-269161294",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK4YPGZBU2MGSTSEJH3QCHCJFA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRGTQ#pullrequestreview-269161294",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cd12436ee_5b883f9cd80cd960271b3--


From nobody Wed Jul 31 10:17:56 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 2CA1A1205FF for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:17:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id G3PrMJI-a5P4 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:17: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 673D61205EF for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:17:45 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:17:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593464; bh=YoRPPOdy/h2zVdrQgfajjgOCkvG5w+SoZl6fI+de7aE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Tg1+VDHnF+t/WH61kP1CB03RYtRnYB34x696UmguNeug3a+bLPVcpv3hrp+JuBrov 7EGO94SrT1qv/8+oDcPdkIwXg2G+k+X0Txlu1M10yV7TM4azbhpNxBgPeI+SeJYOmn f3PdJy9G52GoCZ9x/eYNzA8UlmTk8u3ZYXaspOgY=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36BPIRFL66MDE5FZ53J373REVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269161620@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cd38a35da_45333fa16d0cd96c82929"; 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/b68n6hlamd7eyp3W_cfPLzWU6QQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:17:55 -0000

----==_mimepart_5d41cd38a35da_45333fa16d0cd96c82929
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -814,7 +815,7 @@ cause a stream to become blocked, as described in {{state-synchronization}}.
 ~~~~~~~~~~
 {:#fig-size-sync title="Insert Count Increment"}
 
-An encoder that receives an Increment field equal to zero or one that increases

"zero or one" gets the reader's brain in the wrong groove.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269161620
----==_mimepart_5d41cd38a35da_45333fa16d0cd96c82929
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309337446">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -814,7 +815,7 @@ cause a stream to become blocked, as described in {{state-synchronization}}.
 ~~~~~~~~~~
 {:#fig-size-sync title=&quot;Insert Count Increment&quot;}
 
-An encoder that receives an Increment field equal to zero or one that increases
</pre>
<p>"zero or one" gets the reader's brain in the wrong groove.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK6BZRJHMPJ4OYAZMWTQCHCLRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRJFA#pullrequestreview-269161620">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK43LUVYMKOXXAYZO3LQCHCLRANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSD3BGNIAALNZYHGLQCHCLRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRJFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK6BZRJHMPJ4OYAZMWTQCHCLRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRJFA#pullrequestreview-269161620",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK6BZRJHMPJ4OYAZMWTQCHCLRA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRJFA#pullrequestreview-269161620",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cd38a35da_45333fa16d0cd96c82929--


From nobody Wed Jul 31 10:20:03 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 1E2FB12049D for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:20:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.595
X-Spam-Level: 
X-Spam-Status: No, score=-6.595 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bIjW5kjVp9Xs for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:20: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 C8F7B1203D6 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:20:00 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:19:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593599; bh=JPALJ+9YSOElaML22KGql312ngKSfEpKy60R8u1w2Tc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cW7KONF6uOnnZqUbefVqGJ1it7Y1CtnH7q3euSpmhQJN5Ixen+4g3mgFtAIFvildB aH2QJnfHHTp7xR8MyDsZ4qHHM7UprBOXpdpJowZtWc4xelru+8I9cpkFH7zuiK6A4j 4uwOnP4J7FAaEux6JGGsEH14S5wEReMLDDWNHl9s=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XWTHKR7XNIN4DORV3J4AD7EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269162743@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cdbfd0f61_45313fa16d0cd96c129611"; 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/K2KGHJu2U5E0kRPsHBnhcKeE6GM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:20:02 -0000

----==_mimepart_5d41cdbfd0f61_45313fa16d0cd96c129611
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -830,10 +831,8 @@ modifying it.
 
 Each header block is prefixed with two integers.  The Required Insert Count is
 encoded as an integer with an 8-bit prefix after the encoding described in
-{{ric}}).  The Base is encoded as sign-and-modulus integer, using a single sign

A cursory web search shows that "sign-and-magnitude" is used a lot more often than "sign-and-modulus", which might conjure images of modulo arithmetic.  I propose not to put a name on this encoding, since there's an off-by-one that's not common for sign-and-modulus representations anyway.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269162743
----==_mimepart_5d41cdbfd0f61_45313fa16d0cd96c129611
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309338410">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -830,10 +831,8 @@ modifying it.
 
 Each header block is prefixed with two integers.  The Required Insert Count is
 encoded as an integer with an 8-bit prefix after the encoding described in
-{{ric}}).  The Base is encoded as sign-and-modulus integer, using a single sign
</pre>
<p>A cursory web search shows that "sign-and-magnitude" is used a lot more often than "sign-and-modulus", which might conjure images of modulo arithmetic.  I propose not to put a name on this encoding, since there's an off-by-one that's not common for sign-and-modulus representations anyway.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK5GQSTZJXDYTVJF5KDQCHCT7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRR5Y#pullrequestreview-269162743">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6Z2B3AJSE22HJTYZ3QCHCT7ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK33IRP22P4TMZGMGVLQCHCT7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRR5Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK5GQSTZJXDYTVJF5KDQCHCT7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRR5Y#pullrequestreview-269162743",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK5GQSTZJXDYTVJF5KDQCHCT7A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRR5Y#pullrequestreview-269162743",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cdbfd0f61_45313fa16d0cd96c129611--


From nobody Wed Jul 31 10:20:48 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8CA5012049D for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:20:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sJa3l4iWIgCk for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:20: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 022BE120477 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:20:45 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:20:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593645; bh=WAsHQ0/S4tIeWOFzHaUHRA6E4RW57WO2SFLYUIeIv/Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nzAGP2xjk49POZ8oTtCvVPQclwz7puMSo3k4uAC6Wah3h/7f9r/1QT0a5lJU3ZQUu gYmXcZ65yq4vMzAI7rWN6+/bw4eq+zyyLO1l44vwAQV744ZqWOQ+3MLqJDu7JtEy+D TM7GKxqHwU6401mK0ORe/7ipPDykbYJq4Wpr6LnA=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK323VNBYRXYXZUKTWF3J4AG3EVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269163135@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41cded43084_23fd3fa0fc4cd95c69818"; 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/PP4ErP-fQh4Tp2jSw4erogm5wAE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:20:48 -0000

----==_mimepart_5d41cded43084_23fd3fa0fc4cd95c69818
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -937,11 +939,11 @@ entries, the Base will be greater than the Required Insert Count, so the delta
 will be positive and the sign bit is set to 0.
 
 An encoder that produces table updates before encoding a header block might set
-Required Insert Count and the Base to the same value.  In such case, both the

Rewording to emphasize that the encoder has very limited freedom in what to set Required Insert Count to.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269163135
----==_mimepart_5d41cded43084_23fd3fa0fc4cd95c69818
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309338708">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -937,11 +939,11 @@ entries, the Base will be greater than the Required Insert Count, so the delta
 will be positive and the sign bit is set to 0.
 
 An encoder that produces table updates before encoding a header block might set
-Required Insert Count and the Base to the same value.  In such case, both the
</pre>
<p>Rewording to emphasize that the encoder has very limited freedom in what to set Required Insert Count to.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJKYXQT7LKBBFLH6IDA3QCHCW3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRU7Y#pullrequestreview-269163135">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JJL6SXSTXXCLDLJLQCHCW3ANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJ2N6HDFM7CEOBR2DQCHCW3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRU7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKYXQT7LKBBFLH6IDA3QCHCW3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRU7Y#pullrequestreview-269163135",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKYXQT7LKBBFLH6IDA3QCHCW3A5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRU7Y#pullrequestreview-269163135",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41cded43084_23fd3fa0fc4cd95c69818--


From nobody Wed Jul 31 10:21:15 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E3DB0120480 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:21:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nN5r1o6d4kCo for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:21:11 -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 5356E1203D6 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:21:11 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:21:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593670; bh=SX3hjOevT2dYZUsotY4YlpqOhl95jOtSvbboq49n+OQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ICOT/fr1ClD/MBIWF5kLmHEGYmHODR6W6Je4UFwfqxBs6bodgkeyjNNemKAT10rTW e57a5QesFWaMymb8N0yG4ui0sVQsj23Q59B5RjVojWwWIzMcDUuIcc+GzAVECm9u6w pPDJ4vh2Bym3hj7967qWKP1UFSDzcIPM0F1nR/JI=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2QPXLYYAR37RRNNWF3J4AILEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269163357@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41ce05b1a38_41973f9cd80cd960832df"; 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/UDpDdMczFYOVx1pmtSRh7rQA3lA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:21:13 -0000

----==_mimepart_5d41ce05b1a38_41973f9cd80cd960832df
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -993,7 +993,7 @@ field, represented as an integer with a 4-bit prefix (see Section 5.1 of
 
 ### Literal Header Field With Name Reference {#literal-name-reference}
 
-A literal header field with a name reference represents a header where the

Removing "a" to be consistent with subsection title.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2942#pullrequestreview-269163357
----==_mimepart_5d41ce05b1a38_41973f9cd80cd960832df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309338876">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -993,7 +993,7 @@ field, represented as an integer with a 4-bit prefix (see Section 5.1 of
 
 ### Literal Header Field With Name Reference {#literal-name-reference}
 
-A literal header field with a name reference represents a header where the
</pre>
<p>Removing "a" to be consistent with subsection title.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications&amp;email_token=AFTOJK7XAWTKB6SBXF6J6FLQCHCYLA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRWXI#pullrequestreview-269163357">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4YLJQZ2JFQNILOP2TQCHCYLANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OVM3JW3NVL6OD4ELQCHCYLA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRWXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK7XAWTKB6SBXF6J6FLQCHCYLA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRWXI#pullrequestreview-269163357",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJK7XAWTKB6SBXF6J6FLQCHCYLA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFRWXI#pullrequestreview-269163357",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41ce05b1a38_41973f9cd80cd960832df--


From nobody Wed Jul 31 10:22:08 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0A369120480 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:22:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i0JDkivEO_su for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 10:22: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 91CB512034D for <quic-issues@ietf.org>; Wed, 31 Jul 2019 10:22:00 -0700 (PDT)
Date: Wed, 31 Jul 2019 10:21:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564593719; bh=UictuC6xqwV2hFRP9Sfj2PGggN9ejYwfkLjPFJvithg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I1INkaYozOp2g79fIFqf+O3GjLe2lFkDG6A5QGywWE0uNHMp+RcsKKSfvAK84Qshk wJw2MczuEnksfz8YnBYLi0rbUgRWLvdSKbkQuRXYHrbyJUnfey/9E7aH2yawVezLvM aFqa62IIpSTB1AKBKGM0xkEJqNVC9w85r4zK+RU8=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMXMYFFKDDYPS7O2N3J4ALPEVBNHHBYU6MYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2942/review/269163805@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2942@github.com>
References: <quicwg/base-drafts/pull/2942@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [editorial] Misc minor editorial changes. (#2942)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41ce37c09b8_2a663f95120cd96021184a"; 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/mfl4WI8VjgOnh13JRkoOLrBet6E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 17:22:02 -0000

----==_mimepart_5d41ce37c09b8_2a663f95120cd96021184a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

bencebeky commented on this pull request.



> @@ -1119,7 +1119,7 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 # Security Considerations
 
-TBD.
+TBD.  Also see Section 7.1 of [RFC7541].

This allows the reference to Section 7.1 in Literal Header Field With Name Reference section be replaced with an internal reference to this 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/2942#pullrequestreview-269163805
----==_mimepart_5d41ce37c09b8_2a663f95120cd96021184a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@bencebeky</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2942#discussion_r309339240">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1119,7 +1119,7 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 # Security Considerations
 
-TBD.
+TBD.  Also see Section 7.1 of [RFC7541].
</pre>
<p>This allows the reference to Section 7.1 in Literal Header Field With Name Reference section be replaced with an internal reference to this 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/2942?email_source=notifications&amp;email_token=AFTOJKZQYIRGSZS5YD5W243QCHC3PA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFR2HI#pullrequestreview-269163805">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZHQGA5F2PTU4ANGYTQCHC3PANCNFSM4IIIVN5Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Q6HNCK6JAP2NHY2DQCHC3PA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFR2HI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKZQYIRGSZS5YD5W243QCHC3PA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFR2HI#pullrequestreview-269163805",
"url": "https://github.com/quicwg/base-drafts/pull/2942?email_source=notifications\u0026email_token=AFTOJKZQYIRGSZS5YD5W243QCHC3PA5CNFSM4IIIVN52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAFR2HI#pullrequestreview-269163805",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41ce37c09b8_2a663f95120cd96021184a--


From nobody Wed Jul 31 11:10:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C6B1E12017C for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 11:10:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Fu2tp53-r4Yp for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 11:10: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 5067F1200E5 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 11:10:14 -0700 (PDT)
Date: Wed, 31 Jul 2019 11:10:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564596613; bh=KlIy30Bfvrr0uDn/YI1PuwAiktIMLOqbyVRN1YzkrYE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=p/MOf53ssJtNobfPWAQDRyNwRS62ZrHNpnBhCiZCvkA40rCsPyxWx86a6huUxuszZ qIcI0ASyqbyLNhTR1G/pcwslHSexhTCHjNbzbcbQHT+8D9cvkd6g8HEZ4MeyAu91gg XXckh4+QnSitSZsBbjH10wbFawIB3QBeL8CwBIy8=
From: Rui Paulo <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72Y2G3SXNIGBSK5NF3J4GALEVBNHHBYVCIVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2943@github.com>
Subject: [quicwg/base-drafts] Update the PreferredAddress structure to accomodate a 20 byte CID. (#2943)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41d98586442_7e843f872d8cd9641586d1"; 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/VCDA80FV4euCt5DC_VHOA0vuXVY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 18:10:16 -0000

----==_mimepart_5d41d98586442_7e843f872d8cd9641586d1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Just an editorial fix.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/2943

-- Commit Summary --

  * Update the PreferredAddress structure to accomodate a 20 byte CID.

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/2943.patch
https://github.com/quicwg/base-drafts/pull/2943.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/2943

----==_mimepart_5d41d98586442_7e843f872d8cd9641586d1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Just an editorial fix.</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/2943'>https://github.com/quicwg/base-drafts/pull/2943</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update the PreferredAddress structure to accomodate a 20 byte CID.</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/2943/files#diff-0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2943.patch'>https://github.com/quicwg/base-drafts/pull/2943.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/2943.diff'>https://github.com/quicwg/base-drafts/pull/2943.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/2943?email_source=notifications&amp;email_token=AFTOJK7H5DMJHZTSKJEMEVDQCHIQLA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUJCVA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3CCSAFOSMOCCFDR23QCHIQLANCNFSM4IIJIFYQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2FDUBZXO73SM32WQ3QCHIQLA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUJCVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2943?email_source=notifications\u0026email_token=AFTOJK7H5DMJHZTSKJEMEVDQCHIQLA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUJCVA",
"url": "https://github.com/quicwg/base-drafts/pull/2943?email_source=notifications\u0026email_token=AFTOJK7H5DMJHZTSKJEMEVDQCHIQLA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUJCVA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d41d98586442_7e843f872d8cd9641586d1--


From nobody Wed Jul 31 11:14:49 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id DBB411206B8 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 11:14:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Urh8r3uvOwVp for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 11:14: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 139961206AD for <quic-issues@ietf.org>; Wed, 31 Jul 2019 11:14:39 -0700 (PDT)
Date: Wed, 31 Jul 2019 11:14:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564596878; bh=fDuo6ayH1xFjrZ0KqOCEVwSvYPP74G8uO/I2wtz/v0o=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=cLtRqHNYbGGHKc8F347VBS9JvaDVcigqbOOJfRlko92uQgOraClSLNo2vU6GrvrgQ wUGA3JteB83GOwVjWS7+L89Hoa6pVjre7bsMsz9ebED6Ni+xPxxvJThCCeaisqY6ow se8OEVUfzdI2ctLzoKIKNHV8TJsHhWdpYxV2YhGc=
From: Rui Paulo <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZGXCC5GHFTVM6JTDN3J4GQ5EVBNHHBYVCQDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2944@github.com>
Subject: [quicwg/base-drafts] Layout of PreferredAddress (#2944)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41da8e5c59c_273c3fb0b0acd96014239b"; 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/88RdiJskFxW8JG0R6Mcccfmaid4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 18:14:47 -0000

----==_mimepart_5d41da8e5c59c_273c3fb0b0acd96014239b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The PreferredAddress structure has a variable length field right in the middle of it.  Since the CID is the only variable length field, we could make it slightly easier to implement by moving the CID to the end:

```
  struct {
     opaque ipv4Address[4];
     uint16 ipv4Port;
     opaque ipv6Address[16];
     uint16 ipv6Port;
     opaque statelessResetToken[16];
     opaque connectionId<0..18>;
   } PreferredAddress;
```

-- 
You are receiving 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/2944
----==_mimepart_5d41da8e5c59c_273c3fb0b0acd96014239b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The PreferredAddress structure has a variable length field right in the middle of it.  Since the CID is the only variable length field, we could make it slightly easier to implement by moving the CID to the end:</p>
<pre><code>  struct {
     opaque ipv4Address[4];
     uint16 ipv4Port;
     opaque ipv6Address[16];
     uint16 ipv6Port;
     opaque statelessResetToken[16];
     opaque connectionId&lt;0..18&gt;;
   } PreferredAddress;
</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/2944?email_source=notifications&amp;email_token=AFTOJK6MZA76MUM633DZGW3QCHJA5A5CNFSM4IIJJJK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUKANA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4OJXGFIUFQRREZ6J3QCHJA5ANCNFSM4IIJJJKQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYF3NPWIHEESH7VELQCHJA5A5CNFSM4IIJJJK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUKANA.gif" height="1" width="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/2944?email_source=notifications\u0026email_token=AFTOJK6MZA76MUM633DZGW3QCHJA5A5CNFSM4IIJJJK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUKANA",
"url": "https://github.com/quicwg/base-drafts/issues/2944?email_source=notifications\u0026email_token=AFTOJK6MZA76MUM633DZGW3QCHJA5A5CNFSM4IIJJJK2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCUKANA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41da8e5c59c_273c3fb0b0acd96014239b--


From nobody Wed Jul 31 12:08:45 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id BDE3B12004F for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 12:08:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ku0OXWSJQm2Y for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 12:08: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 2D3E9120018 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 12:08:42 -0700 (PDT)
Date: Wed, 31 Jul 2019 12:08:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564600121; bh=BodcHqcC/2Z02F7vWiFhpC/Spiyam9Pru0v1kgmqXWs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JIJry4+7nHXWMu7oaBT7R2FGN6z9g39yIadt5nL198GrPNMoTuiQQuIw/i6UX0xui 7WEAlpgqL7IbdrUxMd71FyO78T0XvAnQTUX1izu2By5WdOHU5lQpq/WIwmSrFGqWQJ zDw4bnkSp72OSXheHiOl3K7H+wmxaUjIigrH7qes=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ZPUXNGOK2HZCIXQV3J4M3TEVBNHHBYVCIVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2943/review/269223104@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2943@github.com>
References: <quicwg/base-drafts/pull/2943@github.com>
Subject: Re: [quicwg/base-drafts] Update the PreferredAddress structure to accomodate a 20 byte CID. (#2943)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d41e73949a2b_25773fc0d78cd96c1544af"; 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/BGZTHSwK9UIDXk7YXARhWd9kRoY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 19:08:44 -0000

----==_mimepart_5d41e73949a2b_25773fc0d78cd96c1544af
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/2943#pullrequestreview-269223104
----==_mimepart_5d41e73949a2b_25773fc0d78cd96c1544af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2943?email_source=notifications&amp;email_token=AFTOJK2XTN2274XUCAOKACTQCHPLTA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGAJQA#pullrequestreview-269223104">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7PGHHWP4X7S5KK5UDQCHPLTANCNFSM4IIJIFYQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5PAREOPSO4DS7ZA73QCHPLTA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGAJQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2943?email_source=notifications\u0026email_token=AFTOJK2XTN2274XUCAOKACTQCHPLTA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGAJQA#pullrequestreview-269223104",
"url": "https://github.com/quicwg/base-drafts/pull/2943?email_source=notifications\u0026email_token=AFTOJK2XTN2274XUCAOKACTQCHPLTA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGAJQA#pullrequestreview-269223104",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d41e73949a2b_25773fc0d78cd96c1544af--


From nobody Wed Jul 31 14:56:52 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C31C81200C7 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 14:56:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qWXS7RUPKbaU for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 14:56: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 ED81412006D for <quic-issues@ietf.org>; Wed, 31 Jul 2019 14:56:48 -0700 (PDT)
Date: Wed, 31 Jul 2019 14:56:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564610208; bh=PvtVxmeRvt8EB1pJvcE+qa7iUHZTT+uZ37zvjrtr9hQ=; h=Date:From:To:Subject:From; b=VQB7mvw2RD0RMrG0gdpE7cnNn4YfyWYpPYnSvt4QJbEcTVEQYlLamK06458K93iar ScFRY1Xwli7vwdtQO8s6ICkXQjzkDh3YOzPkIJuswf/JAYuH2Rt3eobmcPO9BJtpnR hIbKW98gYadODteSkf5ut3Sp0F/mow8eFkvNAYEc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/928c22-ad3b50@github.com>
Subject: [quicwg/base-drafts] 3d6220: Update the PreferredAddress structure to accomodat...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NV2UcleQme0MJeK1sFSzQ2fcO0o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 21:56:51 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3d6220f7f48304946d8c3eee63af96bfe3a55111
      https://github.com/quicwg/base-drafts/commit/3d6220f7f48304946d8c3eee63af96bfe3a55111
  Author: Rui Paulo <rpaulo@me.com>
  Date:   2019-07-31 (Wed, 31 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update the PreferredAddress structure to accomodate a 20 byte CID.


  Commit: ad3b507b7a367aacdc6bbebb40c8273d542518d4
      https://github.com/quicwg/base-drafts/commit/ad3b507b7a367aacdc6bbebb40c8273d542518d4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-08-01 (Thu, 01 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2943 from rpaulo/preferred-address-cid

Update the PreferredAddress structure to accomodate a 20 byte CID.


Compare: https://github.com/quicwg/base-drafts/compare/928c223a073a...ad3b507b7a36


From nobody Wed Jul 31 14:57:00 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B5BD41200C7 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 14:56:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ne_PNnEfdksH for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 14:56: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 1DA8A12006D for <quic-issues@ietf.org>; Wed, 31 Jul 2019 14:56:57 -0700 (PDT)
Date: Wed, 31 Jul 2019 14:56:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564610216; bh=+fDi/JZ0B0XsWQX2b3zTo1avuY5KR/mnaWZGyrLHUVI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tfYQI459+QJ1640DSvXy9Qsen0pahRjRRGihXEVvzeRVDk8RC6FeT5M/Og81ec3lU iq9NkI6zxuqbtPW2vXs4QitFPQp0ARajHMH+v8WHZfBZ2yQOfBbRKrNNozIeAllPNZ r0KyMs50QXCNOe77SUA5OIU3XxAx2+jhKj5FiZGg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZY2S276JY74I6ENVF3J5ASREVBNHHBYVCIVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2943/issue_event/2524664931@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2943@github.com>
References: <quicwg/base-drafts/pull/2943@github.com>
Subject: Re: [quicwg/base-drafts] Update the PreferredAddress structure to accomodate a 20 byte CID. (#2943)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d420ea8613e_66f93ffdc86cd96828147a"; 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/UOofCmfJSwMQ0gi_OhoTra2Tibg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 21:56:59 -0000

----==_mimepart_5d420ea8613e_66f93ffdc86cd96828147a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2943 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/2943#event-2524664931
----==_mimepart_5d420ea8613e_66f93ffdc86cd96828147a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="475285674" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2943" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2943/hovercard" href="https://github.com/quicwg/base-drafts/pull/2943">#2943</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/2943?email_source=notifications&amp;email_token=AFTOJK5B3D75PSCOEPCJRC3QCIDCRA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZ5VIYY#event-2524664931">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2SCVMVQTDYYHSW52DQCIDCRANCNFSM4IIJIFYQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK74PD2RIA4ZJIG2OMTQCIDCRA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZ5VIYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2943?email_source=notifications\u0026email_token=AFTOJK5B3D75PSCOEPCJRC3QCIDCRA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZ5VIYY#event-2524664931",
"url": "https://github.com/quicwg/base-drafts/pull/2943?email_source=notifications\u0026email_token=AFTOJK5B3D75PSCOEPCJRC3QCIDCRA5CNFSM4IIJIFY2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSZ5VIYY#event-2524664931",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d420ea8613e_66f93ffdc86cd96828147a--


From nobody Wed Jul 31 14:58:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 69BC31200C7 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 14:58:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.001
X-Spam-Level: 
X-Spam-Status: No, score=-7.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GmiT3edfr28V for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 14:58: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 0CB7F12006D for <quic-issues@ietf.org>; Wed, 31 Jul 2019 14:58:15 -0700 (PDT)
Date: Wed, 31 Jul 2019 14:58:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564610294; bh=YMItF6AVeq/Cl5+MisQxqdSPx3SgFM59KukTOiDnbho=; h=Date:From:To:Subject:From; b=xOnLRqfSgvq9x+fQxGiQzNqzZNYFX3yQTjVDLfztlkkUoRPpOaMcPEVbzYu/taYhY dMmAxQefPRwadDeKK8+8/7XW5Yt+hKYDgucsV4jb5j49JCmHuM5H4kiQAptqhfbwgo OcgFOCpRhdferLtYaO9fl3mWV3TuJ8yEUyo1Xgug=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9db8ca-1b88de@github.com>
Subject: [quicwg/base-drafts] 1b88de: Script updating gh-pages from ad3b507b. [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/tGFo3QdTuUtJ95QvtNXWoNJaVlY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 21:58:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1b88de2f9b5b7a6f95a91122b335ee18d6e29703
      https://github.com/quicwg/base-drafts/commit/1b88de2f9b5b7a6f95a91122b335ee18d6e29703
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-31 (Wed, 31 Jul 2019)

  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 transport/late-packets/draft-ietf-quic-http.html
    R transport/late-packets/draft-ietf-quic-http.txt
    R transport/late-packets/draft-ietf-quic-invariants.html
    R transport/late-packets/draft-ietf-quic-invariants.txt
    R transport/late-packets/draft-ietf-quic-qpack.html
    R transport/late-packets/draft-ietf-quic-qpack.txt
    R transport/late-packets/draft-ietf-quic-recovery.html
    R transport/late-packets/draft-ietf-quic-recovery.txt
    R transport/late-packets/draft-ietf-quic-tls.html
    R transport/late-packets/draft-ietf-quic-tls.txt
    R transport/late-packets/draft-ietf-quic-transport.html
    R transport/late-packets/draft-ietf-quic-transport.txt
    R transport/late-packets/index.html

  Log Message:
  -----------
  Script updating gh-pages from ad3b507b. [ci skip]



From nobody Wed Jul 31 15:00:33 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7CEDF1200C7 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 15:00:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.002
X-Spam-Level: 
X-Spam-Status: No, score=-7.002 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 0FQBgNMfft_1 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 15:00: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 C219412006D for <quic-issues@ietf.org>; Wed, 31 Jul 2019 15:00:29 -0700 (PDT)
Date: Wed, 31 Jul 2019 15:00:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564610428; bh=1zTOLC0tVdwv4N9M3j9DzfOUfRxBelyLjK9T8vJLj+c=; h=Date:From:To:Subject:From; b=GDLmVwJmVXra4dkfkRAkSEzpxNj3S2bSX/9c9ciHfarm/jRzng8C/mEEDgiO1qFt8 qARFYrTKSs/f2jlBCUh8OLs253Q2iYc1dGwYMrqsnpwoPdsuqy8hwCECn1NoQQnXyC jlddszRmNfPj84nKRCISlAAWnYW/VHsYI3AfX3BA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1b88de-08f806@github.com>
Subject: [quicwg/base-drafts] 08f806: Script updating issues at 2019-07-31T22:00:21Z. [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/A-LihAx0cjgGdKhj9reXF_jJAPQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 22:00:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 08f806b646b7ebed5538b1fc9d95c12b0f0ebf8c
      https://github.com/quicwg/base-drafts/commit/08f806b646b7ebed5538b1fc9d95c12b0f0ebf8c
  Author: ID Bot <idbot@example.com>
  Date:   2019-07-31 (Wed, 31 Jul 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-07-31T22:00:21Z. [ci skip]



From nobody Wed Jul 31 15:12:35 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C08AC120046 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 15:12:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.454
X-Spam-Level: 
X-Spam-Status: No, score=-6.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id z2zhKHmph-Sd for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 15:12: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 16B7512001E for <quic-issues@ietf.org>; Wed, 31 Jul 2019 15:12:32 -0700 (PDT)
Date: Wed, 31 Jul 2019 15:12:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564611151; bh=KtPwGuyonhL/jzpkqmFoegvEdQhivp4dk83k8oQDk50=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lQkgFirP+KmslpUJw7FQHneY4Ie72bppRbt/5pbj8kvenx+VVUeXi0Vbx+CaXOH4i dOt+oog0q5zjkTSRt9I9xyQA9/sUkW4h8JNQiZVHXhHh2K/zKwAxVPd9WKd9TmgE0r w0Oe9VwzcWG7YfNU1DdQxCfIaF9vJUacY+f4QfCs=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6BZ6PQHLIOB6MMZCN3J5CM7EVBNHHBYU3R64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2939/review/269310483@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2939@github.com>
References: <quicwg/base-drafts/pull/2939@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [design] Decoder MUST emit Header Acknowledgement. (#2939)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d42124f426be_3f983faf1a4cd96c411496"; 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/SGCMYa2m4fiaN5yZcE6XMgIv5kI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 31 Jul 2019 22:12:34 -0000

----==_mimepart_5d42124f426be_3f983faf1a4cd96c411496
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.

This doesn't allow for a delay in sending an ack. That delay might be useful in reducing overheads. That might be a new 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/2939#pullrequestreview-269310483
----==_mimepart_5d42124f426be_3f983faf1a4cd96c411496
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<p>This doesn't allow for a delay in sending an ack. That delay might be useful in reducing overheads. That might be a new 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/2939?email_source=notifications&amp;email_token=AFTOJK6GWJUOH5T65FUT3NDQCIE47A5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGVUEY#pullrequestreview-269310483">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7OKHGGHWMYYTHGJCLQCIE47ANCNFSM4IIIH3CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34EATS3MRLKWMO6RTQCIE47A5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGVUEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK6GWJUOH5T65FUT3NDQCIE47A5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGVUEY#pullrequestreview-269310483",
"url": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK6GWJUOH5T65FUT3NDQCIE47A5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCAGVUEY#pullrequestreview-269310483",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d42124f426be_3f983faf1a4cd96c411496--


From nobody Wed Jul 31 17:00:43 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 50503120110 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:00:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PpSC1B6wdvoM for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:00:41 -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 19E11120108 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 17:00:41 -0700 (PDT)
Date: Wed, 31 Jul 2019 17:00:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564617640; bh=bI826sCYU6wFiZsHC3pZNOnGP9eGFiG9ErKSOylkpiA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qhEiqotbZw20NOfsXuLayTCUqObO2kWmeCDfloy5r0/KRMNA6ILtVUiW6P4dn+u2W ZYT2lB7ruEs1MIe8C4TYDnnqRBdFGDAxU8Xj1F3vkr/ntezCEs9cJl2y65vbVQbdgU 9VVbuRwcxuGhZK+SnZGoWLtnEwnBX6LehkI2Cb0I=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZG365G3UUSIJGHQYN3J5PCREVBNHHBYU3R64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2939/c517065949@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2939@github.com>
References: <quicwg/base-drafts/pull/2939@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [design] Decoder MUST emit Header Acknowledgement. (#2939)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d422ba837112_39273f8a3dccd95c95626"; 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/d-6skr8GVftyJuHd-WlD8eZbopk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 01 Aug 2019 00:00:42 -0000

----==_mimepart_5d422ba837112_39273f8a3dccd95c95626
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> This doesn't allow for a delay in sending an ack. That delay might be useful in reducing overheads. That might be a new issue though.

That's a good point, I haven't thought about it.  Would changing "When the decoder finishes decoding..." to "After the decoder finishes decoding..." be sufficient to allow for delayed ACKs?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2939#issuecomment-517065949
----==_mimepart_5d422ba837112_39273f8a3dccd95c95626
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>This doesn't allow for a delay in sending an ack. That delay might be useful in reducing overheads. That might be a new issue though.</p>
</blockquote>
<p>That's a good point, I haven't thought about it.  Would changing "When the decoder finishes decoding..." to "After the decoder finishes decoding..." be sufficient to allow for delayed ACKs?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications&amp;email_token=AFTOJK6L43V7P3K4FOPUILLQCIRSRA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I4ZXI#issuecomment-517065949">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FF7RHJ57QFYUTVDLQCIRSRANCNFSM4IIIH3CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IU4MWMEBV734LXCLQCIRSRA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I4ZXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK6L43V7P3K4FOPUILLQCIRSRA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I4ZXI#issuecomment-517065949",
"url": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK6L43V7P3K4FOPUILLQCIRSRA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I4ZXI#issuecomment-517065949",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d422ba837112_39273f8a3dccd95c95626--


From nobody Wed Jul 31 17:03:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E11521201E5 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:03:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.908
X-Spam-Level: 
X-Spam-Status: No, score=-6.908 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8Q-1w31vG6FZ for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:03:00 -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 97F3B120194 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 17:03:00 -0700 (PDT)
Date: Wed, 31 Jul 2019 17:02:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564617779; bh=tyD+13jbeAUlxST0AuWQSQnvUbk5FQIBbrjxnzj7n8Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=h8Qvp9OVt5r3YmrX9dgwPSXDuo8JTC+qxQdRTimQLzD9uW9YfZmiWTU065yuJ7Xdu /tV896kbD9WoqJ0b1rNOftCb16htYk681jwOoRqbGyB5H1CdUucYGSkvJXWSR6IWMA XUrkocAyvLIcBYxSrYvviSEeUeafKealbpzc677Q=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7G5JIR45W4JI7M4VF3J5PLHEVBNHHBYU3R64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2939/c517066431@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2939@github.com>
References: <quicwg/base-drafts/pull/2939@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [design] Decoder MUST emit Header Acknowledgement. (#2939)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d422c33a69f9_44593ffb7dacd95c130928"; 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/JiHqo7MKRx1_CaNByWY54N-5laQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 01 Aug 2019 00:03:05 -0000

----==_mimepart_5d422c33a69f9_44593ffb7dacd95c130928
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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/2939#issuecomment-517066431
----==_mimepart_5d422c33a69f9_44593ffb7dacd95c130928
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<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/2939?email_source=notifications&amp;email_token=AFTOJK4NEFBU4TA37Q7O3H3QCIR3HA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I45PY#issuecomment-517066431">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4FJK3T5KPZHKBBLLDQCIR3HANCNFSM4IIIH3CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4TAQYGBPB7VPQA3G3QCIR3HA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I45PY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK4NEFBU4TA37Q7O3H3QCIR3HA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I45PY#issuecomment-517066431",
"url": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK4NEFBU4TA37Q7O3H3QCIR3HA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I45PY#issuecomment-517066431",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d422c33a69f9_44593ffb7dacd95c130928--


From nobody Wed Jul 31 17:09:10 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C195A1200F5 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:09:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.381
X-Spam-Level: 
X-Spam-Status: No, score=-6.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8HGiUSVAqEfC for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:09: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 3FF8E120043 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 17:09:08 -0700 (PDT)
Date: Wed, 31 Jul 2019 17:09:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564618147; bh=yCadJUhGcCfY4ROQC5nAzfizci5JN69yptrLAporV8c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aXFpCvbWDK+wsWQYuSuZvjG4Gn80z7/4z8dog3AiCMgtEUhA9yjgOb19UbcRW1144 F72vRc5xNoweO4RUFAR1D5YCC3QsCa4OEbNdv0a+3yd4+mSVGzsdNLy8qlWOi+Mfd6 ZR5KXvc6svDJnnQ7gqH2rPAcCY3rtRbDdN5sEyjU=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <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/2939/push/3877393235@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2939@github.com>
References: <quicwg/base-drafts/pull/2939@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [design] Decoder MUST emit Header Acknowledgement. (#2939)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d422da360d6f_1a143fb0678cd9602590d4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bencebeky
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/ttR5NSbWAyx3cV2saODULI3w8zc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 01 Aug 2019 00:09:10 -0000

----==_mimepart_5d422da360d6f_1a143fb0678cd9602590d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@bencebeky pushed 1 commit.

a0ca80b795fda219962c8c4fb428c14fd7cc2c4d  Change "when" to "after" to allow for delayed acknowledgements that might reduce overheads.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2939/files/16ea45bf47318a229fc48f3d4f6969422e4fb52c..a0ca80b795fda219962c8c4fb428c14fd7cc2c4d

----==_mimepart_5d422da360d6f_1a143fb0678cd9602590d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/bencebeky" class="user-mention">@bencebeky</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a0ca80b795fda219962c8c4fb428c14fd7cc2c4d">a0ca80b</a>  Change &quot;when&quot; to &quot;after&quot; to allow for delayed acknowledgements that might reduce overheads.</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/2939/files/16ea45bf47318a229fc48f3d4f6969422e4fb52c..a0ca80b795fda219962c8c4fb428c14fd7cc2c4d?email_source=notifications&amp;email_token=AFTOJK5O2XOJK3B3SJGR6LDQCISSHA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBSGQ3DKMCQOVZWQIZTHA3TOMZZGMZDGNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4CONIJZTJ76L5L7DQCISSHANCNFSM4IIIH3CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6S5TI2RLNI6L7TGYTQCISSHA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBSGQ3DKMCQOVZWQIZTHA3TOMZZGMZDGNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2939/files/16ea45bf47318a229fc48f3d4f6969422e4fb52c..a0ca80b795fda219962c8c4fb428c14fd7cc2c4d?email_source=notifications\u0026email_token=AFTOJK5O2XOJK3B3SJGR6LDQCISSHA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBSGQ3DKMCQOVZWQIZTHA3TOMZZGMZDGNI",
"url": "https://github.com/quicwg/base-drafts/pull/2939/files/16ea45bf47318a229fc48f3d4f6969422e4fb52c..a0ca80b795fda219962c8c4fb428c14fd7cc2c4d?email_source=notifications\u0026email_token=AFTOJK5O2XOJK3B3SJGR6LDQCISSHA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDGMBSGQ3DKMCQOVZWQIZTHA3TOMZZGMZDGNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d422da360d6f_1a143fb0678cd9602590d4--


From nobody Wed Jul 31 17:10:37 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C92B61200FF for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:10:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.453
X-Spam-Level: 
X-Spam-Status: No, score=-6.453 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FROM_EXCESS_BASE64=0.001, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UvnwGZGU_24f for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 17:10:34 -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 94400120043 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 17:10:34 -0700 (PDT)
Date: Wed, 31 Jul 2019 17:10:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564618233; bh=9+tvEs2COLtyxuOdAi3b2jb9ZXoLzed8s0LHYSn8hUs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uWUkSfBDu0zFxbD38gtiJ+V3Qcw5I/lmOViV2iWghIk4w8Tt5ilyObiHMCUcV3cV2 OvVTnBQabWNzvGG5DwWhCDlsDjI68Wxdh7h4NTo5BCIwhKSmHxakHifMPhtYEDdlxq AXYZJY9SvvIk5RM+MqhsYVq5mTtibUoTFlOlLsqU=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYVMH74KS5DBMKRMB53J5QHTEVBNHHBYU3R64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2939/c517067907@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2939@github.com>
References: <quicwg/base-drafts/pull/2939@github.com>
Subject: Re: [quicwg/base-drafts] QPACK [design] Decoder MUST emit Header Acknowledgement. (#2939)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d422df998f63_717b3ff0d14cd9643249d6"; 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/z1OPA7r4bJcl6P0dwk4JgZVJ1zQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 01 Aug 2019 00:10:36 -0000

----==_mimepart_5d422df998f63_717b3ff0d14cd9643249d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Works for me.

Done.  Thanks for raising this 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/2939#issuecomment-517067907
----==_mimepart_5d422df998f63_717b3ff0d14cd9643249d6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Works for me.</p>
</blockquote>
<p>Done.  Thanks for raising this 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/2939?email_source=notifications&amp;email_token=AFTOJK25UY2JOR55G4GG7F3QCISXTA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I5JAY#issuecomment-517067907">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY566X5YQSZUZFHLN3QCISXTANCNFSM4IIIH3CQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYSFJFQP75TVWMRXTQCISXTA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I5JAY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK25UY2JOR55G4GG7F3QCISXTA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I5JAY#issuecomment-517067907",
"url": "https://github.com/quicwg/base-drafts/pull/2939?email_source=notifications\u0026email_token=AFTOJK25UY2JOR55G4GG7F3QCISXTA5CNFSM4IIIH3C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3I5JAY#issuecomment-517067907",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d422df998f63_717b3ff0d14cd9643249d6--


From nobody Wed Jul 31 19:01:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 94743120131 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 19:01:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level: 
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Jc66H_hOJF42 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 19:01: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 6FC0C12010C for <quic-issues@ietf.org>; Wed, 31 Jul 2019 19:01:10 -0700 (PDT)
Date: Wed, 31 Jul 2019 19:01:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564624869; bh=UFhEJ3F0YP5eJeflrCt5CGem49iJ0+xEkB4CQc2kIVc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=oAXkKwILdfCoJ8gETFZ1z+7Fh8rDOxHJl7EjkuUT8SiDlAaRWSI564XejL1Ghhg/k DYzl83XsP6CGYs4+6ck5yb+6wyPayOromrQiZzuNcMUySPueAX3Rfse1GxjqTkJN6x mMtxctm/smewAaMYAmomsf9Hskrz3fT0Bn9eO78k=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK74XEIAHXVSX4QSU7F3J55GLEVBNHHBYVUFKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2945@github.com>
Subject: [quicwg/base-drafts] When to send the SETTINGS frame (#2945)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d4247e55afcc_4d583ff3f74cd96818097"; 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/ruGp47VHa_eQ2Mcpsg5IKFbl1HY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 01 Aug 2019 02:01:13 -0000

----==_mimepart_5d4247e55afcc_4d583ff3f74cd96818097
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It seems that there are disagreement among the implementors, regarding when the SETTINGS frame need to be sent.

Some argue that it needs to be sent right after the handshake, even if the SETTINGS frame would contain no parameters. Some argue that it can be delayed, until the need to send something on the control stream arises.

I think we should clarify the expected behavior.

FWIW, existing text that refers to the topic are:
[section 3.3](https://quicwg.org/base-drafts/draft-ietf-quic-http.html#rfc.section.3.3):
> After the QUIC connection is established, a SETTINGS frame (Section 7.2.5) MUST be sent by each endpoint as the initial frame of their respective HTTP control stream (see Section 6.2.1)

[section 6.2.1](https://quicwg.org/base-drafts/draft-ietf-quic-http.html#rfc.section.6.2.1):
> Each side MUST initiate a single control stream at the beginning of the connection and send its SETTINGS frame as the first frame on this stream.

[section 7.2.5](https://quicwg.org/base-drafts/draft-ietf-quic-http.html#rfc.section.7.2.5):
> SETTINGS frames always apply to a connection, never a single stream. A SETTINGS frame MUST be sent as the first frame of each control stream (see Section 6.2.1) by each peer, and MUST NOT be sent subsequently.

cc @DavidSchinazi @LPardue @rmarx 

-- 
You are receiving 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/2945
----==_mimepart_5d4247e55afcc_4d583ff3f74cd96818097
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It seems that there are disagreement among the implementors, regarding when the SETTINGS frame need to be sent.</p>
<p>Some argue that it needs to be sent right after the handshake, even if the SETTINGS frame would contain no parameters. Some argue that it can be delayed, until the need to send something on the control stream arises.</p>
<p>I think we should clarify the expected behavior.</p>
<p>FWIW, existing text that refers to the topic are:<br>
<a href="https://quicwg.org/base-drafts/draft-ietf-quic-http.html#rfc.section.3.3" rel="nofollow">section 3.3</a>:</p>
<blockquote>
<p>After the QUIC connection is established, a SETTINGS frame (Section 7.2.5) MUST be sent by each endpoint as the initial frame of their respective HTTP control stream (see Section 6.2.1)</p>
</blockquote>
<p><a href="https://quicwg.org/base-drafts/draft-ietf-quic-http.html#rfc.section.6.2.1" rel="nofollow">section 6.2.1</a>:</p>
<blockquote>
<p>Each side MUST initiate a single control stream at the beginning of the connection and send its SETTINGS frame as the first frame on this stream.</p>
</blockquote>
<p><a href="https://quicwg.org/base-drafts/draft-ietf-quic-http.html#rfc.section.7.2.5" rel="nofollow">section 7.2.5</a>:</p>
<blockquote>
<p>SETTINGS frames always apply to a connection, never a single stream. A SETTINGS frame MUST be sent as the first frame of each control stream (see Section 6.2.1) by each peer, and MUST NOT be sent subsequently.</p>
</blockquote>
<p>cc <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=5599133" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=6571445" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LPardue">@LPardue</a> <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=2240689" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rmarx">@rmarx</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/2945?email_source=notifications&amp;email_token=AFTOJKYGKLAIWH4BHBCHGVDQCI7WLA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCWQVLA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52N5JFJXWRHGQSYV3QCI7WLANCNFSM4IIL7ILA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DHR4BXXF2IYID2ETQCI7WLA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCWQVLA.gif" height="1" width="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/2945?email_source=notifications\u0026email_token=AFTOJKYGKLAIWH4BHBCHGVDQCI7WLA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCWQVLA",
"url": "https://github.com/quicwg/base-drafts/issues/2945?email_source=notifications\u0026email_token=AFTOJKYGKLAIWH4BHBCHGVDQCI7WLA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCWQVLA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d4247e55afcc_4d583ff3f74cd96818097--


From nobody Wed Jul 31 19:06:14 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8FFBF12010C for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 19:06:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.383
X-Spam-Level: 
X-Spam-Status: No, score=-6.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-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 8vui2Qm2gaaq for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 19:06: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 C8C6F120132 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 19:06:11 -0700 (PDT)
Date: Wed, 31 Jul 2019 19:06:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564625170; bh=HOTCNVZLQnqjhqIKc8QiFICknNrYYJrwHcEVGCld9UM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OlEJxOuz1EWn1UmQdAYHAP90cAFy5PSIJ/ONSfqZSyLCG+zGyhJpW3ok8szDocCEo 7WyVDcB2Oa3jwj68jsJgk0hPC6J4BggsDVP/S+tZzIgJpElhbXt7P/mE/EgBl8xo5q xsz9z00N7O8ideqkv6nlYV92GxRb0rbO7l+U5xrg=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUBXWMUTLRIYRPPE53J55ZFEVBNHHBYVUFKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2945/517088885@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2945@github.com>
References: <quicwg/base-drafts/issues/2945@github.com>
Subject: Re: [quicwg/base-drafts] When to send the SETTINGS frame (#2945)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d424912bf554_7bfd3faf244cd96c1387e3"; 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/v4Gqn66m7fME7ZqgUMCCBmD46rY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 01 Aug 2019 02:06:14 -0000

----==_mimepart_5d424912bf554_7bfd3faf244cd96c1387e3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My two cents go to requiring the frame to be sent immediately after the handshake. IIRC, we discussed the issue long ago, and IIRC the consensus was that clients "can" wait for the server's SETTINGS frame before sending requests. Doing so improves the efficiency of QPACK for example, assuming that the server supports the use of dynamic table.

Generally speaking, I think it is preferable to be able to learn about the capabilities of the peer at the earliest moment. OTOH, I do not think there is a compelling reason to postpone sending SETTINGS frame.

-- 
You are receiving 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/2945#issuecomment-517088885
----==_mimepart_5d424912bf554_7bfd3faf244cd96c1387e3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My two cents go to requiring the frame to be sent immediately after the handshake. IIRC, we discussed the issue long ago, and IIRC the consensus was that clients "can" wait for the server's SETTINGS frame before sending requests. Doing so improves the efficiency of QPACK for example, assuming that the server supports the use of dynamic table.</p>
<p>Generally speaking, I think it is preferable to be able to learn about the capabilities of the peer at the earliest moment. OTOH, I do not think there is a compelling reason to postpone sending SETTINGS frame.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2945?email_source=notifications&amp;email_token=AFTOJK7FTOPT5KCZXO45JHTQCJAJFA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JCM5I#issuecomment-517088885">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4P4N5D5CK7NK3GDK3QCJAJFANCNFSM4IIL7ILA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK75BZGERNJGQOPQ4M3QCJAJFA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JCM5I.gif" height="1" width="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/2945?email_source=notifications\u0026email_token=AFTOJK7FTOPT5KCZXO45JHTQCJAJFA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JCM5I#issuecomment-517088885",
"url": "https://github.com/quicwg/base-drafts/issues/2945?email_source=notifications\u0026email_token=AFTOJK7FTOPT5KCZXO45JHTQCJAJFA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JCM5I#issuecomment-517088885",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d424912bf554_7bfd3faf244cd96c1387e3--


From nobody Wed Jul 31 20:48:17 2019
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7D07D120136 for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 20:48:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.382
X-Spam-Level: 
X-Spam-Status: No, score=-6.382 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id T9ylk-ghTXeo for <quic-issues@ietfa.amsl.com>; Wed, 31 Jul 2019 20:48: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 BDA8A120137 for <quic-issues@ietf.org>; Wed, 31 Jul 2019 20:48:13 -0700 (PDT)
Date: Wed, 31 Jul 2019 20:48:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564631292; bh=V8h+zl2bRQefi6GX97vtB6fyMlV+W3qDPUf/CMMbDjw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0K8ZbvNOMaPqabEZNkD6HyYnBlndq4Ul340q8DnAlsNB6VwJWtnA1C6e56vblwYqI a+yQy+L0Vw5vQFjaYmY/Ul6k46D6zXhxCFZKM4DFD7TKu784fW75mQWAERfz+x26rf XPXifku9zMtc+Vr2XUxVjja7wOdKwSe6aUW99mbM=
From: Luca Niccolini <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMUUGKXTFA4YMOME53J6JXZEVBNHHBYVUFKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2945/517107263@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2945@github.com>
References: <quicwg/base-drafts/issues/2945@github.com>
Subject: Re: [quicwg/base-drafts] When to send the SETTINGS frame (#2945)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d4260fcb128b_7cdf3ff2bd0cd95c111081"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: lnicco
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yZuLu9AB5Jcf9xPSaJOLD3LU0ns>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 01 Aug 2019 03:48:16 -0000

----==_mimepart_5d4260fcb128b_7cdf3ff2bd0cd95c111081
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with you and I vote for sending SETTINGS as soon as possible right after handshake. 

I want to warn you though that this does not prevent an implementor to chose something different since for how the protocol is designed -- after we removed waiting for receiving SETTINGS to send a request -- everything will keep working. As you said it would just be in a non-optimal state: i.e. without the ability to use the QPACK dynamic table and without GOAWAY. 

This is in fact something we never thoroughly test at interop since we only send a single request on a single stream and stop there.

As a sad/clowny story, we had a bug once where both endpoints would fail at reading from all unidirectional streams. It was so subtle that everything keep working fine, just no compression and no graceful shutdown.

-- 
You are receiving 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/2945#issuecomment-517107263
----==_mimepart_5d4260fcb128b_7cdf3ff2bd0cd95c111081
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with you and I vote for sending SETTINGS as soon as possible right after handshake.</p>
<p>I want to warn you though that this does not prevent an implementor to chose something different since for how the protocol is designed -- after we removed waiting for receiving SETTINGS to send a request -- everything will keep working. As you said it would just be in a non-optimal state: i.e. without the ability to use the QPACK dynamic table and without GOAWAY.</p>
<p>This is in fact something we never thoroughly test at interop since we only send a single request on a single stream and stop there.</p>
<p>As a sad/clowny story, we had a bug once where both endpoints would fail at reading from all unidirectional streams. It was so subtle that everything keep working fine, just no compression and no graceful shutdown.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You 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/2945?email_source=notifications&amp;email_token=AFTOJK4TMSID4LRH4LFOMB3QCJMHZA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JG4PY#issuecomment-517107263">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5WHMUZV7NOKWRHDOLQCJMHZANCNFSM4IIL7ILA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ64G53TZMK66FEMSLQCJMHZA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JG4PY.gif" height="1" width="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/2945?email_source=notifications\u0026email_token=AFTOJK4TMSID4LRH4LFOMB3QCJMHZA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JG4PY#issuecomment-517107263",
"url": "https://github.com/quicwg/base-drafts/issues/2945?email_source=notifications\u0026email_token=AFTOJK4TMSID4LRH4LFOMB3QCJMHZA5CNFSM4IIL7ILKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3JG4PY#issuecomment-517107263",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d4260fcb128b_7cdf3ff2bd0cd95c111081--

